| /vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/unix/ |
| H A D | xptcstubs_asm_ppc_linux.s | 26 .set r0,0; .set sp,1; .set RTOC,2; .set r3,3; .set r4,4 27 .set r5,5; .set r6,6; .set r7,7; .set r8,8; .set r [all...] |
| H A D | xptcinvoke_asm_ppc_aix.s | 25 .set r0,0; .set sp,1; .set RTOC,2; .set r3,3; .set r4,4 26 .set r5,5; .set r6,6; .set r7,7; .set r8,8; .set r [all...] |
| H A D | xptcinvoke_asm_ppc_ibmobj_aix.s | 24 .set r0,0; .set sp,1; .set RTOC,2; .set r3,3; .set r4,4 25 .set r5,5; .set r6,6; .set r7,7; .set r8,8; .set r [all...] |
| H A D | xptcinvoke_asm_ppc_linux.s | 26 .set r0,0; .set sp,1; .set RTOC,2; .set r3,3; .set r4,4 27 .set r5,5; .set r6,6; .set r7,7; .set r8,8; .set r [all...] |
| H A D | xptcstubs_asm_ppc_netbsd.s | 26 .set r0,0; .set sp,1; .set RTOC,2; .set r3,3; .set r4,4 27 .set r5,5; .set r6,6; .set r7,7; .set r8,8; .set r [all...] |
| H A D | xptcinvoke_asm_ppc_aix64.s | 38 .set r0,0; .set sp,1; .set RTOC,2; .set r3,3; .set r4,4 39 .set r5,5; .set r6,6; .set r7,7; .set r8,8; .set r [all...] |
| H A D | xptcstubs_asm_ppc_aix.s | 24 .set r0,0; .set sp,1; .set RTOC,2; .set r3,3; .set r4,4 25 .set r5,5; .set r6,6; .set r7,7; .set r8,8; .set r [all...] |
| H A D | xptcstubs_asm_ppc_aix64.s | 38 .set r0,0; .set sp,1; .set RTOC,2; .set r3,3; .set r4,4 39 .set r5,5; .set r6,6; .set r7,7; .set r8,8; .set r [all...] |
| H A D | xptcinvoke_asm_ppc_netbsd.s | 25 .set r0,0; .set sp,1; .set RTOC,2; .set r3,3; .set r4,4 26 .set r5,5; .set r6,6; .set r7,7; .set r8,8; .set r [all...] |
| /vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/support/set/ |
| H A D | set.h | 4 /* set.h 6 The following is a general-purpose set library originally developed 9 Sets are now structs containing the #words in the set and 10 a pointer to the actual set words. 36 #define SETSIZE(a) ((a).n<<LogWordSize) /* Maximum items per set */ 39 #define nil (~((unsigned) 0)) /* An impossible set member all bits on (big!) */ 42 unsigned int n; /* Number of words in set */ 44 } set; typedef in typeref:struct:_set 55 /* make arg1 a set big enough to hold max elem # of arg2 */ 58 fprintf(stderr, "set_new: Cannot allocate set wit [all...] |
| H A D | set.c | 0 /* set.c 3 The following is a general-purpose set library originally developed 6 Sets are now structs containing the #words in the set and 7 a pointer to the actual set words. 13 free a set. 20 Sets can be explicitly initialized to have no elements (set.n == 0) 24 set a = empty; -- set_deg(a) == 0 28 Example set creation and destruction: 30 set 34 set [all...] |
| /vbox/src/libs/xpcom18a4/xpcom/ds/ |
| H A D | nsCheapSets.cpp | 42 nsStringHashSet* set = GetHash(); local 43 if (set) { 44 delete set; 57 nsStringHashSet* set = GetHash(); local 58 if (set) { 59 return set->Put(aVal); 65 nsresult rv = InitHash(&set); 68 rv = set->Put(*oldStr); 72 return set->Put(aVal); 75 // Nothing exists in the hash right now, so just set th 83 nsStringHashSet* set = GetHash(); local 123 nsInt32HashSet* set = GetHash(); local 158 nsInt32HashSet* set = GetHash(); local [all...] |
| H A D | nsCheapSets.h | 44 * A string set that takes up minimal size when there are 0 or 1 strings in the 45 * set. Use for cases where sizes of 0 and 1 are even slightly common. 55 * Put a string into the set 61 * Remove a string from the set 67 * Check if the set contains a particular string 69 * @return whether the string is in the set 73 nsStringHashSet* set = GetHash(); local 75 if (set) { 76 return set->Contains(aVal); 119 * An integer set tha 147 nsInt32HashSet* set = GetHash(); local [all...] |
| /vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
| H A D | posix_io.h | 21 /** File descriptor set as used for select() */ 32 * Zero a file descriptor set 34 * @v set File descriptor set 37 FD_ZERO ( fd_set *set ) { 38 *set = 0; 42 * Set a bit within a file descriptor set 45 * @v set File descriptor set 48 FD_SET ( int fd, fd_set *set ) { [all...] |
| /vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/ |
| H A D | cdefs_aout.h | 110 #define __link_set_make_entry(set, sym, type) \ 112 __link_set_##set##_sym_##sym __used = &sym; \ 113 __asm(".stabs \"___link_set_" #set "\", " #type ", 0, 0, _" #sym) 115 #define __link_set_make_entry(set, sym, type) \ 116 extern void const * const __link_set_##set##_sym_##sym 119 #define __link_set_add_text(set, sym) __link_set_make_entry(set, sym, 23) 120 #define __link_set_add_rodata(set, sym) __link_set_make_entry(set, sym, 23) 121 #define __link_set_add_data(set, sy [all...] |
| /vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/ |
| H A D | os_AIX.s | 35 .set r0,0; .set SP,1; .set RTOC,2; .set r3,3; .set r4,4 36 .set r5,5; .set r6,6; .set r7,7; .set r8,8; .set r [all...] |
| /vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/proc/ |
| H A D | tst.sigwait.c | 41 sigset_t set; local 54 (void) sigemptyset(&set); 55 (void) sigaddset(&set, SIGUSR1); 56 (void) sigprocmask(SIG_BLOCK, &set, NULL); 70 (void) sigwait(&set);
|
| /vbox/src/libs/xpcom18a4/nsprpub/pr/include/obsolete/ |
| H A D | probslet.h | 77 ** Override PR_MAX_SELECT_DESC if you need more space in the select set. 105 ** with its own maximum number of elements in the set. 108 ** A set describing the io descriptors for which ready for reading 112 ** A set describing the io descriptors for which ready for writing 116 ** A set describing the io descriptors for which exception pending 129 ** A set describing the io descriptors which are ready for reading. 132 ** A set describing the io descriptors which are ready for writing. 135 ** A set describing the io descriptors which have pending exception. 153 ** PR_FD_ZERO(&fdset) initializes a descriptor set fdset to the null set 166 NSPR_API(void) PR_FD_ZERO(PR_fd_set *set); variable [all...] |
| /vbox/src/VBox/Devices/PC/BIOS/ |
| H A D | smidmi.inc | 55 db 0 ; checksum (set by biossums) 65 db 0 ; checksum (set by biossums) 66 dw 0 ; DMI tables length (set by DevPcBios) 68 dw 0 ; DMI tables entries (set by DevPcBios)
|
| /vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/dlg/ |
| H A D | dlg.h | 39 #include "set.h" 56 /* these macros allow the size of the character set to be easily changed */ 74 set label; /* one arc always labelled with epsilon */ 84 set nfa_states; 107 set label; 123 extern set used_chars; /* used to label trans. arcs */ 124 extern set used_classes; /* classes or chars used to label trans. arcs */ 126 extern set class_sets[]; /* shows char. in each class */ 127 extern set normal_chars; /* mask off unused portion of set */ [all...] |
| H A D | DlgDDK.mak | 3 # You will need to set the LIB variable similar to this.
13 SET=$(PCCTS_HOME)\support\set
24 SUPPORT_OBJS = set.obj
39 $(SET)\set.h \
51 $(SET)\set.h \
62 $(SET)\set.h \
75 $(SET)\set.h \
83 $(SET)\set.h \
90 $(SET)\set.h \
97 $(SET)\set [all...] |
| H A D | DlgMS.mak | 3 # You will need to set the LIB variable similar to this.
13 SET=$(PCCTS_HOME)\support\set
25 SUPPORT_OBJS = set.obj
37 $(SET)\set.h \
49 $(SET)\set.h \
60 $(SET)\set.h \
73 $(SET)\set.h \
81 $(SET)\set.h \
88 $(SET)\set.h \
95 $(SET)\set [all...] |
| H A D | DlgPPC.mak | 11 # ::support:set:set.c
20 -i "::support:set:"
35 "{ObjDir�PPC}set.c.x"
76 "{ObjDir�PPC}set.c.x" � {�MondoBuild�} "::support:set:set.c"
77 {PPCC} "::support:set:set.c" -o {Targ} {PPCCOptions}
|
| /vbox/src/VBox/Main/src-all/win/ |
| H A D | comregister.cmd | 32 set _SCRIPT_CURDIR=%CD%
33 for /f "tokens=*" %%d in ('cd') do set _SCRIPT_CURDIR=%%d
36 set _SCRIPT_SELF=%0
38 set _SCRIPT_SELF=%_SCRIPT_SELF%.cmd
42 set _SCRIPT_SELF=%_SCRIPT_CURDIR%\comregister.cmd
47 for /f "tokens=1 delims=;" %%d in ("%PATH%") do set _SCRIPT_SELF=%%d\comregister.cmd
49 for /f "tokens=2 delims=;" %%d in ("%PATH%") do set _SCRIPT_SELF=%%d\comregister.cmd
51 for /f "tokens=3 delims=;" %%d in ("%PATH%") do set _SCRIPT_SELF=%%d\comregister.cmd
53 for /f "tokens=4 delims=;" %%d in ("%PATH%") do set _SCRIPT_SELF=%%d\comregister.cmd
55 for /f "tokens=5 delims=;" %%d in ("%PATH%") do set _SCRIPT_SEL [all...] |
| /vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
| H A D | proto.h | 111 extern set *fset; /* for constrained search */ /* MR11 */ 170 extern set MR_CompromisedRules; /* MR14 */ 212 extern set reserved_positions; 213 extern set all_tokens; 214 extern set imag_tokens; 215 extern set tokclasses; 247 extern set AST_nodes_refd_in_actions; 296 extern void FillSet( set ); 299 extern void SubstErrorClass( set * ); 300 extern int DefErrSet( set *, in [all...] |