/third_party/python/Lib/test/ |
H A D | test__opcode.py | 1 import dis namespace 13 self.assertEqual(stack_effect(dis.opmap['POP_TOP']), -1) 14 self.assertEqual(stack_effect(dis.opmap['BUILD_SLICE'], 0), -1) 15 self.assertEqual(stack_effect(dis.opmap['BUILD_SLICE'], 1), -1) 16 self.assertEqual(stack_effect(dis.opmap['BUILD_SLICE'], 3), -2) 18 self.assertRaises(ValueError, stack_effect, dis.opmap['BUILD_SLICE']) 19 self.assertRaises(ValueError, stack_effect, dis.opmap['POP_TOP'], 0) 21 for name, code in filter(lambda item: item[0] not in dis.deoptmap, dis.opmap.items()): 23 if code < dis [all...] |
H A D | test_dis.py | 1 # Minimal tests for dis module 4 import dis namespace 725 dis.dis(func, **kwargs) 727 dis.disassemble(func, lasti, **kwargs) 739 self.assertEqual(dis.opmap["NOP"], 9) 740 self.assertIn(dis.opmap["LOAD_CONST"], dis.hasconst) 741 self.assertIn(dis.opmap["STORE_NAME"], dis [all...] |
H A D | test_peepholer.py | 1 import dis namespace 25 for instr in dis.get_instructions(f): 39 instructions = list(dis.get_instructions(code)) 61 code = dis._get_code_object(code) 62 lnotab = list(dis.findlinestarts(code)) 166 load_consts = [instr for instr in dis.get_instructions(code) 255 for instr in dis.get_instructions(code): 314 for instr in dis.get_instructions(code): 322 for instr in dis.get_instructions(negzero): 342 returns = [instr for instr in dis [all...] |
H A D | test_code.py | 135 import dis namespace 343 import dis namespace 359 dis.get_instructions(code, show_caches=True), 687 dis.opmap["RESUME"], 0, 688 dis.opmap["LOAD_ASSERTION_ERROR"], 0, 689 dis.opmap["RAISE_VARARGS"], 1,
|
H A D | test_lltrace.py | 1 import dis namespace 78 # check that offsets match the output of dis.dis() 79 instr_map = {i.offset: i for i in dis.get_instructions(example)}
|
H A D | test_dtrace.py | 1 import dis namespace 142 return dis.get_instructions(c)
|
H A D | test_compile.py | 1 import dis namespace 698 list(dis.get_instructions(unused_code_at_end))[-1].opname) 777 opcodes = list(dis.get_instructions(func)) 796 opcodes = list(dis.get_instructions(func)) 820 opcodes = list(dis.get_instructions(func)) 853 opcodes = list(dis.get_instructions(func)) 1025 dis.Bytecode(if_else_break, show_caches=True) 1039 for instr in dis.Bytecode(while_not_chained): 1061 for instruction in dis.get_instructions(code) 1133 dis 1439 import dis, io global() namespace [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | declarationEmitThisPredicates02.js | 10 let dis = this as {} as Foo; 11 return dis.a != null && dis.b != null && dis.c != null; 21 var dis = this;
22 return dis.a != null && dis.b != null && dis.c != null;
|
H A D | declarationEmitThisPredicatesWithPrivateName02.js | 10 let dis = this as {} as Foo; 11 return dis.a != null && dis.b != null && dis.c != null; 21 var dis = this;
22 return dis.a != null && dis.b != null && dis.c != null;
|
/third_party/python/Lib/test/support/ |
H A D | bytecode_helper.py | 4 import dis namespace 14 dis.dis(co, file=s) 19 for instr in dis.get_instructions(x): 33 for instr in dis.get_instructions(x):
|
/third_party/vixl/examples/aarch32/ |
H A D | disasm-a32.cc | 278 vixl::aarch32::PrintDisassembler dis(std::cout, 0); in main() 299 dis.SetCodeAddress(func_addr); in main() 300 dis.DisassembleT32Buffer(reinterpret_cast<uint16_t*>( in main() 304 dis.SetCodeAddress(func_addr); in main() 305 dis.DisassembleA32Buffer(reinterpret_cast<uint32_t*>( in main()
|
/third_party/ffmpeg/tools/ |
H A D | sofa2wavs.c | 64 int dis = hrtf->SourcePosition.values[i * 3 + 2]; in main() local 68 snprintf(filename, sizeof(filename), "azi_%d_ele_%d_dis_%d.wav", azi, ele, dis); in main()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/ |
H A D | extension_test.cc | 48 std::uniform_int_distribution<> dis('a', 'z'); in MakeRandomString() 51 c = dis(gen); in MakeRandomString()
|
/third_party/skia/third_party/externals/spirv-tools/source/wasm/ |
H A D | spirv-tools.cpp | 30 std::string dis(std::string const& buffer, uint32_t env, uint32_t options) { in dis() function 54 function("dis", &dis); in EMSCRIPTEN_BINDINGS()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/wasm/ |
H A D | spirv-tools.cpp | 30 std::string dis(std::string const& buffer, uint32_t env, uint32_t options) { in dis() function 54 function("dis", &dis); in EMSCRIPTEN_BINDINGS()
|
/third_party/spirv-tools/source/wasm/ |
H A D | spirv-tools.cpp | 30 std::string dis(std::string const& buffer, uint32_t env, uint32_t options) { in dis() function 54 function("dis", &dis); in EMSCRIPTEN_BINDINGS()
|
/third_party/nghttp2/src/ |
H A D | util.h | 880 std::uniform_int_distribution<> dis(0, 26 * 2 + 10 - 1); in random_alpha_digit() 882 *first = s[dis(gen)]; in random_alpha_digit() 890 std::uniform_int_distribution<uint8_t> dis; in random_bytes() local 891 std::generate(first, last, [&dis, &gen]() { return dis(gen); }); in random_bytes() 905 auto dis = std::uniform_int_distribution<unsigned int>(i, len - 1); in shuffle() local 906 auto j = dis(gen); in shuffle()
|
/third_party/libwebsockets/test-apps/ |
H A D | test.js | 6 var dis = 0; variable 10 dis = 1; 18 dis = 1; 20 document.getElementById("upload").disabled = dis;
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-demos/mount-origin/ |
H A D | test.js | 6 var dis = 0; variable 10 dis = 1; 18 dis = 1; 20 document.getElementById("upload").disabled = dis;
|
/third_party/node/deps/v8/src/codegen/s390/ |
H A D | assembler-s390-inl.h | 60 int32_t dis = static_cast<int32_t>(instr & 0xFFFFFFFF) * 2 // halfwords in apply() local 64 instr |= static_cast<uint32_t>(dis / 2); in apply() 261 int32_t dis = static_cast<int32_t>(instr_1 & 0xFFFFFFFF) * 2; in target_address_at() local 262 return pc + dis; in target_address_at()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
H A D | benchmarks.cc | 173 Dist dis{std::forward<Args>(args)...}; in BM_Dist() 176 benchmark::DoNotOptimize(dis(rng)); in BM_Dist() 236 Dist dis{}; in BM_Thread() 238 benchmark::DoNotOptimize(dis(rng)); in BM_Thread()
|
H A D | gaussian_distribution_test.cc | 212 D dis(mean(), stddev()); 217 const double x = dis(rng_); 275 D dis(mean(), stddev()); 279 const double x = dis(rng_);
|
H A D | exponential_distribution_test.cc | 207 D dis(lambda()); 212 const double x = dis(rng_); 253 D dis(lambda()); 257 const double x = dis(rng_);
|
H A D | zipf_distribution_test.cc | 270 zipf_u64 dis(param); in TEST_P() 272 uint64_t x = dis(rng_); in TEST_P() 273 ASSERT_LE(x, dis.max()); in TEST_P() 274 ASSERT_GE(x, dis.min()); in TEST_P()
|
H A D | poisson_distribution_test.cc | 270 D dis(mean()); in SingleZTest() 276 const auto x = dis(rng_); in SingleZTest() 411 D dis(mean()); in ChiSquaredTestImpl() 415 const size_t x = dis(rng_); in ChiSquaredTestImpl()
|