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

1 2

  /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/clang/include/clang/Basic/
OperatorPrecedence.h 26 namespace prec { namespace in namespace:clang
47 prec::Level getBinOpPrecedence(tok::TokenKind Kind, bool GreaterThanIsOperator,
  /external/bison/src/
gram.h 61 RULES[R].prec -- the symbol providing the precedence level of R.
63 RULES[R].precsym -- the symbol attached (via %prec) to give its
64 precedence to R. Of course, if set, it is equal to `prec', but we
66 in a %prec is not useless.
96 SYMBOLS[I]->prec records the precedence level of each symbol.
187 symbol *prec; member in struct:__anon2778
192 /* This symbol was attached to the rule via %prec. */
symtab.h 91 int prec; member in struct:symbol
161 void symbol_precedence_set (symbol *sym, int prec, assoc a, location loc);
  /external/chromium_org/third_party/re2/re2/
tostring.cc 62 int prec = parent_arg; local
84 if (prec < PrecConcat)
90 if (prec < PrecAlternate)
109 if (prec < PrecUnary)
141 int prec = parent_arg; local
152 if (prec < PrecEmpty)
163 if (prec < PrecConcat)
168 if (prec < PrecConcat)
179 if (prec < PrecAlternate)
187 if (prec < PrecUnary
    [all...]
  /external/regex-re2/re2/
tostring.cc 62 int prec = parent_arg; local
84 if (prec < PrecConcat)
90 if (prec < PrecAlternate)
109 if (prec < PrecUnary)
141 int prec = parent_arg; local
152 if (prec < PrecEmpty)
163 if (prec < PrecConcat)
168 if (prec < PrecConcat)
179 if (prec < PrecAlternate)
187 if (prec < PrecUnary
    [all...]
  /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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
printf.h 36 int prec; /* Precision. */ member in struct:printf_info
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
printf.h 36 int prec; /* Precision. */ member in struct:printf_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
printf.h 36 int prec; /* Precision. */ member in struct:printf_info
  /external/clang/test/CodeGen/
2008-03-24-BitField-And-Alloca.c 47 unsigned int prec : 1; member in struct:_Key::__anon18213
  /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;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalScaleOperationsTest.java 345 int prec = aNumber.precision(); local
346 assertEquals(68, prec);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
joystick.h 83 __s16 prec; member in struct:js_corr
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
joystick.h 83 __s16 prec; member in struct:js_corr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
joystick.h 83 __s16 prec; member in struct:js_corr
  /bionic/libc/bionic/
libc_logging.cpp 237 int prec = -1; local
298 prec = (int)parse_decimal(format, &nn);
386 if (sign != '\0' || prec != -1) {
  /external/ppp/pppd/
utils.c 169 int width, prec, fillch; local
198 prec = -1;
216 prec = va_arg(args, int);
219 prec = 0;
221 prec = prec * 10 + c - '0';
321 if (fillch == '0' && prec >= 0) {
322 n = prec;
325 if (prec >= 0 && n > prec)
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuScript.cpp 402 enum bcinfo::RSFloatPrecision prec = ME.getRSFloatPrecision(); local
403 switch (prec) {
    [all...]
  /system/core/libpixelflinger/codeflinger/
texturing.cpp 774 int prec = 0; local
781 prec = 5;
787 prec = 4;
794 prec = 8;
803 const int adjust = FRAC_BITS*2 - prec;
813 texel.format.c[i].h = tmu.format.c[i].h + offset + prec;
814 texel.format.c[i].l = texel.format.c[i].h - (tmu.format.bits(i) + prec);
842 RSB(AL, 0, k, u, imm(1<<prec));
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/compiler/
SymbolTable.h 351 bool setDefaultPrecision( const TPublicType& type, TPrecision prec ){
359 precisionStack[indexOfLastElement][type.type] = prec; // Uses map operator [], overwrites the current value
369 TPrecision prec = EbpUndefined; // If we dont find anything we return this. Should we error check this? local
373 prec = (*it).second;
378 return prec;
  /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...]
  /external/qemu/distrib/jpeg-6b/
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...]
  /bionic/libc/stdio/
vfprintf.c 181 int prec; /* precision from format (%.3d), or -1 */ local
197 int dprec; /* a copy of prec if [diouxX], 0 otherwise */
365 prec = -1;
403 prec = n < 0 ? -1 : n;
420 prec = n < 0 ? -1 : n;
499 if (prec == -1) {
500 prec = DEFPREC;
501 } else if ((ch == 'g' || ch == 'G') && prec == 0) {
502 prec = 1;
526 cp = cvt(_double, prec, flags, &softsign
    [all...]

Completed in 1830 milliseconds

1 2