HomeSort by relevance Sort by last modified time
    Searched defs:prec (Results 1 - 15 of 15) sorted by null

  /cts/tests/tests/content/src/android/content/res/cts/
FractionTest.java 81 float prec = expected * 1e-4f; local
82 if (prec < 1e-5f) {
83 prec = 1e-5f;
87 + Integer.toHexString(resid) + " " + mValue, diff > prec);
  /external/bison/src/
gram.h 63 RULES[R].prec -- the symbol providing the precedence level of R.
65 RULES[R].precsym -- the symbol attached (via %prec) to give its
66 precedence to R. Of course, if set, it is equal to `prec', but we
68 in a %prec is not useless.
98 SYMBOLS[I]->prec records the precedence level of each symbol.
187 symbol *prec; member in struct:__anon1622
192 /* This symbol was attached to the rule via %prec. */
symtab.h 73 int prec; member in struct:symbol
122 void symbol_precedence_set (symbol *sym, int prec, assoc a, location loc);
  /external/libpcap/missing/
snprintf.c 135 int width, int prec, int flags, int minusp)
141 if(prec != -1)
144 prec = 1;
146 if(prec == 0 && num == 0)
154 prec -= len;
155 /* pad with prec zeros */
156 while(prec-- > 0){
225 int prec,
228 if(prec != -1)
229 width -= prec;
297 int prec = -1; local
    [all...]
  /external/tcpdump/missing/
snprintf.c 135 int width, int prec, int flags, int minusp)
141 if(prec != -1)
144 prec = 1;
146 if(prec == 0 && num == 0)
154 prec -= len;
155 /* pad with prec zeros */
156 while(prec-- > 0){
225 int prec,
228 if(prec != -1)
229 width -= prec;
297 int prec = -1; local
    [all...]
  /external/grub/stage2/
tparm.c 242 int prec = 0; local
265 prec = value;
302 prec = width = value = 0;
311 prec = value;
315 *len = (prec > width) ? prec : width;
  /bionic/linker/
linker_format.c 435 int prec = -1; local
498 prec = (int)parse_decimal(format, &nn);
  /external/ppp/pppd/
utils.c 166 int width, prec, fillch; local
195 prec = -1;
213 prec = va_arg(args, int);
216 prec = 0;
218 prec = prec * 10 + c - '0';
318 if (fillch == '0' && prec >= 0) {
319 n = prec;
322 if (prec >= 0 && n > prec)
    [all...]
  /system/core/libpixelflinger/codeflinger/
texturing.cpp 757 int prec = 0; local
764 prec = 5;
770 prec = 4;
777 prec = 8;
786 const int adjust = FRAC_BITS*2 - prec;
796 texel.format.c[i].h = tmu.format.c[i].h + offset + prec;
797 texel.format.c[i].l = texel.format.c[i].h - (tmu.format.bits(i) + prec);
825 RSB(AL, 0, k, u, imm(1<<prec));
    [all...]
  /external/jpeg/
jcmarker.c 149 int prec; local
155 prec = 0;
158 prec = 1;
164 emit_2bytes(cinfo, prec ? DCTSIZE2*2 + 1 + 2 : DCTSIZE2 + 1 + 2);
166 emit_byte(cinfo, index + (prec<<4));
171 if (prec)
179 return prec;
496 int ci, prec; local
503 prec = 0;
506 prec += emit_dqt(cinfo, compptr->quant_tbl_no)
    [all...]
jdmarker.c 494 int n, i, prec; local
504 prec = n >> 4;
507 TRACEMS2(cinfo, 1, JTRC_DQT, n, prec);
517 if (prec)
536 if (prec) length -= DCTSIZE2;
    [all...]
  /external/libvpx/vp8/common/
boolcoder.h 190 uint prec, Rounding rr, uint Ebits = 0, uint Mbits = 0
192 : w(prec), r(rr)
279 uint Ebits = 3, uint Mbits = 4, Rounding rr = down_full, uint prec = 12
281 : bool_coder_spec(prec, rr, Ebits, Mbits)
306 bool_coder_spec_exponential_table(uint x, Rounding = down_full, uint prec = 16);
472 unsigned int prec; /* range precision in bits */ member in struct:vp8bc_prec
  /bionic/libc/stdio/
vfprintf.c 170 int prec; /* precision from format (%.3d), or -1 */ local
186 int dprec; /* a copy of prec if [diouxX], 0 otherwise */
354 prec = -1;
392 prec = n < 0 ? -1 : n;
409 prec = n < 0 ? -1 : n;
488 if (prec == -1) {
489 prec = DEFPREC;
490 } else if ((ch == 'g' || ch == 'G') && prec == 0) {
491 prec = 1;
515 cp = cvt(_double, prec, flags, &softsign
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/shared/
bcmutils.c 157 pktq_penq(struct pktq *pq, int prec, void *p)
161 ASSERT(prec >= 0 && prec < pq->num_prec);
165 ASSERT(!pktq_pfull(pq, prec));
167 q = &pq->q[prec];
179 if (pq->hi_prec < prec)
180 pq->hi_prec = (uint8)prec;
186 pktq_penq_head(struct pktq *pq, int prec, void *p)
190 ASSERT(prec >= 0 && prec < pq->num_prec)
323 int prec; local
343 int prec; local
376 int prec; local
414 int prec; local
431 int prec; local
449 int prec; local
459 int prec, len; local
476 int prec; local
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/dhd/sys/
dhd_sdio.c 1044 uint datalen, prec; local
    [all...]

Completed in 577 milliseconds