/third_party/node/deps/undici/src/lib/websocket/ |
D | receiver.js | 5 const { parserStates, opcodes, states, emptyBuffer } = require('./constants') 67 this.#info.fragmented = !this.#info.fin && this.#info.opcode !== opcodes.CONTINUATION 69 …if (this.#info.fragmented && this.#info.opcode !== opcodes.BINARY && this.#info.opcode !== opcodes… 91 (this.#info.opcode === opcodes.PING || 92 this.#info.opcode === opcodes.PONG || 93 this.#info.opcode === opcodes.CLOSE) && 99 } else if (this.#info.opcode === opcodes.CLOSE) { 119 closeFrame.createFrame(opcodes.CLOSE), 137 } else if (this.#info.opcode === opcodes.PING) { 148 this.ws[kResponse].socket.write(frame.createFrame(opcodes.PONG)) [all …]
|
D | util.js | 4 const { states, opcodes } = require('./constants') 73 if (type === opcodes.TEXT) { 82 } else if (type === opcodes.BINARY) {
|
D | websocket.js | 7 const { staticPropertyDescriptors, states, opcodes, emptyBuffer } = require('./constants') 232 socket.write(frame.createFrame(opcodes.CLOSE), (err) => { 292 const buffer = frame.createFrame(opcodes.TEXT) 313 const buffer = frame.createFrame(opcodes.BINARY) 335 const buffer = frame.createFrame(opcodes.BINARY) 358 const buffer = frame.createFrame(opcodes.BINARY)
|
D | constants.js | 23 const opcodes = { variable 47 opcodes, property
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
D | fuzzer_pass_replace_branches_from_dead_blocks_with_exits.cpp | 74 std::vector<SpvOp> opcodes = {SpvOpUnreachable}; in Apply() local 76 opcodes.emplace_back(SpvOpKill); in Apply() 81 opcodes.emplace_back(SpvOpReturn); in Apply() 87 opcodes.emplace_back(SpvOpReturnValue); in Apply() 91 auto opcode = opcodes[GetFuzzerContext()->RandomIndex(opcodes)]; in Apply()
|
/third_party/spirv-tools/source/fuzz/ |
D | fuzzer_pass_replace_branches_from_dead_blocks_with_exits.cpp | 74 std::vector<SpvOp> opcodes = {SpvOpUnreachable}; in Apply() local 76 opcodes.emplace_back(SpvOpKill); in Apply() 81 opcodes.emplace_back(SpvOpReturn); in Apply() 87 opcodes.emplace_back(SpvOpReturnValue); in Apply() 91 auto opcode = opcodes[GetFuzzerContext()->RandomIndex(opcodes)]; in Apply()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
D | fuzzer_pass_replace_branches_from_dead_blocks_with_exits.cpp | 74 std::vector<SpvOp> opcodes = {SpvOpUnreachable}; in Apply() local 76 opcodes.emplace_back(SpvOpKill); in Apply() 81 opcodes.emplace_back(SpvOpReturn); in Apply() 87 opcodes.emplace_back(SpvOpReturnValue); in Apply() 91 auto opcode = opcodes[GetFuzzerContext()->RandomIndex(opcodes)]; in Apply()
|
/third_party/mesa3d/src/amd/compiler/ |
D | aco_opcodes_cpp.py | 83 from aco_opcodes import opcodes 86 print(Template(template).render(opcodes=opcodes))
|
D | aco_opcodes_h.py | 45 from aco_opcodes import opcodes 48 print(Template(template).render(opcodes=opcodes))
|
D | aco_builder_h.py | 605 from aco_opcodes import opcodes, Format 608 print(Template(template).render(opcodes=opcodes, Format=Format))
|
/third_party/mesa3d/src/asahi/compiler/ |
D | agx_builder.h.py | 159 from agx_opcodes import opcodes 161 print(Template(template).render(opcodes=opcodes))
|
D | agx_opcodes.c.py | 54 from agx_opcodes import opcodes 56 print(Template(template).render(opcodes=opcodes))
|
D | agx_opcodes.h.py | 80 from agx_opcodes import opcodes, immediates, enums 82 print(Template(template).render(opcodes=opcodes, immediates=immediates,
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_opcodes_h.py | 42 from nir_opcodes import opcodes 45 print(Template(template).render(opcodes=opcodes))
|
D | nir_opcodes_c.py | 26 from nir_opcodes import opcodes, type_sizes 128 print(template.render(opcodes=opcodes, type_sizes=type_sizes))
|
D | nir_builder_opcodes_h.py | 167 from nir_opcodes import opcodes 171 print(Template(template).render(opcodes=opcodes, INTR_OPCODES=INTR_OPCODES, WRITE_MASK=WRITE_MASK, …
|
D | nir_constant_expressions.py | 2 from nir_opcodes import opcodes 513 print(Template(template).render(opcodes=opcodes, type_sizes=type_sizes,
|
/third_party/mesa3d/src/compiler/spirv/ |
D | vtn_gather_types_c.py | 115 opcodes = list(find_result_types(spirv_info)) variable 119 f.write(TEMPLATE.render(opcodes=opcodes))
|
/third_party/spirv-tools/test/opt/ |
D | def_use_test.cpp | 55 std::vector<SpvOp> opcodes; in GetUseOpcodes() local 57 id, [&opcodes](Instruction* user, uint32_t) { in GetUseOpcodes() 58 opcodes.push_back(user->opcode()); in GetUseOpcodes() 60 return opcodes; in GetUseOpcodes() 1301 std::vector<SpvOp> opcodes = GetUseOpcodes(context, 6u); in TEST() local 1302 EXPECT_THAT(opcodes, UnorderedElementsAre(SpvOpSwitch, SpvOpReturnValue)); in TEST() 1306 std::vector<SpvOp> opcodes = GetUseOpcodes(context, 7u); in TEST() local 1308 EXPECT_THAT(opcodes, UnorderedElementsAre(SpvOpSelectionMerge, SpvOpBranch, in TEST()
|
/third_party/skia/third_party/externals/spirv-tools/test/opt/ |
D | def_use_test.cpp | 55 std::vector<SpvOp> opcodes; in GetUseOpcodes() local 57 id, [&opcodes](Instruction* user, uint32_t) { in GetUseOpcodes() 58 opcodes.push_back(user->opcode()); in GetUseOpcodes() 60 return opcodes; in GetUseOpcodes() 1301 std::vector<SpvOp> opcodes = GetUseOpcodes(context, 6u); in TEST() local 1302 EXPECT_THAT(opcodes, UnorderedElementsAre(SpvOpSwitch, SpvOpReturnValue)); in TEST() 1306 std::vector<SpvOp> opcodes = GetUseOpcodes(context, 7u); in TEST() local 1308 EXPECT_THAT(opcodes, UnorderedElementsAre(SpvOpSelectionMerge, SpvOpBranch, in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/ |
D | def_use_test.cpp | 55 std::vector<SpvOp> opcodes; in GetUseOpcodes() local 57 id, [&opcodes](Instruction* user, uint32_t) { in GetUseOpcodes() 58 opcodes.push_back(user->opcode()); in GetUseOpcodes() 60 return opcodes; in GetUseOpcodes() 1301 std::vector<SpvOp> opcodes = GetUseOpcodes(context, 6u); in TEST() local 1302 EXPECT_THAT(opcodes, UnorderedElementsAre(SpvOpSwitch, SpvOpReturnValue)); in TEST() 1306 std::vector<SpvOp> opcodes = GetUseOpcodes(context, 7u); in TEST() local 1308 EXPECT_THAT(opcodes, UnorderedElementsAre(SpvOpSelectionMerge, SpvOpBranch, in TEST()
|
/third_party/mesa3d/src/gallium/drivers/i915/ |
D | i915_debug_fp.c | 37 static const char *opcodes[0x20] = { variable 202 PRINTF(stream, "%s ", opcodes[opcode]); in print_arith_op() 224 PRINTF(stream, "%s ", opcodes[opcode]); in print_tex_op() 248 PRINTF(stream, "%s ", opcodes[opcode]); in print_dcl_op()
|
/third_party/python/Doc/library/ |
D | pickletools.rst | 6 pickle-machine opcodes, as well as some useful functions. 47 highest protocol among opcodes = 2 89 pickler. Successive levels, indicated by ``MARK`` opcodes in the 100 Provides an :term:`iterator` over all of the opcodes in a pickle, returning a 109 opcodes. The optimized pickle is shorter, takes less transmission time,
|
/third_party/python/Lib/test/ |
D | test_compile.py | 772 opcodes = list(dis.get_instructions(func)) 773 self.assertLessEqual(len(opcodes), 3) 774 self.assertEqual('LOAD_CONST', opcodes[-2].opname) 775 self.assertEqual(None, opcodes[-2].argval) 776 self.assertEqual('RETURN_VALUE', opcodes[-1].opname) 791 opcodes = list(dis.get_instructions(func)) 792 self.assertEqual(2, len(opcodes)) 793 self.assertEqual('LOAD_CONST', opcodes[0].opname) 794 self.assertEqual(None, opcodes[0].argval) 795 self.assertEqual('RETURN_VALUE', opcodes[1].opname) [all …]
|
/third_party/pulseaudio/ |
D | PROTOCOL | 24 New opcodes: 37 New opcodes: 57 Reply to these opcodes now includes: 65 New opcodes for changing buffer attrs: 70 New opcodes for changing sampling rate: 75 New opcodes for notifications: 101 New proplist field for sink, source, sink input, source output introspection opcodes and at the end: 105 New opcodes for proplist modifications 326 New opcodes:
|