Searched refs:lval (Results 1 - 25 of 63) sorted by relevance

123

/external/libvpx/libvpx/vp9/common/
H A Dvp9_common.h50 #define CHECK_MEM_ERROR(cm, lval, expr) \
52 lval = (expr); \
53 if (!lval) \
55 "Failed to allocate " #lval " at %s:%d", __FILE__, \
59 #define CHECK_MEM_ERROR(cm, lval, expr) \
61 lval = (expr); \
62 if (!lval) \
64 "Failed to allocate " #lval); \
/external/strace/tests/
H A Doverflowuid.c41 long lval; local
42 char buf[sizeof(lval) * 3];
55 lval = strtol(buf, &endptr, 10);
58 || lval > INT_MAX || lval < INT_MIN
66 *pvalue = (int) lval;
/external/strace/tests-m32/
H A Doverflowuid.c41 long lval; local
42 char buf[sizeof(lval) * 3];
55 lval = strtol(buf, &endptr, 10);
58 || lval > INT_MAX || lval < INT_MIN
66 *pvalue = (int) lval;
/external/strace/tests-mx32/
H A Doverflowuid.c41 long lval; local
42 char buf[sizeof(lval) * 3];
55 lval = strtol(buf, &endptr, 10);
58 || lval > INT_MAX || lval < INT_MIN
66 *pvalue = (int) lval;
/external/valgrind/include/
H A Dvalgrind.h1238 #define CALL_FN_W_v(lval, orig) \
1253 lval = (__typeof__(lval)) _res; \
1256 #define CALL_FN_W_W(lval, orig, arg1) \
1274 lval = (__typeof__(lval)) _res; \
1277 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \
1297 lval = (__typeof__(lval)) _res; \
1300 #define CALL_FN_W_WWW(lval, ori
[all...]
/external/libchrome/base/third_party/valgrind/
H A Dvalgrind.h794 #define CALL_FN_W_v(lval, orig) \
807 lval = (__typeof__(lval)) _res; \
810 #define CALL_FN_W_W(lval, orig, arg1) \
827 lval = (__typeof__(lval)) _res; \
830 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \
849 lval = (__typeof__(lval)) _res; \
852 #define CALL_FN_W_WWW(lval, ori
[all...]
/external/regex-re2/util/
H A Dvalgrind.h713 #define CALL_FN_W_v(lval, orig) \
726 lval = (__typeof__(lval)) _res; \
729 #define CALL_FN_W_W(lval, orig, arg1) \
745 lval = (__typeof__(lval)) _res; \
748 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \
766 lval = (__typeof__(lval)) _res; \
769 #define CALL_FN_W_WWW(lval, ori
[all...]
/external/libvpx/libvpx/vp8/decoder/
H A Donyxd_int.h128 #define CHECK_MEM_ERROR(lval, expr) \
130 lval = (expr); \
131 if (!lval) \
133 "Failed to allocate " #lval " at %s:%d", __FILE__, \
137 #define CHECK_MEM_ERROR(lval, expr) \
139 lval = (expr); \
140 if (!lval) \
142 "Failed to allocate " #lval); \
/external/v8/src/third_party/valgrind/
H A Dvalgrind.h747 #define CALL_FN_W_v(lval, orig) \
760 lval = (__typeof__(lval)) _res; \
763 #define CALL_FN_W_W(lval, orig, arg1) \
780 lval = (__typeof__(lval)) _res; \
783 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \
802 lval = (__typeof__(lval)) _res; \
805 #define CALL_FN_W_WWW(lval, ori
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
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_ra.cpp629 inline void setValue(LValue *lval) { data = lval; } argument
739 GCRA::RIG_Node::init(const RegisterSet& regs, LValue *lval) argument
741 setValue(lval);
742 if (lval->reg.data.id >= 0)
743 lval->noSpill = lval->fixedReg = 1;
745 colors = regs.units(lval->reg.file, lval->reg.size);
746 f = lval
1274 LValue *lval = node->getValue(); local
1293 LValue *lval = nodes[i].getValue(); local
1314 LValue *lval = reinterpret_cast<LValue *>(func->allLValues.get(i)); local
1357 LValue *lval = reinterpret_cast<LValue *>(it.get()); local
1436 spill(Instruction *defi, Value *slot, LValue *lval) argument
1455 unspill(Instruction *usei, LValue *lval, Value *slot) argument
1480 LValue *lval = it->first->asLValue(); local
1951 LValue *lval = new_LValue(func, cst->def(d).getFile()); local
1982 LValue *lval = new_LValue(func, cst->src(s).getFile()); local
[all...]
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;
/external/libnl/src/lib/
H A Droute.c113 unsigned long lval; local
127 lval = strtoul(arg, &endptr, 0);
131 if ((ret = rtnl_route_set_metric(route, ret, lval)) < 0)
152 unsigned long lval; local
184 lval = strtoul(arg, &endptr, 0);
189 rtnl_route_nh_set_weight(nh, lval);
199 unsigned long lval; local
203 lval = strtoul(arg, &endptr, 0);
209 table = lval;
217 unsigned long lval; local
238 unsigned long lval; local
[all...]
H A Dutils.c37 unsigned long lval; local
40 lval = strtoul(arg, &endptr, 0);
41 if (endptr == arg || lval == ULONG_MAX)
45 return (uint32_t) lval;
/external/e2fsprogs/intl/
H A Dplural.y57 static int yylex (YYSTYPE *lval, const char **pexp);
235 yylex (YYSTYPE *lval, const char **pexp)
267 lval->num = n;
276 lval->op = equal;
287 lval->op = not_equal;
304 lval->op = less_or_equal;
307 lval->op = less_than;
315 lval->op = greater_or_equal;
318 lval->op = greater_than;
323 lval
[all...]
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...]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
H A Dp3-generic-lambda-1y.cpp41 int lval = 0; local
43 l3(3, lval, d, lval, &lval, &A::i, &A::f, 'c', &d, arr);
/external/curl/src/
H A Dtool_setopt.c245 const NameValue *nvlist, long lval)
250 ret = curl_easy_setopt(curl, tag, lval);
251 if(!lval)
258 if(nv->value == lval) break; /* found it */
264 CODE2("curl_easy_setopt(hnd, %s, %ldL);", name, lval);
278 const NameValue *nvlist, long lval)
283 ret = curl_easy_setopt(curl, tag, lval);
284 if(!lval)
290 long rest = lval; /* bits not handled yet */
321 long lval)
243 tool_setopt_enum(CURL *curl, struct GlobalConfig *config, const char *name, CURLoption tag, const NameValue *nvlist, long lval) argument
276 tool_setopt_flags(CURL *curl, struct GlobalConfig *config, const char *name, CURLoption tag, const NameValue *nvlist, long lval) argument
318 tool_setopt_bitmask(CURL *curl, struct GlobalConfig *config, const char *name, CURLoption tag, const NameValueUnsigned *nvlist, long lval) argument
493 long lval = va_arg(arg, long); local
[all...]
H A Dtool_setopt.h78 const NameValue *nv, long lval);
81 const NameValue *nv, long lval);
84 const NameValueUnsigned *nv, long lval);
/external/libjpeg-turbo/
H A Djpegtran.c243 long lval; local
248 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
251 lval *= 1000L;
252 cinfo->mem->max_memory_to_use = lval * 1000L;
288 long lval; local
293 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
295 if (lval < 0 || lval > 65535L)
298 cinfo->restart_interval = (unsigned int) lval;
301 cinfo->restart_in_rows = (int) lval;
[all...]
H A Dcjpeg.c312 long lval; local
317 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
320 lval *= 1000L;
321 cinfo->mem->max_memory_to_use = lval * 1000L;
385 long lval; local
390 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
392 if (lval < 0 || lval > 65535L)
395 cinfo->restart_interval = (unsigned int) lval;
398 cinfo->restart_in_rows = (int) lval;
[all...]
/external/curl/lib/
H A Dparsedate.c401 long lval; local
407 lval = strtol(date, &end, 10);
416 if((lval > (long)INT_MAX) || (lval < (long)INT_MIN))
420 val = curlx_sltosi(lval);
/external/libvpx/libvpx/vp8/encoder/
H A Donyx_int.h707 #define CHECK_MEM_ERROR(lval, expr) \
709 lval = (expr); \
710 if (!lval) \
712 "Failed to allocate " #lval " at %s:%d", __FILE__, \
716 #define CHECK_MEM_ERROR(lval, expr) \
718 lval = (expr); \
719 if (!lval) \
721 "Failed to allocate " #lval); \
/external/kernel-headers/original/uapi/linux/
H A Dscif_ioctl.h172 * @lval: value to write to loffset
179 __u64 lval; member in struct:scifioctl_fence_signal
/external/opencv/cv/src/
H A Dcvstereobm.cpp229 int lval = lptr[0]; local
232 int diff = abs(lval - rptr[d]);
236 htext[y] += tab[lval];
263 int lval = lptr[0]; local
264 __m128i lv = _mm_set1_epi8((char)lval), z = _mm_setzero_si128();
280 htext[y] += tab[lval] - tab[lptr_sub[0]];
435 int lval = lptr[0]; local
438 int diff = abs(lval - rptr[d]);
442 htext[y] += tab[lval];
469 int lval local
[all...]

Completed in 1251 milliseconds

123