| /NextBSD/contrib/llvm/include/llvm/Support/ |
| HD | TimeValue.h | 127 TimeValue& operator += (const TimeValue& that ) { 128 this->seconds_ += that.seconds_ ; 129 this->nanos_ += that.nanos_ ; 137 TimeValue& operator -= (const TimeValue &that ) { 138 this->seconds_ -= that.seconds_ ; 139 this->nanos_ -= that.nanos_ ; 147 int operator < (const TimeValue &that) const { return that > *this; } 152 int operator > (const TimeValue &that) const { 153 if ( this->seconds_ > that.seconds_ ) { 155 } else if ( this->seconds_ == that.seconds_ ) { [all …]
|
| /NextBSD/contrib/llvm/lib/Support/ |
| HD | SmallPtrSet.cpp | 170 const SmallPtrSetImplBase& that) { in SmallPtrSetImplBase() argument 174 if (that.isSmall()) { in SmallPtrSetImplBase() 178 CurArray = (const void**)malloc(sizeof(void*) * that.CurArraySize); in SmallPtrSetImplBase() 183 CurArraySize = that.CurArraySize; in SmallPtrSetImplBase() 186 memcpy(CurArray, that.CurArray, sizeof(void*)*CurArraySize); in SmallPtrSetImplBase() 188 NumElements = that.NumElements; in SmallPtrSetImplBase() 189 NumTombstones = that.NumTombstones; in SmallPtrSetImplBase() 194 SmallPtrSetImplBase &&that) { in SmallPtrSetImplBase() argument 198 CurArraySize = that.CurArraySize; in SmallPtrSetImplBase() 199 NumElements = that.NumElements; in SmallPtrSetImplBase() [all …]
|
| /NextBSD/contrib/gcc/doc/ |
| HD | compat.texi | 15 The set of runtime conventions followed by all of the tools that deal 23 A compiler conforms to an ABI if it generates code that follows all of 24 the specifications enumerated by that ABI@. 25 A library conforms to an ABI if it is implemented according to that ABI@. 26 An application conforms to an ABI if it is built using tools that conform 27 to that ABI and does not contain source code that specifically changes 31 Calling conventions are a subset of an ABI that specify of how arguments 35 Different sets of tools are interoperable if they generate files that 51 The features that are not covered by an ABI generally affect how a 92 Some GCC compilation options cause the compiler to generate code that [all …]
|
| HD | makefile.texi | 15 configuration is, it coordinates all the things that need to be built. 46 Distclean plus any file that can be generated from other files. Note 47 that additional tools may be required beyond what is normally needed to 51 Generates files in the source directory that do not exist in CVS but 67 Run the testsuite. This creates a @file{testsuite} subdirectory that 78 Note that running the testsuite may require additional tools be 83 the GCC directory, but rather a complex Makefile that coordinates 89 that GCC is built three times---once with the native compiler, once with 102 compiler as bootstrapping from scratch, but it ensures that the new 103 code is syntactically correct (e.g. that you did not use GCC extensions [all …]
|
| HD | gty.texi | 19 @code{union} declarations that define data structures that are 21 global variables that hold pointers to garbage-collected memory must 22 also be marked. Finally, all global variables that need to be saved 95 The structure that immediately contains the current structure. 97 The outermost structure that contains the current structure. 99 A partial expression of the form @code{[i1][i2]...} that indexes 103 For instance, suppose that you have a structure of the form 146 option is a fragment of C code that calculates the length. 189 In the @code{desc} option, the ``current structure'' is the union that 218 generic pointers (that is, @code{PTR}) and then use it with a specific [all …]
|
| /NextBSD/crypto/openssl/crypto/engine/ |
| HD | README | 4 This "description" (if one chooses to call it that) needed some major updating 16 I'll mention a bit about that first. EVP_CIPHER (and most of this applies 18 identifier that, in the current API, "lingers". These cipher description + 20 or can be loaded "en masse" into EVP storage so that they can be catalogued and 39 The important point about this is that EVP_CIPHER definitions and structures are 41 rewrites of many applications, to assume that EVP_CIPHERs can be reference 44 such ciphers is via entirely distinct API calls that didn't exist before. 46 pointer, that has been passed to the caller, is no longer being used. 52 hooking in ENGINEs is that multiple ENGINEs may implement the same ciphers. The 53 solution is necessarily that ENGINE-provided ciphers simply are not registered, [all …]
|
| /NextBSD/contrib/llvm/lib/Target/SystemZ/ |
| HD | SystemZProcessors.td | 24 "Assume that the distinct-operands facility is installed" 29 "Assume that the load/store-on-condition facility is installed" 34 "Assume that the high-word facility is installed" 39 "Assume that the floating-point extension facility is installed" 44 "Assume that the population-count facility is installed" 49 "Assume that the fast-serialization facility is installed" 54 "Assume that interlocked-access facility 1 is installed" 60 "Assume that the miscellaneous-extensions facility is installed" 65 "Assume that the transactional-execution facility is installed" 70 "Assume that the processor-assist facility is installed" [all …]
|
| /NextBSD/contrib/nvi/cl/ |
| HD | README.signal | 13 *probably* start blocking around any imported function that we don't know 18 can they handle interrupted system calls, so the vi routines that 19 call DB block signals. This means that DB routines could be 24 switched vi into ex mode, and we continue that practice. 29 that the screen will not resize until vi runs out of keys, but 30 that doesn't seem like a problem. 42 The up side is that there's no asynchronous behavior to worry about, 43 and obviously no reentrancy problems. The down side is that it's easy 52 the place -- I hate to litter the source code with that. For example, 61 the exception that flow control and signals are turned on, and curses [all …]
|
| /NextBSD/contrib/gcc/ |
| HD | gdbinit.in | 6 Print the full structure of the rtx that is $. 21 There is also debug_rtx_find (rtx, uid) that will scan a list for UID and print 30 Print the full structure of the tree that is $. 39 Print the tree that is $ in C syntax. 48 Print the statement that is $ in C syntax. 57 Print the expression that is $ in C syntax. 67 Print the tree-code of the tree node that is $. 76 Print the name of the decl-node that is $. 85 Print the name of the type-node that is $. 96 Print the rtx-code and machine mode of the rtx that is $. [all …]
|
| HD | reg-notes.def | 11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY 21 /* This file defines all the codes that may appear on individual 43 /* Describes the insn as a whole; it says that the insn sets a 51 could be used to hold that pseudo-register throughout the function. */ 54 /* Like REG_EQUIV except that the destination is only momentarily 67 call and points at the one that has the REG_RETVAL. This note is 72 This is used in branches so that decrement and branch instructions 85 /* REG_CC_SETTER and REG_CC_USER link a pair of insns that set and use 88 of a branch as long as only one copy of the insn exists. In that 95 /* Points to a CODE_LABEL. Used by non-JUMP_INSNs to say that the [all …]
|
| /NextBSD/contrib/ntp/sntp/libopts/ |
| HD | COPYING.lgplv3 | 22 An "Application" is any work that makes use of an interface provided 34 for portions of the Combined Work that, considered in isolation, are 51 that uses the facility (other than as an argument passed when the 55 a) under this License, provided that you make a good faith effort to 56 ensure that, in the event an Application does not supply the 61 this License applicable to that copy. 66 a header file that is part of the Library. You may convey such object 67 code under terms of your choice, provided that, if the incorporated 72 a) Give prominent notice with each copy of the object code that the 73 Library is used in it and that the Library and its use are [all …]
|
| HD | COPYING.gplv3 | 23 price. Our General Public Licenses are designed to make sure that you 25 them if you wish), that you receive source code or can get it if you 26 want it, that you can change the software or use pieces of it in new 27 free programs, and that you know you can do these things. 36 freedoms that you received. You must make sure that they, too, receive 40 Developers that use the GNU GPL protect your rights with two steps: 45 that there is no warranty for this free software. For both users' and 46 authors' sake, the GPL requires that modified versions be marked as 47 changed, so that their problems will not be attributed erroneously to 63 software on general-purpose computers, but in those that do, we wish to [all …]
|
| /NextBSD/contrib/gcclibs/libiberty/ |
| HD | copying-lib.texi | 34 not price. Our General Public Licenses are designed to make sure that 36 for this service if you wish); that you receive source code or can get 37 it if you want it; that you can change the software and use pieces of it 38 in new free programs; and that you are informed that you can do these 41 To protect your rights, we need to make restrictions that forbid 47 or for a fee, you must give the recipients all the rights that we gave 48 you. You must make sure that they, too, receive or can get the source 50 complete object files to the recipients, so that they can relink them 58 To protect each distributor, we want to make it very clear that 61 that what they have is not the original version, so that the original [all …]
|
| /NextBSD/contrib/dialog/ |
| HD | COPYING | 28 not price. Our General Public Licenses are designed to make sure that 30 for this service if you wish); that you receive source code or can get 31 it if you want it; that you can change the software and use pieces of 32 it in new free programs; and that you are informed that you can do 35 To protect your rights, we need to make restrictions that forbid 41 or for a fee, you must give the recipients all the rights that we gave 42 you. You must make sure that they, too, receive or can get the source 44 complete object files to the recipients, so that they can relink them 52 To protect each distributor, we want to make it very clear that 55 that what they have is not the original version, so that the original [all …]
|
| /NextBSD/contrib/binutils/libiberty/ |
| HD | copying-lib.texi | 34 not price. Our General Public Licenses are designed to make sure that 36 for this service if you wish); that you receive source code or can get 37 it if you want it; that you can change the software and use pieces of it 38 in new free programs; and that you are informed that you can do these 41 To protect your rights, we need to make restrictions that forbid 47 or for a fee, you must give the recipients all the rights that we gave 48 you. You must make sure that they, too, receive or can get the source 50 complete object files to the recipients, so that they can relink them 58 To protect each distributor, we want to make it very clear that 61 that what they have is not the original version, so that the original [all …]
|
| /NextBSD/usr.bin/m4/tests/ |
| HD | regress.quotes.out | 8 going up to that string 15 going up to that STRING' 22 going up to that STRING' 29 going up to that STRING' 34 half quoted stringgoing up to that STRING' 42 going up to that string 49 going up to that string'
|
| HD | quotes.m4 | 10 going up to that string' 18 going up to that string' 26 going up to that string' 34 going up to that string' 42 going up to that string' 50 going up to that string' 58 going up to that string'
|
| /NextBSD/usr.sbin/cron/doc/ |
| HD | CHANGES | 8 The crontab command now conforms to POSIX 1003.2. This means that when you 14 it is safe to say that they were intended for publication. Most notably, 35 V2, chances are good that V3 will fix your problems. 37 About a dozen people have reminded me that I forgot to initialize 41 Steve Simmons reminded me that once an account has been deleted from the 43 all of you that before you delete a user's account, you first delete that 47 reasons that I consider reasonable. It is trivial for a root user to delete 50 Dan O'Neil reminded me that I forgot to reset "log_fd" in misc.c. A lot of 52 there, since the real bug was that it should have been open in the parent. 54 Peter Kabal reminded me that I forgot to "#ifdef DEBUGGING" some code in [all …]
|
| /NextBSD/sbin/init/ |
| HD | NOTES | 9 This specific reference says that 'init' must by default provide 17 a user logging out (that is, by a controlling process 20 the impression that when the controlling process terminates, 29 that is, it's immune to job control signals from the terminal. 33 'Historically, the implementation-dependent process that 37 It goes on to note that it used to be the case that 'init' 43 process groups that become orphaned. This is like old BSD 47 In general it appears that the kernel now automatically 54 It appears that neither getty nor login call setsid(), so init must 55 do this -- seems reasonable. B.4.3.2 p 248 implies that this is the [all …]
|
| /NextBSD/sys/dev/isp/ |
| HD | DriverManual.txt | 7 This is a short text document that will describe the background, goals 18 and to be familiar with the range of platforms that Solaris, Linux and 44 from the premise that the driver would drive both SBus and PCI card 52 the way it was designed I concluded that it was so darned close to being 53 just like the SCSI HBAs that it would be insane to *not* leverage off of 54 the existing driver. So, we ended up with a driver for NetBSD that drove 73 and meet it. This driver has had a design goal that changes from almost 76 a bit of "reconstruction after the fact" in that the design goals are 79 The primary design goal now is to have a driver that can run both the 100 driver that is specifically designed for a single platform and a single [all …]
|
| /NextBSD/crypto/heimdal/lib/wind/ |
| HD | rfc3490.txt | 40 required in existing protocols like DNS, so that IDNs can be 104 the components have been updated. Proposals that were not chosen by 122 of characters that can be used in domain names to include the Unicode 130 internationalized domain names, that users know the exact spelling of 131 the domain names that the users type into applications such as web 134 larger, especially given that in some cases the same appearance, for 150 significant delays that would be inherent in waiting for a different 159 handled outside the protocol. For example, names that are entered in 162 names that are entered with U+00F6 (LATIN SMALL LETTER O WITH 175 An example of an important issue that is not considered in detail in [all …]
|
| /NextBSD/contrib/top/ |
| HD | INSTALL | 22 that makes top work correctly on the architecture in question. All of the 24 strives to be). Hints for some module choices that are not obvious are 27 The first comment in each c file in that directory contains the synopsis 28 AND a detailed description of the machines for which that module is 29 appropriate. It also contains a list of authors for that module. If you 32 can't find one that is appropriate, then chances are very good that one 33 hasn't been written yet. If that is the case, then you are out of luck. 37 If you need to recompile top for a different architecture (that is, using 44 finish with a "make clean". Once that completes, type "make install" 56 minor release of the OS. This means that a top executable made under one [all …]
|
| /NextBSD/contrib/ofed/management/opensm/doc/ |
| HD | QoS_management_in_OpenSM.txt | 30 - The request is matched against the defined matching rules such that the 33 restrictions imposed by that level. 54 This section defines zero or more port groups that can be referred later by 58 - PKey, which means that all the ports in the subnet that belong to 60 - Partition name, which means that all the ports in the subnet that belong 78 When path(s) search is performed, it is done with regards to restriction that 80 One QoS level that is mandatory to define is a DEFAULT QoS level. It is 81 applied to a PR/MPR query that does not match any existing match rule. 86 Each PathRecord/MultiPathRecord query that OpenSM receives is matched against 89 Each rule has a name of QoS level that will be applied to the matching query. [all …]
|
| /NextBSD/contrib/file/ |
| HD | README | 32 and the re-write of the file command in terms of that library. The library 33 itself, libmagic can be used by 3rd party programs that wish to identify 47 the HP file command, I think), and his mods that finally got the 56 information that is the source of this program's power. My version 63 magic numbers assigned to all sorts of data files that 71 src/asctime_r.c - replacement for OS's that don't have it. 73 src/asprintf.c - replacement for OS's that don't have it. 75 src/asctime_r.c - replacement for OS's that don't have it. 76 src/asprintf.c - replacement for OS's that don't have it. 80 src/ctime_r.c - replacement for OS's that don't have it. [all …]
|
| /NextBSD/crypto/openssh/ |
| HD | sftp-server.0 | 13 sftp-server is a program that speaks the server side of SFTP protocol to 25 pathname may contain the following tokens that are expanded at 28 replaced by the username of that user. The default is to use the 36 Specifies the facility code that is used when logging messages 47 that sftp-server performs on behalf of the client. DEBUG and 52 Specify a comma-separated list of SFTP protocol requests that are 59 Specify a comma-separated list of SFTP protocol requests that are 60 permitted by the server. All request types that are not on the 63 Care must be taken when using this feature to ensure that 68 only feature that may be queried is ``requests'', which may be [all …]
|