Home
last modified time | relevance | path

Searched refs:lval (Results 1 – 25 of 73) sorted by relevance

123

/third_party/glib/glib/
Dvalgrind.h1169 #define CALL_FN_W_v(lval, orig) \ argument
1184 lval = (__typeof__(lval)) _res; \
1187 #define CALL_FN_W_W(lval, orig, arg1) \ argument
1205 lval = (__typeof__(lval)) _res; \
1208 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \ argument
1228 lval = (__typeof__(lval)) _res; \
1231 #define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \ argument
1253 lval = (__typeof__(lval)) _res; \
1256 #define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \ argument
1279 lval = (__typeof__(lval)) _res; \
[all …]
/third_party/libinput/include/valgrind/
Dvalgrind.h1168 #define CALL_FN_W_v(lval, orig) \ argument
1183 lval = (__typeof__(lval)) _res; \
1186 #define CALL_FN_W_W(lval, orig, arg1) \ argument
1204 lval = (__typeof__(lval)) _res; \
1207 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \ argument
1227 lval = (__typeof__(lval)) _res; \
1230 #define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \ argument
1252 lval = (__typeof__(lval)) _res; \
1255 #define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \ argument
1278 lval = (__typeof__(lval)) _res; \
[all …]
/third_party/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_ssa.cpp333 LValue *lval; in convertToSSA() local
346 lval = reinterpret_cast<Value *>(allLValues.get(var))->asLValue(); in convertToSSA()
347 if (!lval || lval->defs.empty()) in convertToSSA()
355 for (Value::DefIterator d = lval->defs.begin(); in convertToSSA()
356 d != lval->defs.end(); ++d) { in convertToSSA()
382 if (!dfBB->liveSet.test(lval->id)) in convertToSSA()
385 phi = new_Instruction(this, OP_PHI, typeOfSize(lval->reg.size)); in convertToSSA()
388 phi->setDef(0, lval); in convertToSSA()
390 phi->setSrc(s, lval); in convertToSSA()
427 LValue *lval = val->asLValue(); in mkUndefined() local
[all …]
Dnv50_ir_ra.cpp778 inline void setValue(LValue *lval) { data = lval; } in setValue() argument
917 isShortRegVal(LValue *lval) in isShortRegVal() argument
919 if (lval->getInsn() == NULL) in isShortRegVal()
921 for (Value::DefCIterator def = lval->defs.begin(); in isShortRegVal()
922 def != lval->defs.end(); ++def) in isShortRegVal()
925 for (Value::UseCIterator use = lval->uses.begin(); in isShortRegVal()
926 use != lval->uses.end(); ++use) in isShortRegVal()
933 GCRA::RIG_Node::init(const RegisterSet& regs, LValue *lval) in init() argument
935 setValue(lval); in init()
936 if (lval->reg.data.id >= 0) in init()
[all …]
Dnv50_ir_build_util.h236 LValue *lval = new_LValue(func, f); in getScratch() local
237 lval->reg.size = size; in getScratch()
238 return lval; in getScratch()
244 LValue *lval = new_LValue(func, f); in getSSA() local
245 lval->ssa = 1; in getSSA()
246 lval->reg.size = size; in getSSA()
247 return lval; in getSSA()
/third_party/cef/tools/yapf/yapf/yapflib/
Dunwrapped_line.py190 lval = left.value
211 if lval == ',' and rval == ':':
217 if lval == ',' and rval in ']})':
220 if lval == ',':
223 if lval == 'from' and rval == '.':
226 if lval == '.' and rval == 'import':
229 if lval == '=' and rval == '.':
246 if left.is_binary_op and lval != '**' and _IsUnaryOperator(right):
253 if lval == '**' or rval == '**':
258 if (_IsUnaryOperator(left) and lval != 'not' and
[all …]
/third_party/libnl/src/lib/
Droute.c114 unsigned long lval; in nl_cli_route_parse_metric() local
128 lval = strtoul(arg, &endptr, 0); in nl_cli_route_parse_metric()
132 if ((ret = rtnl_route_set_metric(route, ret, lval)) < 0) in nl_cli_route_parse_metric()
155 unsigned long lval; in nl_cli_route_parse_nexthop() local
199 lval = strtoul(arg, &endptr, 0); in nl_cli_route_parse_nexthop()
204 rtnl_route_nh_set_weight(nh, lval); in nl_cli_route_parse_nexthop()
214 unsigned long lval; in nl_cli_route_parse_table() local
218 lval = strtoul(arg, &endptr, 0); in nl_cli_route_parse_table()
224 table = lval; in nl_cli_route_parse_table()
232 unsigned long lval; in nl_cli_route_parse_prio() local
[all …]
Dutils.c47 unsigned long lval; in nl_cli_parse_u32() local
50 lval = strtoul(arg, &endptr, 0); in nl_cli_parse_u32()
51 if (endptr == arg || lval == ULONG_MAX) in nl_cli_parse_u32()
55 return (uint32_t) lval; in nl_cli_parse_u32()
/third_party/gettext/gettext-runtime/intl/
Dplural.y49 static int yylex (YYSTYPE *lval, struct parse_args *arg);
229 yylex (YYSTYPE *lval, struct parse_args *arg)
261 lval->num = n;
270 lval->op = equal;
281 lval->op = not_equal;
298 lval->op = less_or_equal;
301 lval->op = less_than;
309 lval->op = greater_or_equal;
312 lval->op = greater_than;
317 lval->op = mult;
[all …]
Dplural.c178 static int yylex (YYSTYPE *lval, struct parse_args *arg);
1701 yylex (YYSTYPE *lval, struct parse_args *arg) in yylex() argument
1733 lval->num = n; in yylex()
1742 lval->op = equal; in yylex()
1753 lval->op = not_equal; in yylex()
1770 lval->op = less_or_equal; in yylex()
1773 lval->op = less_than; in yylex()
1781 lval->op = greater_or_equal; in yylex()
1784 lval->op = greater_than; in yylex()
1789 lval->op = mult; in yylex()
[all …]
/third_party/gettext/gettext-tools/src/
Dcldr-plural.y35 static int yylex (YYSTYPE *lval, struct cldr_plural_parse_args *arg);
132 struct cldr_plural_relation_ty *lval;
142 %destructor { cldr_plural_relation_free ($$); } <lval>
154 %type<lval> relation
286 yylex (YYSTYPE *lval, struct cldr_plural_parse_args *arg)
357 lval->oval = XMALLOC (struct cldr_plural_operand_ty);
370 lval->oval->type = CLDR_PLURAL_OPERAND_DECIMAL;
371 lval->oval->value.dval.d = dval;
372 lval->oval->value.dval.nfractions = nfractions;
377 lval->oval->type = CLDR_PLURAL_OPERAND_INTEGER;
[all …]
/third_party/alsa-lib/src/topology/
Dparser.c49 long lval; in tplg_get_integer() local
54 err = snd_config_get_integer(n, &lval); in tplg_get_integer()
62 err = safe_strtol_base(str, &lval, base); in tplg_get_integer()
70 if (lval < INT_MIN || lval > INT_MAX) in tplg_get_integer()
72 *val = lval; in tplg_get_integer()
82 long lval; in tplg_get_unsigned() local
89 err = snd_config_get_integer(n, &lval); in tplg_get_unsigned()
92 if (lval < 0 && lval >= INT_MIN) in tplg_get_unsigned()
93 lval = UINT_MAX + lval + 1; in tplg_get_unsigned()
94 if (lval < 0 || lval > UINT_MAX) in tplg_get_unsigned()
[all …]
/third_party/boost/libs/yap/example/autodiff_library/
DUaryOPNode.cpp98 double lval = SV->pop_back(); in calc_grad_reverse_0() local
103 val = sin(lval); in calc_grad_reverse_0()
104 hu = cos(lval); in calc_grad_reverse_0()
107 val = cos(lval); in calc_grad_reverse_0()
108 hu = -sin(lval); in calc_grad_reverse_0()
120 double lval = SV->pop_back(); in calc_eval_function() local
126 val = sin(lval); in calc_eval_function()
130 val = cos(lval); in calc_eval_function()
329 double lval = NaN_Double; in hess_forward_calc0() local
336 lval = SV->pop_back(); in hess_forward_calc0()
[all …]
DBinaryOPNode.cpp481 double lval = NaN_Double, rval = NaN_Double; in hess_forward_calc0() local
488 lval = SV->pop_back(); in hess_forward_calc0()
489 val = lval + rval; in hess_forward_calc0()
509 lval = SV->pop_back(); in hess_forward_calc0()
510 val = lval + rval; in hess_forward_calc0()
530 lval = SV->pop_back(); in hess_forward_calc0()
531 val = lval * rval; in hess_forward_calc0()
534 hv = lval; in hess_forward_calc0()
554 lval = SV->pop_back(); in hess_forward_calc0()
555 val = pow(lval,rval); in hess_forward_calc0()
[all …]
/third_party/boost/boost/heap/detail/
Dheap_comparison.hpp30 typename Heap1::value_type lval, typename Heap2::value_type rval) in value_equality() argument
33 bool ret = !(cmp(lval, rval)) && !(cmp(rval, lval)); in value_equality()
36 BOOST_ASSERT((ret == (!(rhs.value_comp()(lval, rval)) && !(rhs.value_comp()(rval, lval))))); in value_equality()
43 typename Heap1::value_type lval, typename Heap2::value_type rval) in value_compare() argument
46 bool ret = cmp(lval, rval); in value_compare()
49 BOOST_ASSERT((ret == rhs.value_comp()(lval, rval))); in value_compare()
/third_party/curl/src/
Dtool_setopt.c293 const struct NameValue *nvlist, long lval) in tool_setopt_enum() argument
298 ret = curl_easy_setopt(curl, tag, lval); in tool_setopt_enum()
299 if(!lval) in tool_setopt_enum()
306 if(nv->value == lval) in tool_setopt_enum()
313 CODE2("curl_easy_setopt(hnd, %s, %ldL);", name, lval); in tool_setopt_enum()
331 const struct NameValue *nvlist, long lval) in tool_setopt_flags() argument
336 ret = curl_easy_setopt(curl, tag, lval); in tool_setopt_flags()
337 if(!lval) in tool_setopt_flags()
343 long rest = lval; /* bits not handled yet */ in tool_setopt_flags()
374 long lval) in tool_setopt_bitmask() argument
[all …]
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/
Djpegtran.c253 long lval; in parse_switches() local
258 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1) in parse_switches()
261 lval *= 1000L; in parse_switches()
262 cinfo->mem->max_memory_to_use = lval * 1000L; in parse_switches()
298 long lval; in parse_switches() local
303 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1) in parse_switches()
305 if (lval < 0 || lval > 65535L) in parse_switches()
308 cinfo->restart_interval = (unsigned int)lval; in parse_switches()
311 cinfo->restart_in_rows = (int)lval; in parse_switches()
Dcjpeg.c327 long lval; in parse_switches() local
332 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1) in parse_switches()
335 lval *= 1000L; in parse_switches()
336 cinfo->mem->max_memory_to_use = lval * 1000L; in parse_switches()
400 long lval; in parse_switches() local
405 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1) in parse_switches()
407 if (lval < 0 || lval > 65535L) in parse_switches()
410 cinfo->restart_interval = (unsigned int)lval; in parse_switches()
413 cinfo->restart_in_rows = (int)lval; in parse_switches()
/third_party/libjpeg-turbo/
Djpegtran.c253 long lval; in parse_switches() local
258 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1) in parse_switches()
261 lval *= 1000L; in parse_switches()
262 cinfo->mem->max_memory_to_use = lval * 1000L; in parse_switches()
298 long lval; in parse_switches() local
303 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1) in parse_switches()
305 if (lval < 0 || lval > 65535L) in parse_switches()
308 cinfo->restart_interval = (unsigned int)lval; in parse_switches()
311 cinfo->restart_in_rows = (int)lval; in parse_switches()
Dcjpeg.c327 long lval; in parse_switches() local
332 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1) in parse_switches()
335 lval *= 1000L; in parse_switches()
336 cinfo->mem->max_memory_to_use = lval * 1000L; in parse_switches()
400 long lval; in parse_switches() local
405 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1) in parse_switches()
407 if (lval < 0 || lval > 65535L) in parse_switches()
410 cinfo->restart_interval = (unsigned int)lval; in parse_switches()
413 cinfo->restart_in_rows = (int)lval; in parse_switches()
/third_party/skia/third_party/externals/libjpeg-turbo/
Dcjpeg.c368 long lval; in parse_switches() local
373 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1) in parse_switches()
376 lval *= 1000L; in parse_switches()
377 cinfo->mem->max_memory_to_use = lval * 1000L; in parse_switches()
444 long lval; in parse_switches() local
449 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1) in parse_switches()
451 if (lval < 0 || lval > 65535L) in parse_switches()
454 cinfo->restart_interval = (unsigned int)lval; in parse_switches()
457 cinfo->restart_in_rows = (int)lval; in parse_switches()
Djpegtran.c287 long lval; in parse_switches() local
292 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1) in parse_switches()
295 lval *= 1000L; in parse_switches()
296 cinfo->mem->max_memory_to_use = lval * 1000L; in parse_switches()
341 long lval; in parse_switches() local
346 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1) in parse_switches()
348 if (lval < 0 || lval > 65535L) in parse_switches()
351 cinfo->restart_interval = (unsigned int)lval; in parse_switches()
354 cinfo->restart_in_rows = (int)lval; in parse_switches()
/third_party/curl/lib/
Dparsedate.c377 long lval; in parsedate() local
383 lval = strtol(date, &end, 10); in parsedate()
392 if((lval > (long)INT_MAX) || (lval < (long)INT_MIN)) in parsedate()
396 val = curlx_sltosi(lval); in parsedate()
/third_party/boost/libs/test/test/utils-ts/
Dstring_cast-test.cpp75 long lval; in BOOST_AUTO_TEST_CASE() local
77 BOOST_TEST( utu::string_as<long>( "909090", lval ) ); in BOOST_AUTO_TEST_CASE()
78 BOOST_TEST( lval == 909090 ); in BOOST_AUTO_TEST_CASE()
/third_party/benchmark/test/
Ddonotoptimize_test.cc51 BitRef lval = BitRef::Make(); in main() local
52 benchmark::DoNotOptimize(lval); in main()

123