Home
last modified time | relevance | path

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

12

/third_party/node/deps/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...]
/third_party/libinput/include/valgrind/
H A Dvalgrind.h1249 #define CALL_FN_W_v(lval, orig) \
1264 lval = (__typeof__(lval)) _res; \
1267 #define CALL_FN_W_W(lval, orig, arg1) \
1285 lval = (__typeof__(lval)) _res; \
1288 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \
1308 lval = (__typeof__(lval)) _res; \
1311 #define CALL_FN_W_WWW(lval, ori
[all...]
/third_party/mesa3d/src/nouveau/codegen/
H A 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()
354 // gather blocks with assignments to lval in workList in convertToSSA()
355 for (Value::DefIterator d = lval->defs.begin(); in convertToSSA()
356 d != lval->defs.end(); ++d) { in convertToSSA()
367 // for each block in workList, insert a phi for lval in the block's in convertToSSA()
382 if (!dfBB->liveSet.test(lval->id)) in convertToSSA()
385 phi = new_Instruction(this, OP_PHI, typeOfSize(lval in convertToSSA()
427 LValue *lval = val->asLValue(); mkUndefined() local
454 LValue *lval, *ssa; search() local
[all...]
H A Dnv50_ir_ra.cpp766 inline void setValue(LValue *lval) { data = lval; } in setValue() argument
906 isShortRegVal(LValue *lval) in isShortRegVal() argument
908 if (lval->getInsn() == NULL) in isShortRegVal()
910 for (Value::DefCIterator def = lval->defs.begin(); in isShortRegVal()
911 def != lval->defs.end(); ++def) in isShortRegVal()
914 for (Value::UseCIterator use = lval->uses.begin(); in isShortRegVal()
915 use != lval->uses.end(); ++use) in isShortRegVal()
922 GCRA::RIG_Node::init(const RegisterSet& regs, LValue *lval) in init() argument
924 setValue(lval); in init()
1500 LValue *lval = node->getValue(); selectRegisters() local
1519 LValue *lval = nodes[i].getValue(); selectRegisters() local
1540 LValue *lval = reinterpret_cast<LValue *>(func->allLValues.get(i)); allocateRegisters() local
1618 LValue *lval = reinterpret_cast<LValue *>(it.get()); cleanup() local
1703 offsetSlot(Value *base, const LValue *lval) offsetSlot() argument
1716 spill(Instruction *defi, Value *slot, LValue *lval) spill() argument
1757 unspill(Instruction *usei, LValue *lval, Value *slot) unspill() argument
1822 LValue *lval = it->first->asLValue(); run() local
2636 LValue *lval = new_LValue(func, cst->src(s).getFile()); insertConstraintMove() local
2675 LValue *lval = new_LValue(func, cst->def(d).getFile()); insertConstraintMoves() local
[all...]
H A 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()
H A Dnv50_ir_print.cpp886 const Value *lval = Value::get(it)->asLValue(); in printLiveIntervals() local
887 if (lval && !lval->livei.isEmpty()) { in printLiveIntervals()
888 INFO("livei(%%%i): ", lval->id); in printLiveIntervals()
889 lval->livei.print(); in printLiveIntervals()
H A Dnv50_ir_inlines.h197 void ValueDef::setSSA(LValue *lval) in setSSA() argument
200 set(lval); in setSSA()
H A Dnv50_ir.cpp235 LValue::LValue(Function *fn, LValue *lval) in LValue() argument
237 assert(lval); in LValue()
239 reg.file = lval->reg.file; in LValue()
240 reg.size = lval->reg.size; in LValue()
/third_party/alsa-lib/src/topology/
H A Dparser.c29 long lval; in tplg_get_integer() local
34 err = snd_config_get_integer(n, &lval); in tplg_get_integer()
42 err = safe_strtol_base(str, &lval, base); in tplg_get_integer()
50 if (lval < INT_MIN || lval > INT_MAX) in tplg_get_integer()
52 *val = lval; in tplg_get_integer()
62 long lval; in tplg_get_unsigned() local
69 err = snd_config_get_integer(n, &lval); in tplg_get_unsigned()
72 if (lval < 0 && lval > in tplg_get_unsigned()
[all...]
H A Dsave.c116 long lval; in tplg_pprint_integer() local
122 err = snd_config_get_integer(n, &lval); in tplg_pprint_integer()
125 if (lval < INT_MIN || lval > UINT_MAX) in tplg_pprint_integer()
134 lval = llval; in tplg_pprint_integer()
136 lval = 0; in tplg_pprint_integer()
138 err = tplg_nice_value_format(buf, sizeof(buf), (unsigned int)lval); in tplg_pprint_integer()
/third_party/curl/src/
H A Dtool_setopt.c264 const struct NameValue *nvlist, long lval) in tool_setopt_enum()
269 ret = curl_easy_setopt(curl, tag, lval); in tool_setopt_enum()
270 if(!lval) in tool_setopt_enum()
277 if(nv->value == lval) in tool_setopt_enum()
284 CODE2("curl_easy_setopt(hnd, %s, %ldL);", name, lval); in tool_setopt_enum()
303 long lval) in tool_setopt_bitmask()
308 ret = curl_easy_setopt(curl, tag, lval); in tool_setopt_bitmask()
309 if(!lval) in tool_setopt_bitmask()
315 unsigned long rest = (unsigned long)lval; in tool_setopt_bitmask()
571 long lval in tool_setopt() local
262 tool_setopt_enum(CURL *curl, struct GlobalConfig *config, const char *name, CURLoption tag, const struct NameValue *nvlist, long lval) tool_setopt_enum() argument
300 tool_setopt_bitmask(CURL *curl, struct GlobalConfig *config, const char *name, CURLoption tag, const struct NameValueUnsigned *nvlist, long lval) tool_setopt_bitmask() argument
[all...]
H A Dtool_setopt.h83 const struct NameValue *nv, long lval);
86 const struct NameValue *nv, long lval);
89 const struct NameValueUnsigned *nv, long lval);
/third_party/skia/third_party/externals/libjpeg-turbo/
H A 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()
[all...]
H A 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()
[all...]
H A Ddjpeg.c353 long lval; in parse_switches() local
358 if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1) in parse_switches()
361 lval *= 1000L; in parse_switches()
362 cinfo->mem->max_memory_to_use = lval * 1000L; in parse_switches()
/third_party/curl/lib/
H A Dparsedate.c420 long lval; in parsedate() local
426 lval = strtol(date, &end, 10); in parsedate()
435 if((lval > (long)INT_MAX) || (lval < (long)INT_MIN)) in parsedate()
439 val = curlx_sltosi(lval); in parsedate()
/third_party/benchmark/test/
H A Ddonotoptimize_test.cc62 BitRef lval = BitRef::Make(); in main() local
63 benchmark::DoNotOptimize(lval); in main()
/third_party/mesa3d/src/gallium/drivers/panfrost/
H A Dpan_context.h52 #define SET_BIT(lval, bit, cond) \
54 lval |= (bit); \
56 lval &= ~(bit);
/third_party/FreeBSD/lib/msun/src/
H A Dmath_private.h326 #define STRICT_ASSIGN(type, lval, rval) ((lval) = (rval))
328 #define STRICT_ASSIGN(type, lval, rval) do { \
332 (lval) = (rval); \
335 (lval) = __lval; \
/third_party/gn/src/gn/
H A Doperators_unittest.cc236 Value lval(nullptr, Value::LIST); in TEST()
237 lval.list_value().push_back(scopeval_a); in TEST()
238 lval.list_value().push_back(scopeval_b); in TEST()
248 node.SetLeftToValue(lval); in TEST()
/third_party/alsa-utils/alsactl/
H A Dstate.c683 long long lval; in config_bool() local
693 if (snd_config_get_integer64(n, &lval) < 0) in config_bool()
695 if (lval < 0 || lval > 1) in config_bool()
697 return (int) lval; in config_bool()
722 long long lval; in config_enumerated() local
731 if (snd_config_get_integer64(n, &lval) < 0) in config_enumerated()
733 return (int) lval; in config_enumerated()
1135 long long lval; in restore_config_value() local
1154 err = config_integer64(value, &lval, doi in restore_config_value()
[all...]
/third_party/protobuf/php/ext/google/protobuf/
H A Dconvert.c281 zend_long lval; in to_double() local
282 switch (is_numeric_string(Z_STRVAL_P(php_val), Z_STRLEN_P(php_val), &lval, in to_double()
285 *dbl = lval; in to_double()
/third_party/glslang/glslang/MachineIndependent/preprocessor/
H A DPpTokens.cpp205 *ppToken = lval; in scan()
/third_party/typescript/tests/baselines/reference/
H A DparserRealSource11.js1688 constructor (public lval: AST, public obj: AST) {
1690 if (this.lval && (this.lval.nodeType == NodeType.VarDecl)) {
1691 (<BoundDecl>this.lval).varFlags |= VarFlags.AutoInit;
1734 (this.lval.nodeType == NodeType.Name)) {
1735 if (((<Identifier>this.lval).actualText) == (<Identifier>arg).actualText) {
1756 emitter.emitJavascript(this.lval, TokenID.For, false);
1777 if (this.lval) {
1778 context.addContent(this.lval);
4007 function ForInStatement(lval, ob
[all...]
/third_party/icu/icu4c/source/test/cintltst/
H A Dcnmdptst.c208 static const int32_t lval[] = { 0, -1, 1, 123456789 }; in TestExponential() local
251 lval_length = UPRV_LENGTHOF(lval); in TestExponential()
304 lneed=unum_formatDouble(fmt, lval[v], NULL, lneed, NULL, &status); in TestExponential()
308 unum_formatDouble(fmt, lval[v], str, lneed+1, NULL, &status); in TestExponential()
313 /*printf(" Format %e -> %s\n", lval[v], austrdup(str) );*/ in TestExponential()

Completed in 29 milliseconds

12