Home
last modified time | relevance | path

Searched refs:eval (Results 476 - 500 of 569) sorted by relevance

1...<<11121314151617181920>>...23

/third_party/python/Tools/i18n/
H A Dpygettext.py245 return eval(s, {'__builtins__':{}}, {})
355 maybe_fstring = ast.parse(tstring, mode='eval').body
/third_party/python/Lib/idlelib/
H A Drun.py100 tcl.eval("update")
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_squeezer.py134 text = eval(text_code)
/third_party/python/Lib/lib2to3/pgen2/
H A Dpgen.py88 value = eval(label)
/third_party/python/Lib/test/
H A Dtest_binop.py298 self.assertEqual(eval('1/2'), 0.5)
H A Dtest_ordered_dict.py287 # and have a repr/eval round-trip
321 check(eval(repr(od)))
366 self.assertEqual(eval(repr(od)), od)
H A Dtest_ntpath.py56 gotResult = eval(fn)
72 gotResult = eval(fn)
H A Dtest_complex.py536 self.assertEqual(complex(lit), eval(lit))
652 # if we predefine some constants, then eval(repr(z)) should
659 roundtrip = eval(repr(z))
H A Dtest_float.py76 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 Dtls_sw.c820 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 Dtls_sw.c871 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 Dfuncs.c109 {"*=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 Dexec.c124 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 DGrTriangulator.cpp466 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 Di915_vma.c261 #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 Dpasemi_mac.c704 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 Dpasemi_mac.c703 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 Dinput.py173 """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 Dinput.py173 """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 DSkRuntimeEffect.cpp700 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 Dbase.c2292 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 Dbase.c2285 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 Dtraps.c62 #include <asm/insn-eval.h>
/kernel/linux/linux-6.6/tools/perf/pmu-events/
H A Dmetric.py535 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 Dnft_flow_offload.c465 .eval = nft_flow_offload_eval,

Completed in 53 milliseconds

1...<<11121314151617181920>>...23