Searched refs:word (Results 51 - 75 of 924) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/xtensa/boot/boot-elf/
H A Dbootstrap.S13 .word 0xd0001000
15 .word _bootparam
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/
H A Dsignbitd.c42 union { double value; unsigned int word[NWORDS]; } m; member in union:__anon2495
44 return (m.word[DBL_SIGNBIT_WORD] >> DBL_SIGNBIT_BIT) & 1;
H A Disnan.c80 typedef union { DOUBLE value; unsigned int word[NWORDS]; } memory_double; member in union:__anon2478
99 exponent = (m.word[EXPBIT0_WORD] >> EXPBIT0_BIT) & EXP_MASK;
103 return 1 & (m.word[0] >> 15);
105 return (((m.word[0] ^ 0x8000U) << 16) | m.word[1] | (m.word[2] >> 16)) != 0;
107 return 1 & ~(m.word[0] >> 15);
111 return (m.word[1] >> 31);
113 return ((m.word[1] ^ 0x80000000U) | m.word[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/octeon/
H A Dcvmx-spinlock.h147 * These spinlocks use a single bit (bit 31) of a 32 bit word for locking.
148 * The rest of the bits in the word are left undisturbed. This enables more
156 * word used for the lock.
159 * @word: word to lock bit 31 of
161 static inline void cvmx_spinlock_bit_lock(uint32_t *word) argument
177 [val] "+m"(*word), [tmp] "=&r"(tmp), [sav] "=&r"(sav)
185 * word used for the lock.
188 * @word: word t
193 cvmx_spinlock_bit_trylock(uint32_t *word) argument
225 cvmx_spinlock_bit_unlock(uint32_t *word) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/
H A D3c505.h136 typedef unsigned short int word; typedef
141 word cmd_q,
150 word buf_ofs,
157 word buf_ofs,
163 word buf_ofs,
173 word buf_ofs,
183 word err_CRC,
191 word error;
193 word ROM_cksum;
195 word of
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/doc/
H A Dsearch.php129 function logQueryWord($word) {
130 $result = mysql_query ("SELECT ID,Count FROM Queries WHERE Value='$word'");
135 mysql_query ("INSERT INTO Queries (Value,Count) VALUES ('$word',1)");
143 mysql_query ("INSERT INTO Queries (Value,Count) VALUES ('$word',1)");
146 function queryWord($word) {
149 if ($word) {
150 $result = mysql_query ("SELECT words.relevance, symbols.name, symbols.type, symbols.module, symbols.descr FROM words, symbols WHERE LCASE(words.name) LIKE LCASE('$word') and words.symbol = symbols.name ORDER BY words.relevance DESC LIMIT 75");
156 logQueryWord($word);
160 function queryHTMLWord($word) {
163 if ($word) {
247 $word = $list[$number]; variable
395 $word = $list[0]; variable
[all...]
H A Dindex.py31 # word tables and populate them with informations extracted from
224 print "Update word (%s, %s, %s) failed command" % (name, symbol, relevance)
437 print "Update word archive (%s, %d, %d) failed command" % (name, id, relevance)
451 # top 100 english word without the one len < 3 + own set
527 def addWord(word, module, symbol, relevance):
530 if word == None or len(word) < 3:
534 if dropWords.has_key(word):
536 if ord(word[0]) > 0x80:
539 if wordsDict.has_key(word)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/doc/
H A Dsearch.php129 function logQueryWord($word) {
130 $result = mysql_query ("SELECT ID,Count FROM Queries WHERE Value='$word'");
135 mysql_query ("INSERT INTO Queries (Value,Count) VALUES ('$word',1)");
143 mysql_query ("INSERT INTO Queries (Value,Count) VALUES ('$word',1)");
146 function queryWord($word) {
149 if ($word) {
150 $result = mysql_query ("SELECT words.relevance, symbols.name, symbols.type, symbols.module, symbols.descr FROM words, symbols WHERE LCASE(words.name) LIKE LCASE('$word') and words.symbol = symbols.name ORDER BY words.relevance DESC LIMIT 75");
156 logQueryWord($word);
160 function queryHTMLWord($word) {
163 if ($word) {
247 $word = $list[$number]; variable
395 $word = $list[0]; variable
[all...]
H A Dindex.py31 # word tables and populate them with informations extracted from
224 print "Update word (%s, %s, %s) failed command" % (name, symbol, relevance)
437 print "Update word archive (%s, %d, %d) failed command" % (name, id, relevance)
451 # top 100 english word without the one len < 3 + own set
527 def addWord(word, module, symbol, relevance):
530 if word == None or len(word) < 3:
534 if dropWords.has_key(word):
536 if ord(word[0]) > 0x80:
539 if wordsDict.has_key(word)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/tests/
H A Dtest-signbit.c85 typedef union { float value; unsigned int word[NWORDS]; } memory_float; member in union:__anon2672
89 m.word[FLT_EXPBIT0_WORD] ^= (unsigned int) 1 << (FLT_EXPBIT0_BIT - 1);
91 m.word[FLT_EXPBIT0_WORD + (FLT_EXPBIT0_WORD < NWORDS / 2 ? 1 : - 1)]
95 m.word[FLT_EXPBIT0_WORD + 1] |= (unsigned int) 1 << FLT_EXPBIT0_BIT;
97 m.word[0] |= (unsigned int) 1;
130 typedef union { double value; unsigned int word[NWORDS]; } memory_double; member in union:__anon2673
134 m.word[DBL_EXPBIT0_WORD] ^= (unsigned int) 1 << (DBL_EXPBIT0_BIT - 1);
136 m.word[DBL_EXPBIT0_WORD + (DBL_EXPBIT0_WORD < NWORDS / 2 ? 1 : - 1)]
139 m.word[DBL_EXPBIT0_WORD + (DBL_EXPBIT0_WORD < NWORDS / 2 ? 1 : - 1)]
173 typedef union { long double value; unsigned int word[NWORD member in union:__anon2674
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DMD4Hash.h180 unsigned char word = toupper(hash[i]); local
182 if ((word >= '0') && (word <= '9')) {
183 word -= '0';
184 } else if ((word >= 'A') && (word <= 'F')) {
185 word -= 'A' - 10;
192 m_hash[i/2] = word << 4;
194 m_hash[i/2] += word;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/lasat/
H A Dds1603.c100 static void rtc_write_word(unsigned long word) argument
105 rtc_write_databit(word & 1L);
106 word >>= 1;
113 unsigned long word = 0; local
117 word |= rtc_read_databit() << shift;
120 return word;
140 unsigned long word; local
146 word = rtc_read_word();
150 ts->tv_sec = word;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Dtest068.tcl52 puts "\tTest$tnum.a: Initialize word list."
91 foreach word $wordlist {
97 set ret [eval {$db put} $txn {$word $word}]
105 foreach word $wordlist {
106 # Make sure that the Nth word has been correctly
107 # inserted, and also that the Nth word is the
110 set dbt [$db get $word]
111 error_check_good get_key [list [list $word $word]]
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/score/lib/
H A Dstring.S65 .word 0b ,99b
66 .word 1b ,99b
67 .word 2b ,99b
68 .word 3b ,99b
69 .word 4b ,99b
70 .word 5b ,99b
102 .word 0b, 99b
103 .word 1b, 99b
130 .word 0b ,99b
131 .word
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/
H A Dsparccpuid.S47 .word 0x91408000 !rd %ccr,%o0
53 .word 0xbfa00040 !fmovd %f0,%f62
54 .word 0xbba00040 !...
55 .word 0xb7a00040
56 .word 0xb3a00040
57 .word 0xafa00040
58 .word 0xaba00040
59 .word 0xa7a00040
60 .word 0xa3a00040
61 .word
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/
H A Dsparccpuid.S47 .word 0x91408000 !rd %ccr,%o0
53 .word 0xbfa00040 !fmovd %f0,%f62
54 .word 0xbba00040 !...
55 .word 0xb7a00040
56 .word 0xb3a00040
57 .word 0xafa00040
58 .word 0xaba00040
59 .word 0xa7a00040
60 .word 0xa3a00040
61 .word
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/include/asm/
H A Dbitops.h57 * restricted to acting on a single-word quantity.
137 * modify other bits in the word.
172 * restricted to acting on a single-word quantity.
334 * __ffs - find first set bit in word
335 * @word: The word to search
339 static inline unsigned long __ffs(unsigned long word) argument
342 : "=r" (word)
343 : "rm" (word));
344 return word;
353 ffz(unsigned long word) argument
367 __fls(unsigned long word) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/sysdev/
H A Dmpc8xx_pic.c30 int bit, word; local
34 word = irq_nr >> 5;
36 ppc_cached_irq_mask[word] |= (1 << (31-bit));
37 out_be32(&siu_reg->sc_simask, ppc_cached_irq_mask[word]);
42 int bit, word; local
46 word = irq_nr >> 5;
48 ppc_cached_irq_mask[word] &= ~(1 << (31-bit));
49 out_be32(&siu_reg->sc_simask, ppc_cached_irq_mask[word]);
63 int bit, word; local
67 word
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/avr32/include/asm/
H A Dbitops.h33 * restricted to acting on a single-word quantity.
110 * restricted to acting on a single-word quantity.
240 static inline unsigned long __ffs(unsigned long word) argument
246 : "=r"(result), "=&r"(word)
247 : "1"(word));
252 static inline unsigned long ffz(unsigned long word) argument
254 return __ffs(~word);
258 static inline int fls(unsigned long word) argument
262 asm("clz %0,%1" : "=r"(result) : "r"(word));
266 static inline int __fls(unsigned long word) argument
290 ffs(unsigned long word) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/arch-v32/mach-a3/
H A Ddram_init.S93 .word 0
95 .word regk_ddr2_pre_all
97 .word 0
99 .word 0
101 .word regk_ddr2_dll_en
103 .word regk_ddr2_dll_rst
105 .word regk_ddr2_pre_all
107 .word 0
109 .word 0
111 .word CONFIG_ETRAX_DDR2_MR
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/clib/
H A Dmemmove.c42 * sizeof(word) MUST BE A POWER OF TWO
45 typedef int word; /* "word" used for optimal copy speed */ typedef
48 #define wsize sizeof(word)
119 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
140 TLOOP(src -= wsize; dst -= wsize; *(word *)dst = *(word *)src);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/hardware/eicon/
H A Dio.h170 word QsigFeatures;
179 word AlertToIn20mSecTicks;
180 word ModemEyeSetup;
193 word e_max;
194 word e_count;
196 word assign; /* list of pending ASSIGNs */
197 word head; /* head of request queue */
198 word tail; /* tail of request queue */
234 word assign_ref; /* assign reference */
244 word ebi
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/
H A Dasmmacro.h69 .word 0x41600bc1 | (\reg << 16)
73 .word 0x41600be1 | (\reg << 16)
77 .word 0x41600001 | (\reg << 16)
81 .word 0x41600021 | (\reg << 16)
85 .word 0x41000000 | (\rt << 16) | (\rd << 11) | (\u << 5) | (\sel)
89 .word 0x41800000 | (\rt << 16) | (\rd << 11) | (\u << 5) | (\sel)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/rt2x00/
H A Drt2x00debug.h44 const unsigned int word, __type *data); \
46 const unsigned int word, __type data); \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/tidspbridge/gen/
H A Dgb.c114 u32 *word; local
116 for (word = map->words, i = 0; i < map->wcnt; word++, i++) {
117 if (~*word) {
122 if (~*word & (1L << bit)) {
160 u32 word; local
163 word = map->words[bitn / BITS_PER_LONG];
164 state = word & mask ? true : false;

Completed in 162 milliseconds

1234567891011>>