Searched refs:word (Results 76 - 100 of 543) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/uniname/
H A Dgen-uninames.lisp11 word-indices
12 word-indices-index
15 (defstruct word-list
83 (let* ((word (subseq name i1 i2))
84 (len (length word)))
90 (make-word-list
94 (let ((word-list (aref words-by-length len)))
95 (unless (gethash word (word-list-hashed word
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc64/kernel/
H A Dsys32.S325 .word 1b, __retl_efault, 2b, __retl_efault
326 .word 3b, __retl_efault, 4b, __retl_efault
327 .word 5b, __retl_efault, 6b, __retl_efault
328 .word 7b, __retl_efault, 8b, __retl_efault
329 .word 9b, __retl_efault, 10b, __retl_efault
330 .word 11b, __retl_efault, 12b, __retl_efault
331 .word 13b, __retl_efault, 14b, __retl_efault
332 .word 15b, __retl_efault, 16b, __retl_efault
333 .word 17b, __retl_efault, 18b, __retl_efault
334 .word 1
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/lib/
H A Duaccess-kernel.S21 .word uaccess_kernel_put_byte
22 .word uaccess_kernel_get_byte
23 .word uaccess_kernel_put_half
24 .word uaccess_kernel_get_half
25 .word uaccess_kernel_put_word
26 .word uaccess_kernel_get_word
27 .word uaccess_kernel_put_dword
28 .word uaccess_kernel_copy
29 .word uaccess_kernel_copy
30 .word uaccess_kernel_clea
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-x86_64/
H A Dbitops.h26 * restricted to acting on a single-word quantity.
106 * restricted to acting on a single-word quantity.
308 * ffz - find first zero in word.
309 * @word: The word to search
313 static __inline__ unsigned long ffz(unsigned long word) argument
316 :"=r" (word)
317 :"r" (~word));
318 return word;
322 * __ffs - find first bit in word
327 __ffs(unsigned long word) argument
341 __fls(unsigned long word) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/lib/
H A Dstrncpy.S46 subq $27, 1, $2 # clear the final bits in the prev word
61 stq_u $31, 0($16) # zero one word
72 1: ldq_u $1, 0($16) # clear the leading bits in the final word
H A Dstxncpy.S21 * t0 = last word written
25 * a0 = unaligned address of the last *word* written
46 t0 == the first destination word for masking back in
47 t1 == the first source word. */
49 /* Create the 1st output word and detect 0's in the 1st input word. */
51 mskqh t2, a1, t2 # e0 : detection in the src word
54 mskql t0, a1, t0 # e0 : assemble the first output word
61 t0 == a source word not containing a null. */
73 /* Take care of the final (partial) word stor
[all...]
H A Dev6-stxncpy.S21 * t0 = last word written
25 * a0 = unaligned address of the last *word* written
57 t0 == the first destination word for masking back in
58 t1 == the first source word. */
60 /* Create the 1st output word and detect 0's in the 1st input word. */
62 mskqh t2, a1, t2 # U : detection in the src word (stall)
66 mskql t0, a1, t0 # U : assemble the first output word
77 t0 == a source word not containing a null. */
100 /* Take care of the final (partial) word stor
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm/
H A Dbitops.h52 * restricted to acting on a single-word quantity.
181 * restricted to acting on a single-word quantity.
456 * Return the bit position (0..63) of the most significant 1 bit in a word
491 * __ffs - find first bit in word.
492 * @word: The word to search
497 static inline unsigned long __ffs(unsigned long word) argument
499 return __ilog2(word & -word);
504 * @word
509 fls(int word) argument
517 fls64(__u64 word) argument
535 ffs(int word) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-mips/
H A Dbitops.h52 * restricted to acting on a single-word quantity.
181 * restricted to acting on a single-word quantity.
456 * Return the bit position (0..63) of the most significant 1 bit in a word
491 * __ffs - find first bit in word.
492 * @word: The word to search
497 static inline unsigned long __ffs(unsigned long word) argument
499 return __ilog2(word & -word);
504 * @word
509 fls(int word) argument
517 fls64(__u64 word) argument
535 ffs(int word) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppd/
H A Dpppcrypt.c42 unsigned int word; local
44 word = (unsigned)input[startBit / 8] << 8;
45 word |= (unsigned)input[startBit / 8 + 1];
47 word >>= 15 - (startBit % 8 + 7);
49 return word & 0xFE;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/camellia/
H A Dcmll_locl.h123 #define SWAP4WORD(word) \
126 CAMELLIA_SWAP4((word)[0]); \
127 CAMELLIA_SWAP4((word)[1]); \
128 CAMELLIA_SWAP4((word)[2]); \
129 CAMELLIA_SWAP4((word)[3]); \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/spi/
H A Dspi_bitbang.c34 * FIRST PART (OPTIONAL): word-at-a-time spi_transfer support.
53 u32 word, u8 bits);
58 u32 word, u8 bits),
66 u32 word, u8 bits),
76 u8 word = 0; local
79 word = *tx++;
80 word = txrx_word(spi, ns, word, bits);
82 *rx++ = word;
92 u32 word, u
62 bitbang_txrx_8( struct spi_device *spi, u32 (*txrx_word)(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits), unsigned ns, struct spi_transfer *t ) argument
88 bitbang_txrx_16( struct spi_device *spi, u32 (*txrx_word)(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits), unsigned ns, struct spi_transfer *t ) argument
102 u16 word = 0; local
114 bitbang_txrx_32( struct spi_device *spi, u32 (*txrx_word)(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits), unsigned ns, struct spi_transfer *t ) argument
128 u32 word = 0; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-s390/
H A Dbitops.h439 * ffz = Find First Zero in word. Undefined if no zero exists,
442 static inline unsigned long ffz(unsigned long word) argument
447 if (likely((word & 0xffffffff) == 0xffffffff)) {
448 word >>= 32;
452 if (likely((word & 0xffff) == 0xffff)) {
453 word >>= 16;
456 if (likely((word & 0xff) == 0xff)) {
457 word >>= 8;
460 return bit + _zb_findmap[word & 0xff];
464 * __ffs = find first bit in word
467 __ffs(unsigned long word) argument
869 unsigned long word, bit, set; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m68k/
H A Dsignal.h192 static inline int sigfindinword(unsigned long word) argument
195 : "=d" (word)
196 : "d" (word & -word)
198 return word ^ 31;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/bn/asm/alpha/
H A Dmul_add.pl15 $word=&wparam(3);
33 &muh($a0,$word,($h0)=&NR(1));
37 &mul($a0,$word,($l0)=&NR(1)); &FR($a0);
39 &muh($a1,$word,($h1)=&NR(1));
41 &mul($a1,$word,($l1)=&NR(1)); &FR($a1);
47 &muh($a2,$word,($h2)=&NR(1));
53 &mul($a2,$word,($l2)=&NR(1)); &FR($a2);
59 &muh($a3,$word,($h3)=&NR(1));
65 &mul($a3,$word,($l3)=&NR(1)); &FR($a3);
93 &muh($a0,$word,(
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh/boot/compressed/
H A Dhead.S105 .word 0
107 .word 0x0202 ! header version number (>= 0x0105)
109 .word 0 ! default_switch
110 .word 0 ! SETUPSEG
111 .word 0x1000
112 .word 0 ! pointing to kernel version string
117 .word 0x8000 ! size to move, when setup is not
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/boot/compressed/
H A Dhead.S49 .word 0x016f2818 @ Magic numbers to help the loader
50 .word start @ absolute load/run zImage address
51 .word _edata @ zImage end address
148 LC0: .word LC0 @ r1
149 .word __bss_start @ r2
150 .word _end @ r3
151 .word _load_addr @ r4
152 .word _start @ r5
153 .word _got_start @ r6
154 .word _got_en
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/mm/
H A Dproc-funcs.S193 .word page_nr @ extern - declared in mm-memc.c
261 * : ptr pointer to word-wide location
263 * Returns : Original word data at 'ptr'
291 .word _arm2_3_check_bugs
292 .word _arm2_proc_init
293 .word _arm2_proc_fin
294 .word _arm2_set_pgd
295 .word _arm2_xchg_1
296 .word _arm2_xchg_4
304 .word _arm2_3_check_bug
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/isdn/hardware/eicon/
H A Ddi.c46 static byte isdn_rc(ADAPTER *, byte, byte, byte, word, dword, dword);
47 static byte isdn_ind(ADAPTER *, byte, byte, byte, PBUFFER *, byte, word);
59 static void xdi_xlog (byte *msg, word code, int length);
83 word length;
84 word i;
85 word clength;
136 clength = min((word)(270-length),(word)(X[i].PLength-this->XOffset));
360 word Ref,
366 word
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh/boards/superh/microdev/
H A Dio.c211 unsigned short word; local
220 word = microdev_inw(evenPort);
221 word = (word & 0xffu) | (b << 8);
222 microdev_outw(word, evenPort);
225 unsigned short word; local
234 word = microdev_inw(port);
235 word = (word & 0xff00u) | (b);
236 microdev_outw(word, por
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/mm/
H A Dproc-arm720.S163 .word 0x0f3f
165 .word 0x013d
200 .word v4t_late_abort
201 .word cpu_arm720_proc_init
202 .word cpu_arm720_proc_fin
203 .word cpu_arm720_reset
204 .word cpu_arm720_do_idle
205 .word cpu_arm720_dcache_clean_area
206 .word cpu_arm720_switch_mm
207 .word cpu_arm720_set_pte_ex
[all...]
H A Dproc-v7.S199 .word 0x0120c302
201 .word 0x00c0387d
208 .word v7_early_abort
209 .word cpu_v7_proc_init
210 .word cpu_v7_proc_fin
211 .word cpu_v7_reset
212 .word cpu_v7_do_idle
213 .word cpu_v7_dcache_clean_area
214 .word cpu_v7_switch_mm
215 .word cpu_v7_set_pte_ex
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/boot/compressed/
H A Dhead.S121 .word 0x016f2818 @ Magic numbers to help the loader
122 .word start @ absolute load/run zImage address
123 .word _edata @ zImage end address
289 LC0: .word LC0 @ r1
290 .word __bss_start @ r2
291 .word _end @ r3
292 .word zreladdr @ r4
293 .word _start @ r5
294 .word _got_start @ r6
295 .word _got_en
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/i2c/busses/
H A Di2c-stub.c89 stub_words[command] = data->word;
90 dev_dbg(&adap->dev, "smbus word data - addr 0x%02x, "
92 addr, data->word, command);
94 data->word = stub_words[command];
95 dev_dbg(&adap->dev, "smbus word data - addr 0x%02x, "
97 addr, data->word, command);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/isdn/i4l/
H A Disdn_audio.h16 int word; member in struct:adpcm_state

Completed in 381 milliseconds

1234567891011>>