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

1 2 3 4 5

  /external/valgrind/memcheck/tests/amd64/
bt_everything.c 30 ULong btsq_mem ( char* base, Word bitno )
37 : "r" (bitno));
44 ULong btrq_mem ( char* base, Word bitno )
51 : "r" (bitno));
55 ULong btcq_mem ( char* base, Word bitno )
62 : "r" (bitno));
66 ULong btq_mem ( char* base, Word bitno )
73 : "r" (bitno)
81 ULong btsl_mem ( char* base, Word bitno )
88 : "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 134 /* Set bit BITNO in bitset BSET. */
136 bitset_set (bitset bset, bitset_bindex bitno)
138 bitset_windex windex = bitno / BITSET_WORD_BITS;
142 bset->b.cdata[offset] |= ((bitset_word) 1 << (bitno % BITSET_WORD_BITS));
144 BITSET_SET_ (bset, bitno);
148 /* Reset bit BITNO in bitset BSET. */
150 bitset_reset (bitset bset, bitset_bindex bitno)
152 bitset_windex windex = bitno / BITSET_WORD_BITS;
156 bset->b.cdata[offset] &= ~((bitset_word) 1 << (bitno % BITSET_WORD_BITS));
158 BITSET_RESET_ (bset, bitno);
    [all...]
lbitset.c 65 bitset_windex index; /* bitno / BITSET_WORD_BITS. */
516 /* Set bit BITNO in bitset DST. */
518 lbitset_set (bitset dst, bitset_bindex bitno)
520 bitset_windex windex = bitno / BITSET_WORD_BITS;
525 (bitset_word) 1 << (bitno % BITSET_WORD_BITS);
529 /* Reset bit BITNO in bitset DST. */
531 lbitset_reset (bitset dst, bitset_bindex bitno)
533 bitset_windex windex = bitno / BITSET_WORD_BITS;
539 ~((bitset_word) 1 << (bitno % BITSET_WORD_BITS));
545 /* Test bit BITNO in bitset SRC. *
573 bitset_bindex bitno; local
667 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 185 /* Set bit BITNO in bitset DST. */
186 #define BITSET_SET_(DST, BITNO) (DST)->b.vtable->set (DST, BITNO)
188 /* Reset bit BITNO in bitset DST. */
189 #define BITSET_RESET_(DST, BITNO) (DST)->b.vtable->reset (DST, BITNO)
191 /* Toggle bit BITNO in bitset DST. */
192 #define BITSET_TOGGLE_(DST, BITNO) (DST)->b.vtable->toggle (DST, BITNO)
194 /* 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/none/tests/x86/
bt_everything.c 18 unsigned int btsl_mem ( unsigned char* base, int bitno )
25 : "r" (bitno));
32 unsigned int btrl_mem ( unsigned char* base, int bitno )
39 : "r" (bitno));
43 unsigned int btcl_mem ( unsigned char* base, int bitno )
50 : "r" (bitno));
54 unsigned int btl_mem ( unsigned char* base, int bitno )
61 : "r" (bitno)
69 unsigned int btsl_reg ( unsigned int reg_in, int bitno,
80 : "r" (bitno), "r" (reg_in
    [all...]
x86locked.c 478 unsigned int btsl_mem ( UChar* base, int bitno )
485 : "r" (bitno));
491 unsigned int btsw_mem ( UChar* base, int bitno )
498 : "r" (bitno));
502 unsigned int btrl_mem ( UChar* base, int bitno )
509 : "r" (bitno));
512 unsigned int btrw_mem ( UChar* base, int bitno )
519 : "r" (bitno));
523 unsigned int btcl_mem ( UChar* base, int bitno )
530 : "r" (bitno));
    [all...]
  /packages/apps/CellBroadcastReceiver/tests/res/values-sl/
strings.xml 28 <string name="button_gsm_7bit_type" msgid="4757698592787955850">"Po?lji 7-bitno preskusno oddajo GSM"</string>
29 <string name="button_gsm_7bit_umts_type" msgid="4377077702628367387">"Po?lji 7-bitno preskusno oddajo UMTS"</string>
30 <string name="button_gsm_7bit_nopadding_type" msgid="5289528095948674862">"Po?lji 7-bitno celotno oddajo GSM"</string>
31 <string name="button_gsm_7bit_nopadding_umts_type" msgid="7953047238483884846">"Po?lji 7-bitno celotno oddajo UMTS"</string>
32 <string name="button_gsm_7bit_multipage_type" msgid="8516540964071070491">"Po?lji 7-bitno ve?stransko oddajo GSM"</string>
33 <string name="button_gsm_7bit_multipage_umts_type" msgid="474883728254547100">"Po?lji 7-bitno ve?stransko oddajo UMTS"</string>
34 <string name="button_gsm_7bit_with_language_type" msgid="7414138913180046493">"Po?lji 7-bitno oddajo GSM z jezikom"</string>
35 <string name="button_gsm_7bit_with_language_body_gsm_type" msgid="7365993929355114874">"Po?lji 7-bitno sporo?ilo GSM z jezikom v telesu"</string>
  /external/e2fsprogs/lib/ext2fs/
gen_bitmap.c 171 blk_t bitno)
176 return ext2fs_test_generic_bmap(bitmap, bitno);
180 "test_bitmap(%lu)", (unsigned long) bitno);
185 if ((bitno < bitmap->start) || (bitno > bitmap->end)) {
186 ext2fs_warn_bitmap2(bitmap, EXT2FS_TEST_ERROR, bitno);
189 return ext2fs_test_bit(bitno - bitmap->start, bitmap->bitmap);
193 __u32 bitno)
198 return ext2fs_mark_generic_bmap(bitmap, bitno);
202 "mark_bitmap(%lu)", (unsigned long) bitno);
308 __u32 bitno; local
    [all...]
blkmap64_ba.c 129 __u64 bitno; local
136 bitno = bmap->real_end;
137 if (bitno > new_end)
138 bitno = new_end;
139 for (; bitno > bmap->end; bitno--)
140 ext2fs_clear_bit64(bitno - bmap->start, bp->bitarray);
167 blk64_t bitno = (blk64_t) arg; local
169 return ext2fs_set_bit64(bitno - bitmap->start, bp->bitarray);
175 blk64_t bitno = (blk64_t) arg local
183 blk64_t bitno = (blk64_t) arg; local
192 blk64_t bitno = (blk64_t) arg; local
203 blk64_t bitno = (blk64_t) arg; local
    [all...]
  /packages/apps/CellBroadcastReceiver/tests/res/values-b+sr+Latn/
strings.xml 28 <string name="button_gsm_7bit_type" msgid="4757698592787955850">"Po?alji 7-bitno probno GSM emitovanje"</string>
29 <string name="button_gsm_7bit_umts_type" msgid="4377077702628367387">"Po?alji 7-bitno probno UMTS emitovanje"</string>
30 <string name="button_gsm_7bit_nopadding_type" msgid="5289528095948674862">"Po?alji celokupno 7-bitno GSM emitovanje"</string>
31 <string name="button_gsm_7bit_nopadding_umts_type" msgid="7953047238483884846">"Po?alji celokupno 7-bitno UMTS emitovanje"</string>
32 <string name="button_gsm_7bit_multipage_type" msgid="8516540964071070491">"Po?alji 7-bitno GSM emitovanje na vi?e strana"</string>
33 <string name="button_gsm_7bit_multipage_umts_type" msgid="474883728254547100">"Po?alji 7-bitno UMTS emitovanje na vi?e strana"</string>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
sbitmap.h 99 /* Test if bit number bitno in the bitmap is set. */
101 bitmap_bit_p (const_sbitmap map, int bitno)
103 size_t i = bitno / SBITMAP_ELT_BITS;
104 unsigned int s = bitno % SBITMAP_ELT_BITS;
108 /* Set bit number BITNO in the sbitmap MAP. */
111 bitmap_set_bit (sbitmap map, int bitno)
114 map->elms[bitno / SBITMAP_ELT_BITS]
115 |= (SBITMAP_ELT_TYPE) 1 << (bitno) % SBITMAP_ELT_BITS;
118 /* Reset bit number BITNO in the sbitmap MAP. */
121 bitmap_clear_bit (sbitmap map, int bitno)
    [all...]
  /external/llvm/test/Transforms/FunctionAttrs/
nocapture.ll 22 ; CHECK: define i1 @c4(i32* %q, i32 %bitno)
23 define i1 @c4(i32* %q, i32 %bitno) {
25 %tmp2 = lshr i32 %tmp, %bitno
36 ; CHECK: define i1 @c5(i32* %q, i32 %bitno)
37 define i1 @c5(i32* %q, i32 %bitno) {
39 %tmp2 = lshr i32 %tmp, %bitno
63 define i1* @lookup_bit(i32* %q, i32 %bitno) readnone nounwind {
65 %tmp2 = lshr i32 %tmp, %bitno
71 ; CHECK: define i1 @c7(i32* readonly %q, i32 %bitno)
72 define i1 @c7(i32* %q, i32 %bitno) {
    [all...]
  /external/valgrind/memcheck/tests/vbit-test/
vbits.c 604 onehot_vbits(unsigned bitno, unsigned num_bits)
606 assert(bitno < num_bits);
611 case 1: new.bits.u32 = 1 << bitno; break;
612 case 8: new.bits.u8 = 1 << bitno; break;
613 case 16: new.bits.u16 = 1 << bitno; break;
614 case 32: new.bits.u32 = 1u << bitno; break;
615 case 64: new.bits.u64 = 1ull << bitno; break;
618 if (bitno < 64) {
619 new.bits.u128[0] = 1ull << bitno;
623 new.bits.u128[1] = 1ull << (bitno - 64)
    [all...]
  /external/valgrind/none/tests/amd64/
amd64locked.c 518 ULong btsq_mem ( UChar* base, int bitno )
526 : "r" ((ULong)bitno) : "rdx","cc","memory" );
532 ULong btsl_mem ( UChar* base, int bitno )
540 : "r" ((UInt)bitno));
543 ULong btsw_mem ( UChar* base, int bitno )
551 : "r" ((ULong)bitno));
555 ULong btrq_mem ( UChar* base, int bitno )
563 : "r" ((ULong)bitno));
566 ULong btrl_mem ( UChar* base, int bitno )
574 : "r" ((UInt)bitno));
    [all...]
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/x86/
reg.go 97 return gc.Bitno(b) + x86.REG_AX
112 return gc.Bitno(b) - 8 + x86.REG_X0
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/arm/
reg.go 127 return gc.Bitno(b) + arm.REG_R0
135 return gc.Bitno(b) - 16 + arm.REG_F0
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ppc64/
reg.go 153 return gc.Bitno(b) + ppc64.REG_R0
161 return gc.Bitno(b) + ppc64.REG_F0
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/x86/
reg.go 94 return gc.Bitno(b) + x86.REG_AX
109 return gc.Bitno(b) - 8 + x86.REG_X0
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/x86/
reg.go 97 return gc.Bitno(b) + x86.REG_AX
112 return gc.Bitno(b) - 8 + x86.REG_X0
  /prebuilts/go/linux-x86/src/cmd/compile/internal/arm/
reg.go 127 return gc.Bitno(b) + arm.REG_R0
135 return gc.Bitno(b) - 16 + arm.REG_F0

Completed in 624 milliseconds

1 2 3 4 5