/third_party/node/deps/v8/src/third_party/valgrind/ |
D | valgrind.h | 747 #define CALL_FN_W_v(lval, orig) \ argument 760 lval = (__typeof__(lval)) _res; \ 763 #define CALL_FN_W_W(lval, orig, arg1) \ argument 780 lval = (__typeof__(lval)) _res; \ 783 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \ argument 802 lval = (__typeof__(lval)) _res; \ 805 #define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \ argument 826 lval = (__typeof__(lval)) _res; \ 829 #define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \ argument 851 lval = (__typeof__(lval)) _res; \ [all …]
|
/third_party/libinput/include/valgrind/ |
D | valgrind.h | 1168 #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/nouveau/codegen/ |
D | nv50_ir_ssa.cpp | 333 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 …]
|
D | nv50_ir_ra.cpp | 766 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() 925 if (lval->reg.data.id >= 0) in init() [all …]
|
D | nv50_ir_build_util.h | 236 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()
|
D | nv50_ir_print.cpp | 886 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()
|
D | nv50_ir_inlines.h | 197 void ValueDef::setSSA(LValue *lval) in setSSA() argument 200 set(lval); in setSSA()
|
/third_party/alsa-lib/src/topology/ |
D | parser.c | 49 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 …]
|
D | save.c | 117 long lval; in tplg_pprint_integer() local 123 err = snd_config_get_integer(n, &lval); in tplg_pprint_integer() 126 if (lval < INT_MIN || lval > UINT_MAX) in tplg_pprint_integer() 135 lval = llval; in tplg_pprint_integer() 137 lval = 0; in tplg_pprint_integer() 139 err = tplg_nice_value_format(buf, sizeof(buf), (unsigned int)lval); in tplg_pprint_integer()
|
/third_party/curl/src/ |
D | tool_setopt.c | 264 const struct NameValue *nvlist, long lval) in tool_setopt_enum() argument 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() argument 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 = va_arg(arg, long); in tool_setopt() local [all …]
|
D | tool_setopt.h | 83 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/ |
D | cjpeg.c | 368 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()
|
D | jpegtran.c | 287 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()
|
D | djpeg.c | 353 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/ |
D | parsedate.c | 420 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/alsa-utils/alsaucm/ |
D | usecase.c | 219 long lval; in do_one() local 352 err = snd_use_case_geti(context->uc_mgr, argv[0], &lval); in do_one() 358 return lval; in do_one() 361 printf(" %s=%li\n", argv[0], lval); in do_one() 363 printf("%li\n", lval); in do_one()
|
/third_party/benchmark/test/ |
D | donotoptimize_test.cc | 62 BitRef lval = BitRef::Make(); in main() local 63 benchmark::DoNotOptimize(lval); in main()
|
/third_party/mesa3d/src/gallium/drivers/panfrost/ |
D | pan_context.h | 52 #define SET_BIT(lval, bit, cond) \ argument 54 lval |= (bit); \ 56 lval &= ~(bit);
|
/third_party/FreeBSD/lib/msun/src/ |
D | math_private.h | 326 #define STRICT_ASSIGN(type, lval, rval) ((lval) = (rval)) argument 328 #define STRICT_ASSIGN(type, lval, rval) do { \ argument 332 (lval) = (rval); \ 335 (lval) = __lval; \
|
/third_party/alsa-utils/alsactl/ |
D | state.c | 683 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, doit); in restore_config_value() 1156 snd_ctl_elem_value_set_integer64(ctl, idx, lval); in restore_config_value()
|
/third_party/gn/src/gn/ |
D | operators_unittest.cc | 238 Value lval(nullptr, Value::LIST); in TEST() local 239 lval.list_value().push_back(scopeval_a); in TEST() 240 lval.list_value().push_back(scopeval_b); in TEST() 250 node.SetLeftToValue(lval); in TEST()
|
/third_party/protobuf/php/ext/google/protobuf/ |
D | convert.c | 281 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/typescript/tests/baselines/reference/ |
D | parserRealSource11.js | 1688 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, obj) { argument 4009 _this.lval = lval; [all …]
|
/third_party/glslang/glslang/MachineIndependent/preprocessor/ |
D | PpTokens.cpp | 205 *ppToken = lval; in scan()
|
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/ |
D | parserRealSource11.ts | 1687 constructor (public lval: AST, public obj: AST) { property in ForInStatement 1689 if (this.lval && (this.lval.nodeType == NodeType.VarDecl)) { 1690 (<BoundDecl>this.lval).varFlags |= VarFlags.AutoInit; 1733 (this.lval.nodeType == NodeType.Name)) { 1734 … if (((<Identifier>this.lval).actualText) == (<Identifier>arg).actualText) { 1755 emitter.emitJavascript(this.lval, TokenID.For, false); 1776 if (this.lval) { 1777 context.addContent(this.lval);
|