Searched refs:word (Results 1 - 25 of 30) sorted by relevance

12

/darwin-on-arm/xnu/EXTERNAL_HEADERS/corecrypto/
H A Dcc_priv.h219 static inline uint32_t CC_ROL(uint32_t word, int i) argument
222 :"=r" (word)
223 :"0" (word),"c" (i));
224 return word;
227 static inline uint32_t CC_ROR(uint32_t word, int i) argument
230 :"=r" (word)
231 :"0" (word),"c" (i));
232 return word;
236 #define CC_ROLc(word, i) \
237 ({ uint32_t _word=(word); \
257 CC_ROL(uint32_t word, int i) argument
262 CC_ROR(uint32_t word, int i) argument
277 CC_ROL64(uint64_t word, int i) argument
285 CC_ROR64(uint64_t word, int i) argument
317 CC_ROL64(uint64_t word, int i) argument
322 CC_ROR64(uint64_t word, int i) argument
[all...]
/darwin-on-arm/xnu/libsyscall/wrappers/
H A Dmemcpy.c36 * sizeof(word) MUST BE A POWER OF TWO
39 typedef int word; /* "word" used for optimal copy speed */ typedef
41 #define wsize sizeof(word)
87 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
108 TLOOP(src -= wsize; dst -= wsize; *(word *)dst = *(word *)src);
/darwin-on-arm/xnu/osfmk/i386/
H A Dasm64.h39 .word KERNEL64_CS ;\
60 .word KERNEL32_CS ;\
H A Dacpi_wakeup.s175 movl 2(%eax), %edx /* GDT base, skip limit word */
269 movl 2(%eax), %edx /* GDT base, skip limit word */
300 saved_es: .word 0
301 saved_fs: .word 0
302 saved_gs: .word 0
303 saved_ss: .word 0
308 saved_gdt: .word 0
310 saved_idt: .word 0
312 saved_ldt: .word 0
313 saved_tr: .word
[all...]
H A Dstart64.s41 .word 0
43 .word Times(8,GDTSZ)-1
51 .word 0
53 .word Times(16,IDTSZ)-1
H A Dmp.h256 #define i_bit(bit, word) ((long)(*(word)) & (1L << (bit)))
259 i_bit_impl(long word, long bit) { argument
261 return word & bitmask;
263 #define i_bit(bit, word) i_bit_impl((long)(*(word)), bit)
H A Dstart.s97 .word 0
99 .word Times(8,GDTSZ)-1
217 .word segment
223 .word 0x010f ;\
H A Dasm.h139 #define SVC .byte 0x9a; .long 0; .word 0x7
141 #define RPC_SVC .byte 0x9a; .long 0; .word 0xf
144 #define Value .word
H A Dlocore.s408 .word 0
/darwin-on-arm/xnu/libkern/zlib/intel/
H A Dadler32vec.s168 movhlps %xmm1, %xmm2 // higher 16-bit word (for adler) in xmm2
198 movhlps %xmm1, %xmm2 // higher 16-bit word (for adler) in xmm2
226 movhlps %xmm1, %xmm2 // higher 16-bit word (for adler) in xmm2
426 .word 1
427 .word 1
428 .word 1
429 .word 1
430 .word 1
431 .word 1
432 .word
[all...]
/darwin-on-arm/xnu/bsd/net/pktsched/
H A Dpktsched.h119 __fls(pktsched_bitmap_t word) argument
121 VERIFY(word != 0);
122 return (pktsched_fls(word) - 1);
/darwin-on-arm/xnu/bsd/netat/
H A Dadsp_internal.h50 typedef unsigned short word; typedef
55 #define WORD_AT(x) (*((word PTR)(x)))
327 void *qfind_b(void *qhead, word offset, word data);
328 void *qfind_w(void *qhead, word offset, word data);
329 void *qfind_p(void *qhead, word offset, void *ptr);
330 void *qfind_o(void *qhead, word offset, void *ptr);
H A Dadsp_Close.c419 if (sp->state == (word)sClosed) { /* Ok to close a closed connection */
424 if ((sp->state != (word)sOpen) && (sp->state != (word)sClosing)) {
H A Dadsp_RxData.c155 diff = (((word)(SysTicks() - sp->sendStamp)) / (word)10) -
271 int RXData(sp, mp, f, len) /* (CCBPtr sp, ADSP_FRAMEPtr f, word len) */
H A Dadsp_RxAttn.c62 word srcCID;
134 int RXAttention(sp, mp, f, len) /* (CCBPtr sp, ADSP_FRAMEPtr f, word len) */
H A Dadsp_Packet.c388 word dstCID;
389 word srcCID;
515 if ((sp->state == (word)sListening) && /* This CCB is a listener */
724 /* (bytePtr data, word len, AddrUnion a, byte dsoc) */
/darwin-on-arm/xnu/osfmk/x86_64/
H A Dstart.s504 movq 2(%rax), %rdx /* GDT base, skip limit word */
549 .word segment
555 .word 0x010f ;\
603 .word 160 /* limit (8*20 segs) */
606 saved_gdt: .word 0
609 saved_es: .word 0
610 saved_fs: .word 0
611 saved_gs: .word 0
612 saved_ss: .word 0
617 saved_idt: .word
[all...]
/darwin-on-arm/xnu/SETUP/config/
H A Dlexer.l35 int kw_lookup(char *word);
43 * Key word table
177 kw_lookup(char *word)
182 if (eq(word, kp->kt_name))
/darwin-on-arm/xnu/libkern/kmod/
H A DMakefile11 ARCH_CONFIG = $(word 2, $(TARGET_CONFIGS_UC))
/darwin-on-arm/xnu/bsd/sys/
H A Dsystm.h213 int suword(user_addr_t addr, long word);
214 int suiword(user_addr_t addr, long word);
/darwin-on-arm/xnu/bsd/vm/
H A Dvm_unix.c296 long word)
298 return (copyout((void *) &word, addr, sizeof(int)) == 0 ? 0 : -1);
303 long word = 0; local
305 if (copyin(addr, (void *) &word, sizeof(int)))
307 return(word);
315 long word)
317 return (copyout((void *) &word, addr, sizeof(int)) == 0 ? 0 : -1);
322 long word = 0; local
324 if (copyin(addr, (void *) &word, sizeof(int)))
326 return(word);
294 suword( user_addr_t addr, long word) argument
313 suiword( user_addr_t addr, long word) argument
334 sulong(user_addr_t addr, int64_t word) argument
[all...]
/darwin-on-arm/xnu/bsd/hfs/hfscommon/BTree/
H A DBTreeAllocate.c103 Note: We have to examine map nodes a word at a time rather than a long word
107 word aligned) and handled the spare bytes at the beginning and end
268 mapPos += nodeNum >> 4; // point to word containing map bit
300 long words in map records, although they are not long word aligned.
637 u_int16_t word; local
665 if (*pos != 0xFFFF) /* Anything free in this word? */
667 word = SWAP_BE16(*pos);
669 /* Iterate over bits in the word. */
674 if (word
[all...]
/darwin-on-arm/xnu/libkern/zlib/
H A Dinflate.c414 # define CRC2(check, word) \
416 hbuf[0] = (unsigned char)(word); \
417 hbuf[1] = (unsigned char)((word) >> 8); \
421 # define CRC4(check, word) \
423 hbuf[0] = (unsigned char)(word); \
424 hbuf[1] = (unsigned char)((word) >> 8); \
425 hbuf[2] = (unsigned char)((word) >> 16); \
426 hbuf[3] = (unsigned char)((word) >> 24); \
/darwin-on-arm/xnu/osfmk/console/panic_ui/
H A Dsetupdialog.c37 char word[2]; local
/darwin-on-arm/xnu/osfmk/mach/arm/
H A Dasm.h90 #define Value .word

Completed in 139 milliseconds

12