HomeSort by relevance Sort by last modified time
    Searched full:bitno (Results 1 - 25 of 36) sorted by null

1 2

  /external/valgrind/main/memcheck/tests/amd64/
bt_everything.c 18 ULong btsq_mem ( char* base, Word bitno )
25 : "r" (bitno));
32 ULong btrq_mem ( char* base, Word bitno )
39 : "r" (bitno));
43 ULong btcq_mem ( char* base, Word bitno )
50 : "r" (bitno));
54 ULong btq_mem ( char* base, Word bitno )
61 : "r" (bitno)
69 ULong btsl_mem ( char* base, Word bitno )
76 : "r" ((Int)bitno));
    [all...]
  /external/bison/lib/
abitset.c 52 bitset_bindex bitno; local
64 bitno = *next;
65 if (bitno >= size)
68 word >>= bitno;
75 for (count = 0; word; bitno++)
78 list[count++] = bitno;
84 for (count = 0; word; bitno++)
88 list[count++] = bitno;
91 bitno++;
99 *next = bitno;
145 bitset_bindex bitno; local
205 bitset_bindex bitno; local
    [all...]
ebitset.c 510 /* Set bit BITNO in bitset DST. */
512 ebitset_set (bitset dst, bitset_bindex bitno)
514 bitset_windex windex = bitno / BITSET_WORD_BITS;
516 ebitset_elt_find (dst, bitno, EBITSET_CREATE);
519 (bitset_word) 1 << (bitno % BITSET_WORD_BITS);
523 /* Reset bit BITNO in bitset DST. */
525 ebitset_reset (bitset dst, bitset_bindex bitno)
527 bitset_windex windex = bitno / BITSET_WORD_BITS;
529 if (!ebitset_elt_find (dst, bitno, EBITSET_FIND))
533 ~((bitset_word) 1 << (bitno % BITSET_WORD_BITS))
570 bitset_bindex bitno; local
658 bitset_bindex bitno; local
    [all...]
bitset.h 133 /* Set bit BITNO in bitset BSET. */
135 bitset_set (bitset bset, bitset_bindex bitno)
137 bitset_windex windex = bitno / BITSET_WORD_BITS;
141 bset->b.cdata[offset] |= ((bitset_word) 1 << (bitno % BITSET_WORD_BITS));
143 BITSET_SET_ (bset, bitno);
147 /* Reset bit BITNO in bitset BSET. */
149 bitset_reset (bitset bset, bitset_bindex bitno)
151 bitset_windex windex = bitno / BITSET_WORD_BITS;
155 bset->b.cdata[offset] &= ~((bitset_word) 1 << (bitno % BITSET_WORD_BITS));
157 BITSET_RESET_ (bset, bitno);
    [all...]
lbitset.c 64 bitset_windex index; /* bitno / BITSET_WORD_BITS. */
515 /* Set bit BITNO in bitset DST. */
517 lbitset_set (bitset dst, bitset_bindex bitno)
519 bitset_windex windex = bitno / BITSET_WORD_BITS;
524 (bitset_word) 1 << (bitno % BITSET_WORD_BITS);
528 /* Reset bit BITNO in bitset DST. */
530 lbitset_reset (bitset dst, bitset_bindex bitno)
532 bitset_windex windex = bitno / BITSET_WORD_BITS;
538 ~((bitset_word) 1 << (bitno % BITSET_WORD_BITS));
544 /* Test bit BITNO in bitset SRC. *
572 bitset_bindex bitno; local
666 bitset_bindex bitno; local
    [all...]
vbitset.c 115 /* Set bit BITNO in bitset DST. */
117 vbitset_set (dst, bitno)
119 bitset_bindex bitno;
121 bitset_windex windex = bitno / BITSET_WORD_BITS;
127 vbitset_resize (dst, bitno);
130 (bitset_word) 1 << (bitno % BITSET_WORD_BITS);
134 /* Reset bit BITNO in bitset DST. */
136 vbitset_reset (dst, bitno)
138 bitset_bindex bitno ATTRIBUTE_UNUSED;
145 /* Test bit BITNO in bitset SRC. *
168 bitset_bindex bitno; local
231 bitset_bindex bitno; local
    [all...]
bitset.c 224 /* Find next bit set in SRC starting from and including BITNO.
227 bitset_next (bitset src, bitset_bindex bitno)
230 bitset_bindex next = bitno;
246 /* Find previous bit set in SRC starting from and including BITNO.
249 bitset_prev (bitset src, bitset_bindex bitno)
252 bitset_bindex next = bitno;
276 /* Is BITNO in SRC the only set bit? */
278 bitset_only_set_p (bitset src, bitset_bindex bitno)
285 return val[0] == bitno;
336 /* Toggle bit BITNO in bitset BSET and the new value of the bit. *
    [all...]
bbitset.h 183 /* Set bit BITNO in bitset DST. */
184 #define BITSET_SET_(DST, BITNO) (DST)->b.vtable->set (DST, BITNO)
186 /* Reset bit BITNO in bitset DST. */
187 #define BITSET_RESET_(DST, BITNO) (DST)->b.vtable->reset (DST, BITNO)
189 /* Toggle bit BITNO in bitset DST. */
190 #define BITSET_TOGGLE_(DST, BITNO) (DST)->b.vtable->toggle (DST, BITNO)
192 /* Return non-zero if bit BITNO in bitset SRC is set. *
    [all...]
bitset_stats.c 313 bitset_stats_set (bitset dst, bitset_bindex bitno)
316 bitset_windex wordno = bitno / BITSET_WORD_BITS;
323 bset->b.cdata[offset] |= (bitset_word) 1 << (bitno % BITSET_WORD_BITS);
327 BITSET_SET_ (bset, bitno);
332 bitset_stats_reset (bitset dst, bitset_bindex bitno)
335 bitset_windex wordno = bitno / BITSET_WORD_BITS;
343 ~((bitset_word) 1 << (bitno % BITSET_WORD_BITS));
347 BITSET_RESET_ (bset, bitno);
352 bitset_stats_toggle (bitset src, bitset_bindex bitno)
354 return BITSET_TOGGLE_ (src->s.bset, bitno);
    [all...]
  /external/valgrind/main/none/tests/x86/
bt_everything.c 7 unsigned int btsl_mem ( char* base, int bitno )
14 : "r" (bitno));
21 unsigned int btrl_mem ( char* base, int bitno )
28 : "r" (bitno));
32 unsigned int btcl_mem ( char* base, int bitno )
39 : "r" (bitno));
43 unsigned int btl_mem ( char* base, int bitno )
50 : "r" (bitno)
58 unsigned int btsl_reg ( unsigned int reg_in, int bitno,
69 : "r" (bitno), "r" (reg_in
    [all...]
x86locked.c 466 unsigned int btsl_mem ( UChar* base, int bitno )
473 : "r" (bitno));
479 unsigned int btsw_mem ( UChar* base, int bitno )
486 : "r" (bitno));
490 unsigned int btrl_mem ( UChar* base, int bitno )
497 : "r" (bitno));
500 unsigned int btrw_mem ( UChar* base, int bitno )
507 : "r" (bitno));
511 unsigned int btcl_mem ( UChar* base, int bitno )
518 : "r" (bitno));
    [all...]
  /packages/apps/CellBroadcastReceiver/tests/res/values-sl/
strings.xml 23 <string name="button_gsm_7bit_type" msgid="4757698592787955850">"Po?lji 7-bitno preskusno oddajo GSM"</string>
24 <string name="button_gsm_7bit_umts_type" msgid="4377077702628367387">"Po?lji 7-bitno preskusno oddajo UMTS"</string>
25 <string name="button_gsm_7bit_nopadding_type" msgid="5289528095948674862">"Po?lji 7-bitno celotno oddajo GSM"</string>
26 <string name="button_gsm_7bit_nopadding_umts_type" msgid="7953047238483884846">"Po?lji 7-bitno celotno oddajo UMTS"</string>
27 <string name="button_gsm_7bit_multipage_type" msgid="8516540964071070491">"Po?lji 7-bitno ve?stransko oddajo GSM"</string>
28 <string name="button_gsm_7bit_multipage_umts_type" msgid="474883728254547100">"Po?lji 7-bitno ve?stransko oddajo UMTS"</string>
29 <string name="button_gsm_7bit_with_language_type" msgid="7414138913180046493">"Po?lji 7-bitno oddajo GSM z jezikom"</string>
  /external/llvm/test/Transforms/FunctionAttrs/
2008-12-31-NoCapture.ll 19 define i1 @c4(i32* %q, i32 %bitno) {
21 %tmp2 = lshr i32 %tmp, %bitno
32 define i1 @c5(i32* %q, i32 %bitno) {
34 %tmp2 = lshr i32 %tmp, %bitno
56 define i1* @lookup_bit(i32* %q, i32 %bitno) readnone nounwind {
58 %tmp2 = lshr i32 %tmp, %bitno
64 define i1 @c7(i32* %q, i32 %bitno) {
65 %ptr = call i1* @lookup_bit(i32* %q, i32 %bitno)
  /external/e2fsprogs/lib/ext2fs/
gen_bitmap.c 161 blk_t bitno)
163 if ((bitno < bitmap->start) || (bitno > bitmap->end)) {
164 ext2fs_warn_bitmap2(bitmap, EXT2FS_TEST_ERROR, bitno);
167 return ext2fs_test_bit(bitno - bitmap->start, bitmap->bitmap);
171 __u32 bitno)
173 if ((bitno < bitmap->start) || (bitno > bitmap->end)) {
174 ext2fs_warn_bitmap2(bitmap, EXT2FS_MARK_ERROR, bitno);
177 return ext2fs_set_bit(bitno - bitmap->start, bitmap->bitmap)
229 __u32 bitno; local
    [all...]
bitops.h 111 __u32 bitno);
113 blk_t bitno);
115 blk_t bitno);
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
sbitmap.h 55 /* Test if bit number bitno in the bitmap is set. */
56 #define TEST_BIT(BITMAP, BITNO) \
57 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] >> (BITNO) % SBITMAP_ELT_BITS & 1)
59 /* Set bit number BITNO in the sbitmap MAP. Updates population count
63 SET_BIT (sbitmap map, unsigned int bitno)
68 oldbit = TEST_BIT (map, bitno);
70 map->popcount[bitno / SBITMAP_ELT_BITS]++;
72 map->elms[bitno / SBITMAP_ELT_BITS]
73 |= (SBITMAP_ELT_TYPE) 1 << (bitno) % SBITMAP_ELT_BITS
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
sbitmap.h 55 /* Test if bit number bitno in the bitmap is set. */
56 #define TEST_BIT(BITMAP, BITNO) \
57 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] >> (BITNO) % SBITMAP_ELT_BITS & 1)
59 /* Set bit number BITNO in the sbitmap MAP. Updates population count
63 SET_BIT (sbitmap map, unsigned int bitno)
68 oldbit = TEST_BIT (map, bitno);
70 map->popcount[bitno / SBITMAP_ELT_BITS]++;
72 map->elms[bitno / SBITMAP_ELT_BITS]
73 |= (SBITMAP_ELT_TYPE) 1 << (bitno) % SBITMAP_ELT_BITS
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
sbitmap.h 55 /* Test if bit number bitno in the bitmap is set. */
56 #define TEST_BIT(BITMAP, BITNO) \
57 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] >> (BITNO) % SBITMAP_ELT_BITS & 1)
59 /* Set bit number BITNO in the sbitmap MAP. Updates population count
63 SET_BIT (sbitmap map, unsigned int bitno)
68 oldbit = TEST_BIT (map, bitno);
70 map->popcount[bitno / SBITMAP_ELT_BITS]++;
72 map->elms[bitno / SBITMAP_ELT_BITS]
73 |= (SBITMAP_ELT_TYPE) 1 << (bitno) % SBITMAP_ELT_BITS
    [all...]
  /external/valgrind/main/none/tests/amd64/
amd64locked.c 506 ULong btsq_mem ( UChar* base, int bitno )
514 : "r" ((ULong)bitno) : "rdx","cc","memory" );
520 ULong btsl_mem ( UChar* base, int bitno )
528 : "r" ((UInt)bitno));
531 ULong btsw_mem ( UChar* base, int bitno )
539 : "r" ((ULong)bitno));
543 ULong btrq_mem ( UChar* base, int bitno )
551 : "r" ((ULong)bitno));
554 ULong btrl_mem ( UChar* base, int bitno )
562 : "r" ((UInt)bitno));
    [all...]
  /external/bzip2/
unzcrash.c 67 int bitno = bit % 8; local
68 uchar mask = 1 << bitno;
70 // byteno, bitno, (int)mask );
  /frameworks/base/media/libstagefright/codecs/amrnb/common/include/
bitno_tab.h 37 Description: Define "const Word16 *bitno[N_MODES]" as "const Word16 *const
38 bitno[N_MODES]"
116 extern const Word16 *const bitno[];
  /frameworks/base/media/libstagefright/codecs/amrnb/common/src/
bitno_tab.cpp 36 Description: Define "const Word16 *bitno[N_MODES]" as "const Word16 *const
37 bitno[N_MODES]"
74 File : bitno.tab
262 extern const Word16 * const bitno[N_MODES] = variable
bits2prm.cpp 235 prm[i] = Bin2int (bitno[mode][i], bits);
236 bits += bitno[mode][i];
279 prm[i] = Bin2int(bitno[mode][i], bits);
280 bits += bitno[mode][i];
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
prm2bits.cpp 230 are found in bitno.tab
255 Int2bin (prm[i], bitno[mode][i], bits);
256 bits += bitno[mode][i];
299 p_mode = &bitno[mode][0];
  /external/llvm/lib/Target/Blackfin/
BlackfinRegisterInfo.td 33 class Rc<bits<5> bitno, string n> : BlackfinReg<n> {
34 field bits<5> BitNum = bitno;

Completed in 1697 milliseconds

1 2