Searched defs:lval (Results 1 - 25 of 44) sorted by relevance

12

/external/chromium_org/third_party/skia/src/animator/
H A DSkAnimateBase.h57 SkString lval; member in class:SkAnimateBase
/external/skia/src/animator/
H A DSkAnimateBase.h57 SkString lval; member in class:SkAnimateBase
/external/jpeg/
H A Dcjpeg.c292 long lval; local
297 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
300 lval *= 1000L;
301 cinfo->mem->max_memory_to_use = lval * 1000L;
358 long lval; local
363 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
365 if (lval < 0 || lval > 65535L)
368 cinfo->restart_interval = (unsigned int) lval;
371 cinfo->restart_in_rows = (int) lval;
[all...]
H A Djpegtran.c209 long lval; local
214 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
217 lval *= 1000L;
218 cinfo->mem->max_memory_to_use = lval * 1000L;
249 long lval; local
254 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
256 if (lval < 0 || lval > 65535L)
259 cinfo->restart_interval = (unsigned int) lval;
262 cinfo->restart_in_rows = (int) lval;
[all...]
H A Ddjpeg.c288 long lval; local
293 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
296 lval *= 1000L;
297 cinfo->mem->max_memory_to_use = lval * 1000L;
/external/qemu/distrib/jpeg-6b/
H A Dcjpeg.c292 long lval; local
297 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
300 lval *= 1000L;
301 cinfo->mem->max_memory_to_use = lval * 1000L;
358 long lval; local
363 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
365 if (lval < 0 || lval > 65535L)
368 cinfo->restart_interval = (unsigned int) lval;
371 cinfo->restart_in_rows = (int) lval;
[all...]
H A Djpegtran.c209 long lval; local
214 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
217 lval *= 1000L;
218 cinfo->mem->max_memory_to_use = lval * 1000L;
249 long lval; local
254 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
256 if (lval < 0 || lval > 65535L)
259 cinfo->restart_interval = (unsigned int) lval;
262 cinfo->restart_in_rows = (int) lval;
[all...]
H A Ddjpeg.c288 long lval; local
293 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
296 lval *= 1000L;
297 cinfo->mem->max_memory_to_use = lval * 1000L;
/external/qemu/distrib/sdl-1.2.15/src/audio/dc/
H A DSDL_dcaudio.c115 unsigned lval,rval; local
116 lval = *src++;
118 lval|= (*src++)<<8;
120 lval|= (*src++)<<16;
122 lval|= (*src++)<<24;
124 g2_write_32(left++,lval);
137 unsigned lval,rval; local
138 lval = *src++;
140 lval|= (*src++)<<16;
142 g2_write_32(left++,lval);
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_inlines.h165 void ValueDef::setSSA(LValue *lval) argument
168 set(lval);
H A Dnv50_ir_print.cpp644 const Value *lval = Value::get(it)->asLValue(); local
645 if (lval && !lval->livei.isEmpty()) {
646 INFO("livei(%%%i): ", lval->id);
647 lval->livei.print();
H A Dnv50_ir_build_util.h220 LValue *lval = new_LValue(func, f); local
221 lval->reg.size = size;
222 return lval;
228 LValue *lval = new_LValue(func, f); local
229 lval->ssa = 1;
230 lval->reg.size = size;
231 return lval;
H A Dnv50_ir_ssa.cpp332 LValue *lval; local
345 lval = reinterpret_cast<Value *>(allLValues.get(var))->asLValue();
346 if (!lval || lval->defs.empty())
353 // gather blocks with assignments to lval in workList
354 for (Value::DefIterator d = lval->defs.begin();
355 d != lval->defs.end(); ++d) {
366 // for each block in workList, insert a phi for lval in the block's
381 if (!dfBB->liveSet.test(lval->id))
384 phi = new_Instruction(this, OP_PHI, typeOfSize(lval
426 LValue *lval = val->asLValue(); local
446 LValue *lval, *ssa; local
[all...]
H A Dnv50_ir.cpp240 LValue::LValue(Function *fn, LValue *lval) argument
242 assert(lval);
244 reg.file = lval->reg.file;
245 reg.size = lval->reg.size;
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_inlines.h165 void ValueDef::setSSA(LValue *lval) argument
168 set(lval);
H A Dnv50_ir_print.cpp644 const Value *lval = Value::get(it)->asLValue(); local
645 if (lval && !lval->livei.isEmpty()) {
646 INFO("livei(%%%i): ", lval->id);
647 lval->livei.print();
H A Dnv50_ir_build_util.h220 LValue *lval = new_LValue(func, f); local
221 lval->reg.size = size;
222 return lval;
228 LValue *lval = new_LValue(func, f); local
229 lval->ssa = 1;
230 lval->reg.size = size;
231 return lval;
H A Dnv50_ir_ssa.cpp332 LValue *lval; local
345 lval = reinterpret_cast<Value *>(allLValues.get(var))->asLValue();
346 if (!lval || lval->defs.empty())
353 // gather blocks with assignments to lval in workList
354 for (Value::DefIterator d = lval->defs.begin();
355 d != lval->defs.end(); ++d) {
366 // for each block in workList, insert a phi for lval in the block's
381 if (!dfBB->liveSet.test(lval->id))
384 phi = new_Instruction(this, OP_PHI, typeOfSize(lval
426 LValue *lval = val->asLValue(); local
446 LValue *lval, *ssa; local
[all...]
H A Dnv50_ir.cpp240 LValue::LValue(Function *fn, LValue *lval) argument
242 assert(lval);
244 reg.file = lval->reg.file;
245 reg.size = lval->reg.size;
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcnmdptst.c205 static const int32_t lval[] = { 0, -1, 1, 123456789 }; local
248 lval_length = sizeof(lval) / sizeof(lval[0]);
299 lneed=unum_formatDouble(fmt, lval[v], NULL, lneed, NULL, &status);
303 unum_formatDouble(fmt, lval[v], str, lneed+1, NULL, &status);
308 /*printf(" Format %e -> %s\n", lval[v], austrdup(str) );*/
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dintnum.c886 wordptr lval = op1static; local
890 BitVector_Empty(lval);
892 BitVector_Chunk_Store(lval, 32, 0, (unsigned long)low);
894 BitVector_Chunk_Store(lval, 32, 0, (unsigned long)(-low));
895 BitVector_Negate(lval, lval);
907 return (BitVector_Compare(val, lval) >= 0
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
H A Dx86arch.c179 long lval; local
184 (lval = yasm_intnum_get_int(intn)) &&
185 (lval == 16 || lval == 32 || lval == 64))
186 arch_x86->mode_bits = (unsigned char)lval;
/external/icu4c/test/cintltst/
H A Dcnmdptst.c205 static const int32_t lval[] = { 0, -1, 1, 123456789 }; local
248 lval_length = sizeof(lval) / sizeof(lval[0]);
299 lneed=unum_formatDouble(fmt, lval[v], NULL, lneed, NULL, &status);
303 unum_formatDouble(fmt, lval[v], str, lneed+1, NULL, &status);
308 /*printf(" Format %e -> %s\n", lval[v], austrdup(str) );*/
/external/dnsmasq/src/
H A Drfc1035.c1029 long lval; local
1068 lval = va_arg(ap, long);
1069 PUTLONG(lval, p);
/external/e2fsprogs/intl/
H A Dplural.c78 static int yylex (YYSTYPE *lval, const char **pexp);
1344 yylex (YYSTYPE *lval, const char **pexp) argument
1376 lval->num = n;
1385 lval->op = equal;
1396 lval->op = not_equal;
1413 lval->op = less_or_equal;
1416 lval->op = less_than;
1424 lval->op = greater_or_equal;
1427 lval->op = greater_than;
1432 lval
[all...]

Completed in 1003 milliseconds

12