Searched refs:set (Results 1 - 25 of 53) sorted by relevance

123

/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A Daligned_data.s40 * .set .,.+size-in-bytes
77 .set .,.+pmapSize
85 .set .,.+2560
90 .set .,.+256
97 .set .,.+mapcsize
102 .set .,.+128
127 .set .,.+(33*16)
170 .set .,.+(33*8)
175 .set .,.+(336*4)
191 .set
[all...]
H A DFirmwareCalls.h49 .set name,(.-EXT(FWtable))/4|0x80000000 __ASMNL__ \
H A Dbits.s72 # * Find first bit set in bit string.
77 # Returns the bit index of the first bit set (starting from 0)
85 cntlzw ARG0, r0 /* Free inst... find the set bit... */
/macosx-10.5.8/xnu-1228.15.4/EXTERNAL_HEADERS/architecture/ppc/
H A Dpseudo_inst.h63 .set __no_at,0 /* allow at by default */
70 .set __no_at,1
74 .set __no_at,0
115 .set __used_at,0
118 .set __used_at,1
126 .set __used_at,1
207 .set __used_at,0 @\
218 .set __used_at,1 @\
222 .set __used_at,1 @\
230 .set __used_a
[all...]
H A Dasm_help.h160 .set __argoutsize, ROUND_TO_STACK((maxargsout) * 4) @\
162 .set __argoutsize,32 @\
164 .set __framesize, ROUND_TO_STACK( \
167 .set __grfbase,(__framesize - 4*(grfsaved) - 8*(fpfsaved)) @\
168 .set __fpfbase,(__framesize - 8*(fpfsaved)) @\
243 .set __framesize,0
250 .set name,value
258 .set __framesize,0
284 .set name,value
348 .set nam
[all...]
/macosx-10.5.8/xnu-1228.15.4/EXTERNAL_HEADERS/architecture/i386/
H A Dasm_help.h77 .set __framesize,ROUND_TO_STACK(localvarsize) ;\
78 .set __nested_function, 1 ;\
91 * save registers (this is the functions responsibility). Does set
95 .set __framesize,ROUND_TO_STACK(localvarsize) ;\
96 .set __nested_function, 0 ;\
167 .set name,value
200 .set name,value
233 .set name,value
239 .set name,value
/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Ddisklabel.h158 * Interleave is physical sector interleave, set up by the
207 .set d_secsize,40
208 .set d_nsectors,44
209 .set d_ntracks,48
210 .set d_ncylinders,52
211 .set d_secpercyl,56
212 .set d_secperunit,60
213 .set d_end_,276 /* size of disk label */
344 /* get and set disklabel; DIOCGPART used internally */
346 #define DIOCSDINFO _IOW('d', 102, struct disklabel)/* set */
[all...]
/macosx-10.5.8/xnu-1228.15.4/libkern/libkern/c++/
H A DOSSet.h100 static OSSet *withSet(const OSSet *set,
138 virtual bool initWithSet(const OSSet *set,
195 @abstract A member function to merge the contents of an OSArray object with set.
203 @param set The OSSet object which contains the objects to be merged.
206 virtual bool merge(const OSSet *set);
220 @result Returns true if the object is present within the set, false otherwise.
227 @result Returns true if the object is present within the set, false otherwise.
232 @abstract A member function which returns an object from the set.
233 @result Returns an object if one exists within the set.
262 @abstract This function is used to recursively set optio
[all...]
/macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/
H A DIOCatalogue.cpp68 * At startup these function pointers are set to use the libsa in-kernel
72 * others are set to zero. Those two functions must *always* be checked
87 * variable is set by libsa's bootstrap code.
713 "(kmod load function not set).\n",
930 OSOrderedSet * set; local
934 set = OSOrderedSet::withCapacity( 1 );
942 set->setLastObject( table );
953 IOService::catalogNewDrivers( set );
972 OSOrderedSet * set; local
975 set
1009 OSOrderedSet * set; local
1036 AddNewImports( OSOrderedSet * set, OSDictionary * dict ) argument
1047 OSOrderedSet * set; local
1132 OSOrderedSet * set; local
1423 OSOrderedSet * set; local
[all...]
H A DIOHibernateRestoreKernel.c152 hibernate_page_bitset(hibernate_page_list_t * list, boolean_t set, uint32_t page) argument
160 if (set)
184 // count bits clear or set (set == TRUE) starting at page.
186 hibernate_page_bitmap_count(hibernate_bitmap_t * bitmap, uint32_t set, uint32_t page) argument
197 if (set)
208 if (set)
H A DIOService.cpp615 OSSet * set; local
627 set = (OSSet *) getExistingServices( table,
631 if( set) {
634 count += set->getCount();
637 allSet->merge((const OSSet *) set);
638 set->release();
641 allSet = set;
997 // flag is not set, should we detect a deadlock later on
1032 // not have the 'required' flag set: we'll fail it
1056 // set, s
2778 OSSet * set; local
2840 OSSet * set; local
3335 OSOrderedSet * set; local
3801 OSSet * set; local
[all...]
/macosx-10.5.8/xnu-1228.15.4/libkern/ppc/
H A Dbcmp.s65 mtctr r0 ; set up for loop
79 ; cr0= set on length
91 blr ; done, r3 set correctly by the subtract
H A Dmemcmp.s80 mtctr r0 ; set up for loop
94 ; cr0= set on length
106 blr ; done, r3 set correctly by the subtract
/macosx-10.5.8/xnu-1228.15.4/pexpert/ppc/
H A Dpe_clock_speed_asm.s64 mtctr r5 ; set the count
96 li r4, 0 ; set flag for the real test
97 li r5, 0x12d0 ; set the initial count to 1.25e+6
/macosx-10.5.8/xnu-1228.15.4/makedefs/
H A DMakeInc.cmd33 # vim: set ft=make:
/macosx-10.5.8/xnu-1228.15.4/libkern/c++/
H A DOSSet.cpp143 OSSet *OSSet::withSet(const OSSet *set, argument
148 if (me && !me->initWithSet(set, capacity)) {
218 bool OSSet::merge(const OSSet *set) argument
220 return merge(set->members);
327 if (!s->addXMLStartTag(this, "set")) return false;
333 return s->addXMLEndTag("set");
365 continue; // Couldn't create new set abort
H A DOSUnserialize.y129 | set { $$ = (object_t *)buildOSSet($1); }
173 set: '[' ']' { $$ = NULL; } label
/macosx-10.5.8/xnu-1228.15.4/bsd/netinet/
H A Dip_dummynet.c282 if (p == NULL) /* data already there, set starting point */
819 * only set the timer if there are packets to process
824 if (h->elements > 0) { // set the timer
1015 * If q_size == 0, we compute the idle time for the link, and set
1291 * set S to the virtual time V for the controlling pipe, and update
1293 * idle_heap and set S to max(F,V).
1341 /* start the timer and set global if not already set */
1516 * the flow set, otherwise scan pipes. Should do either, but doing
1881 /* locate set */
1915 dn_copy_set(struct dn_flow_set *set, char *bp) argument
1946 struct dn_flow_set *set ; local
1969 struct dn_flow_set *set ; local
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/i386/
H A Dstart.s99 .set ., .+INTSTACK_SIZE
135 .set ., .+INTSTACK_SIZE
146 .set ., .+INTSTACK_SIZE
158 .set ., .+(INTSTACK_SIZE*MAX_CPUS)
166 .set ., .+(INTSTACK_SIZE*MAX_CPUS)
174 .set ., .+(INTSTACK_SIZE*MAX_CPUS)
316 .set __start, PA(EXT(_pstart))
516 cmp $0, %edx /* skip setting NXE if 20 is not set */
542 mov $(KERNEL_DS),%ax /* set kernel data segment */
546 mov %ax,EXT(master_ktss)+TSS_SS0 /* set kerne
[all...]
/macosx-10.5.8/xnu-1228.15.4/iokit/Tests/
H A DTestCollections.cpp297 // Create and destroy an set
328 // Check the creation of a sizable OSSet from an set of IOObjects
329 // Also check member test of set.
352 // Test set creation from another set by both the setObject method
716 OSSet *set; local
796 // Test the set iterator
799 set = OSSet::withCapacity(numSymbols);
800 TEST_ASSERT('I', "2a", set);
801 if (set) {
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/crypto/aes/i386/
H A Dedefs.h122 # error Please edit edefs.h (lines 117 or 119) to set the platform byte order
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/ppc/
H A Dxsumas.s40 * Note: If the "odd" flag is set, the address in r3 will be even. Nonetheless, we
41 * correctly handle the case where the flag is set and the address is odd.
52 * is set on the low 32-bits of the sum.)
70 cmplwi cr1,r6,0 ; set cr1_gt if "starting on odd address" flag is set
82 crxor cr1_gt,31,cr1_gt; set flag if byte-lane swap will be necessary
101 mtctr r0 ; set up loop count
221 cmplwi cr1,r6,0 ; set cr1_gt if "starting on odd address" flag is set
240 ; do 64-bit "adde"s, because we run in 32-bit mode so carry would not be set correctl
[all...]
/macosx-10.5.8/xnu-1228.15.4/tools/tests/affinity/
H A Dsets.c19 * affinity set placement in Leopard.
21 * The picture here, for each set, is:
37 * overidden. By default there are 2 buffers per set (again overridable).
41 * to the set number, 1 .. N. So the threads of each set share an L2 cache.
89 struct line_info *set; member in struct:__anon1015
94 /* This defines a thread set */
125 " [-b B] Number of buffers per set/line (2)\n"
127 "usage: sets [-b B] Number of buffers per set/line (2)\n"
132 " [-s S] Number of stages per set/lin
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/crypto/blowfish/
H A Dbf_enc.c72 If you set BF_ROUNDS to some value other than 16 or 20, you will have
/macosx-10.5.8/xnu-1228.15.4/iokit/IOKit/
H A DIOHibernatePrivate.h275 hibernate_page_bitset(hibernate_page_list_t * list, boolean_t set, uint32_t page);
284 hibernate_page_bitmap_count(hibernate_bitmap_t * bitmap, uint32_t set, uint32_t page);

Completed in 115 milliseconds

123