Home
last modified time | relevance | path

Searched refs:csize (Results 1 – 24 of 24) sorted by relevance

/external/bison/lib/
Dabitset.c209 bitset_windex size = src->b.csize; in abitset_list()
309 ABITSET_WORDS (dst)[dst->b.csize - 1] &= in abitset_unused_clear()
320 bytes = sizeof (bitset_word) * dst->b.csize; in abitset_ones()
333 bytes = sizeof (bitset_word) * dst->b.csize; in abitset_zero()
345 for (i = 0; i < dst->b.csize; i++) in abitset_empty_p()
358 bitset_windex size = dst->b.csize; in abitset_copy1()
372 bitset_windex size = dst->b.csize; in abitset_not()
386 bitset_windex size = dst->b.csize; in abitset_equal_p()
401 bitset_windex size = dst->b.csize; in abitset_subset_p()
416 bitset_windex size = dst->b.csize; in abitset_disjoint_p()
[all …]
Dlbitset.c198 bset->b.csize = 0; in lbitset_elt_unlink()
229 bset->b.csize = 0; in lbitset_prune()
262 if (bset->b.csize) in lbitset_elt_link()
312 bset->b.csize = LBITSET_ELT_WORDS; in lbitset_elt_link()
324 if (bset->b.csize) in lbitset_elt_find()
328 if ((windex - bset->b.cindex) < bset->b.csize) in lbitset_elt_find()
357 bset->b.csize = LBITSET_ELT_WORDS; in lbitset_elt_find()
478 dst->b.csize = LBITSET_ELT_WORDS; in lbitset_copy()
1059 dst->b.csize = 0; in lbitset_op3_cmp()
Dbitset.h140 if (offset < bset->b.csize) in bitset_set()
154 if (offset < bset->b.csize) in bitset_reset()
168 if (offset < bset->b.csize) in bitset_test()
Dbitset_stats.c321 if (offset < bset->b.csize) in bitset_stats_set()
340 if (offset < bset->b.csize) in bitset_stats_reset()
367 if (offset < bset->b.csize) in bitset_stats_test()
688 bset->b.csize = 0; in bitset_stats_init()
Dbbitset.h89 bitset_windex csize; /* Cache size in words. */ member
107 #define BITSET_CSIZE_(SRC) (SRC)->b.csize
Debitset.c1342 bset->b.csize = EBITSET_ELT_WORDS; in ebitset_init()
Dvbitset.c47 #define VBITSET_SIZE(X) ((X)->b.csize)
/external/webkit/Tools/android/flex-2.5.4a/
Dmain.c59 int C_plus_plus, long_align, use_read, yytext_is_array, do_yywrap, csize; variable
201 if ( csize == unspecified ) in check_options()
204 csize = DEFAULT_CSIZE; in check_options()
206 csize = CSIZE; in check_options()
255 for ( i = 2; i <= csize; ++i ) in check_options()
261 nextecm[csize] = NIL; in check_options()
267 for ( i = 1; i <= csize; ++i ) in check_options()
443 if ( csize == unspecified )
448 csize = 256;
450 if ( csize == 128 )
[all …]
Dccl.c127 for ( i = 0; i < csize; ++i )
137 while ( ++i < csize && cset[i] )
Dparse.y93 for ( c = 0; c < csize; ++c ) \
626 ecgroup, csize, csize );
647 nextecm, ecgroup, csize, csize );
Ddfa.c205 for ( i = 0; i < csize; ++i )
216 for ( i = 0; i < csize; ++i )
427 for ( i = 0; i <= csize; ++i ) in ntod()
481 int use_NUL_table = (numecs == csize); in ntod()
490 for ( power_of_two = 1; power_of_two <= csize; in ntod()
1040 if ( tch < -lastccl || tch >= csize )
Dgen.c233 out_str_dec( C_int_decl, "yy_ec", csize ); in genecs()
235 for ( i = 1; i < csize; ++i ) in genecs()
250 numrows = csize / 8; in genecs()
254 for ( i = j; i < csize; i = i + numrows ) in genecs()
Dnfa.c654 mkechar( sym ? sym : csize, nextecm, ecgroup );
Dmisc.c172 if ( c >= csize )
Dflexdef.h392 extern int csize;
Dinitscan.c1818 csize = option_sense ? 128 : 256; variable
1823 csize = option_sense ? 256 : 128; variable
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
DZipOutputStreamTest.java146 long csize = ze.getCompressedSize(); in test_setLevelI() local
151 assertTrue("setLevel failed", csize <= ze.getCompressedSize()); in test_setLevelI()
167 long csize = ze.getCompressedSize(); in test_setMethodI() local
172 assertTrue("setLevel failed", csize >= ze.getCompressedSize()); in test_setMethodI()
/external/icu4c/common/
Dlocid.cpp319 int32_t csize = 0; in Locale() local
336 csize = (int32_t)uprv_strlen(newCountry); in Locale()
337 size += csize; in Locale()
367 else if ( csize > 0 ) in Locale()
401 if ( ( vsize != 0 ) || (csize != 0) ) // at least: __v in Locale()
406 if ( csize != 0 ) in Locale()
409 p += csize; in Locale()
/external/webkit/Tools/android/flex-2.5.4a/MISC/
Dparse.c95 for ( c = 0; c < csize; ++c ) \
1204 ecgroup, csize, csize ); in yyparse()
1226 nextecm, ecgroup, csize, csize ); in yyparse()
/external/qemu/block/
Dqcow.c425 int ret, csize; in decompress_cluster() local
430 csize = cluster_offset >> (63 - s->cluster_bits); in decompress_cluster()
431 csize &= (s->cluster_size - 1); in decompress_cluster()
432 ret = bdrv_pread(bs->file, coffset, s->cluster_data, csize); in decompress_cluster()
433 if (ret != csize) in decompress_cluster()
436 s->cluster_data, csize) < 0) { in decompress_cluster()
Dqcow2-cluster.c903 int ret, csize, nb_csectors, sector_offset; in qcow2_decompress_cluster() local
910 csize = nb_csectors * 512 - sector_offset; in qcow2_decompress_cluster()
917 s->cluster_data + sector_offset, csize) < 0) { in qcow2_decompress_cluster()
/external/libvpx/vp8/encoder/
Dbitstream.c361 signed char csize; in write_partition_size() local
363 csize = size & 0xff; in write_partition_size()
364 *cx_data = csize; in write_partition_size()
365 csize = (size >> 8) & 0xff; in write_partition_size()
366 *(cx_data + 1) = csize; in write_partition_size()
367 csize = (size >> 16) & 0xff; in write_partition_size()
368 *(cx_data + 2) = csize; in write_partition_size()
/external/llvm/test/CodeGen/Thumb2/
D2009-08-01-WrongLDRBOpc.ll3 @csize = external global [100 x [20 x [4 x i8]]] ; <[100 x [20 x [4 x i8]]]*> [#uses=1]
65 …%scevgep13.i.i.i = getelementptr [100 x [20 x [4 x i8]]]* @csize, i32 0, i32 %i.03.i172.i.i, i32 %…
/external/webkit/Tools/android/flex-2.5.4a/MISC/MVS/
Dinitscan-mvs.c1447 (int *) malloc( sizeof( int ) * (unsigned) csize );
1453 for ( i = 0; i < csize; ++i )