/third_party/python/Tools/i18n/ |
H A D | pygettext.py | 245 return eval(s, {'__builtins__':{}}, {}) 355 maybe_fstring = ast.parse(tstring, mode='eval').body
|
/third_party/python/Lib/idlelib/ |
H A D | run.py | 100 tcl.eval("update")
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_squeezer.py | 134 text = eval(text_code)
|
/third_party/python/Lib/lib2to3/pgen2/ |
H A D | pgen.py | 88 value = eval(label)
|
/third_party/python/Lib/test/ |
H A D | test_binop.py | 298 self.assertEqual(eval('1/2'), 0.5)
|
H A D | test_ordered_dict.py | 287 # and have a repr/eval round-trip 321 check(eval(repr(od))) 366 self.assertEqual(eval(repr(od)), od)
|
H A D | test_ntpath.py | 56 gotResult = eval(fn) 72 gotResult = eval(fn)
|
H A D | test_complex.py | 536 self.assertEqual(complex(lit), eval(lit)) 652 # if we predefine some constants, then eval(repr(z)) should 659 roundtrip = eval(repr(z))
|
H A D | test_float.py | 76 self.assertEqual(float(lit), eval(lit)) 772 v = eval(line) 773 self.assertEqual(v, eval(repr(v)))
|
/kernel/linux/linux-5.10/net/tls/ |
H A D | tls_sw.c | 820 if (psock->eval == __SK_NONE) { in bpf_exec_tx_verdict() 822 psock->eval = sk_psock_msg_verdict(sk, psock, msg); in bpf_exec_tx_verdict() 835 switch (psock->eval) { in bpf_exec_tx_verdict() 887 psock->eval = __SK_NONE; in bpf_exec_tx_verdict()
|
/kernel/linux/linux-6.6/net/tls/ |
H A D | tls_sw.c | 871 if (psock->eval == __SK_NONE) { in bpf_exec_tx_verdict() 873 psock->eval = sk_psock_msg_verdict(sk, psock, msg); in bpf_exec_tx_verdict() 886 switch (psock->eval) { in bpf_exec_tx_verdict() 940 psock->eval = __SK_NONE; in bpf_exec_tx_verdict()
|
/third_party/mksh/ |
H A D | funcs.c | 109 {"*=eval", c_eval}, 2055 * eval "$(false)" in c_eval() 2077 * 2.14.5: eval in c_eval() 2079 * eval shall return a zero exit status; ... in c_eval() 2633 te.eval = test_eval; in c_test() 3166 return ((*te->eval)(te, op, opnd1, NULL, do_eval)); in test_primary() 3182 return ((*te->eval)(te, op, opnd1, opnd2, do_eval)); in test_primary() 3184 return ((*te->eval)(te, TO_STNZE, opnd1, NULL, do_eval)); in test_primary()
|
H A D | exec.c | 124 up = eval(t->args, t->u.evalflags | DOBLANK | DOGLOB | DOTILDE); in execute() 310 te.eval = test_eval; in execute() 322 (const char **)eval((const char **)t->vars, in execute() 429 /* an eval'd TCOM */ in execute()
|
/third_party/skia/src/gpu/geometry/ |
H A D | GrTriangulator.cpp | 466 SkPoint p0 = to_point(quad.eval(t - 0.5f * u)); in quad_error_at() 467 SkPoint mid = to_point(quad.eval(t)); in quad_error_at() 468 SkPoint p1 = to_point(quad.eval(t + 0.5f * u)); in quad_error_at() 494 this->appendPointToContour(to_point(quad.eval(j * u)), contour); in appendQuadraticToContour()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/selftests/ |
H A D | i915_vma.c | 261 #define __INVALID(sz, fl, check, eval) { .size = (sz), .flags = (fl), .assert = (check), .string = #sz ", " #fl ", (invalid " #eval ")" } in igt_vma_pin1()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/pasemi/ |
H A D | pasemi_mac.c | 704 u64 macrx, eval; in pasemi_mac_clean_rx() local 731 eval = (RX_DESC(rx, n+1) & XCT_RXRES_8B_EVAL_M) >> in pasemi_mac_clean_rx() 733 buf_index = eval-1; in pasemi_mac_clean_rx()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/pasemi/ |
H A D | pasemi_mac.c | 703 u64 macrx, eval; in pasemi_mac_clean_rx() local 730 eval = (RX_DESC(rx, n+1) & XCT_RXRES_8B_EVAL_M) >> in pasemi_mac_clean_rx() 732 buf_index = eval-1; in pasemi_mac_clean_rx()
|
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | input.py | 173 """Return the eval of a gyp file. 176 Note that this is slower than eval() is. 237 build_file_data = eval(build_file_contents, {"__builtins__": {}}, None) 904 contents = eval(contents) 1191 ast_code = compile(cond_expr_expanded, "<string>", "eval") 1194 if eval(ast_code, env, variables):
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | input.py | 173 """Return the eval of a gyp file. 176 Note that this is slower than eval() is. 237 build_file_data = eval(build_file_contents, {"__builtins__": {}}, None) 901 contents = eval(contents) 1181 ast_code = compile(cond_expr_expanded, "<string>", "eval") 1184 if eval(ast_code, env, variables):
|
/third_party/skia/src/core/ |
H A D | SkRuntimeEffect.cpp | 700 SkPMColor4f SkFilterColorProgram::eval( in eval() function in SkFilterColorProgram 724 fProgram.eval(1, uniformData, childColors.begin(), result.vec()); in eval() 929 return program->eval(color, inputs->data(), evalChild);
|
/kernel/linux/linux-5.10/fs/proc/ |
H A D | base.c | 2292 unsigned long long sval, eval; in dname_to_vma_addr() local 2310 len = _parse_integer(str, 16, &eval); in dname_to_vma_addr() 2313 if (eval != (unsigned long)eval) in dname_to_vma_addr() 2321 *end = eval; in dname_to_vma_addr()
|
/kernel/linux/linux-6.6/fs/proc/ |
H A D | base.c | 2285 unsigned long long sval, eval; in dname_to_vma_addr() local 2303 len = _parse_integer(str, 16, &eval); in dname_to_vma_addr() 2306 if (eval != (unsigned long)eval) in dname_to_vma_addr() 2314 *end = eval; in dname_to_vma_addr()
|
/kernel/linux/linux-5.10/arch/x86/kernel/ |
H A D | traps.c | 62 #include <asm/insn-eval.h>
|
/kernel/linux/linux-6.6/tools/perf/pmu-events/ |
H A D | metric.py | 535 eval routine. First tokens are mapped to Event calls, then 546 # pylint: disable=eval-used 566 parsed = ast.parse(py, mode='eval') 571 return _Constify(eval(compile(parsed, orig, 'eval')))
|
/kernel/linux/linux-6.6/net/netfilter/ |
H A D | nft_flow_offload.c | 465 .eval = nft_flow_offload_eval,
|