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

12

/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/libnl/src/lib/
H A Dutils.c22 unsigned long lval; local
25 lval = strtoul(arg, &endptr, 0);
26 if (endptr == arg || lval == ULONG_MAX)
30 return (uint32_t) lval;
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
202 lval = strtoul(arg, &endptr, 0);
204 if ((lval = rtnl_route_str2table(arg)) < 0)
208 rtnl_route_set_table(route, lval);
213 unsigned long lval; local
234 unsigned long lval; local
[all...]
/external/libjpeg-turbo/
H A Dcjpeg.c310 long lval; local
315 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
318 lval *= 1000L;
319 cinfo->mem->max_memory_to_use = lval * 1000L;
383 long lval; local
388 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
390 if (lval < 0 || lval > 65535L)
393 cinfo->restart_interval = (unsigned int) lval;
396 cinfo->restart_in_rows = (int) lval;
[all...]
H A Djpegtran.c242 long lval; local
247 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
250 lval *= 1000L;
251 cinfo->mem->max_memory_to_use = lval * 1000L;
287 long lval; local
292 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
294 if (lval < 0 || lval > 65535L)
297 cinfo->restart_interval = (unsigned int) lval;
300 cinfo->restart_in_rows = (int) lval;
[all...]
H A Ddjpeg.c326 long lval; local
331 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
334 lval *= 1000L;
335 cinfo->mem->max_memory_to_use = lval * 1000L;
/external/skia/src/animator/
H A DSkAnimateBase.h57 SkString lval; member in class:SkAnimateBase
/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/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;
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...]
/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/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...]
/external/icu/icu4c/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/dnsmasq/src/
H A Drfc1035.c1031 long lval; local
1070 lval = va_arg(ap, long);
1071 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...]
/external/opencv/cv/src/
H A Dcvcontours.cpp911 int lval = img0[lnbd.y * step + lnbd.x] & 0x7f; local
912 _CvContourInfo *cur = scanner->cinfo_table[lval - 2];
914 assert( lval >= 2 );
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...]
/external/opencv3/modules/imgproc/src/
H A Dcontours.cpp1081 int lval = (img0_i ? local
1084 _CvContourInfo *cur = scanner->cinfo_table[lval];
1153 int lval; local
1157 lval = img_i[x - is_hole] & 127;
1166 lval = nbd;
1174 lval, &(l_cinfo->rect) );
1179 l_cinfo->next = scanner->cinfo_table[lval];
1180 scanner->cinfo_table[lval] = l_cinfo;
/external/opencv/ml/src/
H A Dmlboost.cpp680 double lval = lc[i], rval = rc[i]; local
681 if( lval > rval )
684 best_val += lval;
/external/opencv3/apps/traincascade/
H A Dold_ml_boost.cpp776 double lval = lc[i], rval = rc[i]; local
777 if( lval > rval )
780 best_val += lval;
/external/selinux/libsepol/cil/src/
H A Dcil_post.c773 long lval = strtol(permx_str, &endptr, 0); local
779 if (lval < 0x0000 || lval > 0xFFFF) {
784 *val = (uint16_t)lval;

Completed in 546 milliseconds

12