Home
last modified time | relevance | path

Searched refs:emit (Results 26 - 50 of 1799) sorted by relevance

12345678910>>...72

/third_party/skia/third_party/externals/swiftshader/tests/regres/cov/turbo-cov/
H A Dmain.cpp32 void emit(T v) in emit() function
37 void emit(const llvm::StringRef &str) in emit() function
40 emit<uint32_t>(len); in emit()
93 emit<uint32_t>(files.size()); in main()
96 emit(file); in main()
98 emit<uint32_t>(fileCoverage.end() - fileCoverage.begin()); in main()
101 emit<uint32_t>(segment.Line); in main()
102 emit<uint32_t>(segment.Col); in main()
103 emit<uint32_t>(segment.Count); in main()
104 emit<uint8_ in main()
[all...]
/third_party/mesa3d/src/compiler/glsl/
H A Dlower_packing_builtins.cpp215 factory.emit(assign(u, uvec2_rval)); in pack_uvec2_to_uint()
246 factory.emit(assign(u, uvec4_rval)); in pack_uvec4_to_uint()
257 factory.emit(assign(u, bit_and(uvec4_rval, constant(0xffu)))); in pack_uvec4_to_uint()
281 factory.emit(assign(u, uint_rval)); in unpack_uint_to_uvec2()
288 factory.emit(assign(u2, bit_and(u, constant(0xffffu)), WRITEMASK_X)); in unpack_uint_to_uvec2()
291 factory.emit(assign(u2, rshift(u, constant(16u)), WRITEMASK_Y)); in unpack_uint_to_uvec2()
315 factory.emit(assign(i, u2i(uint_rval))); in unpack_uint_to_ivec2()
321 factory.emit(assign(i2, bitfield_extract(i, constant(0), constant(16)), in unpack_uint_to_ivec2()
323 factory.emit(assign(i2, bitfield_extract(i, constant(16), constant(16)), in unpack_uint_to_ivec2()
344 factory.emit(assig in unpack_uint_to_uvec4()
[all...]
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_vec4_visitor.cpp66 vec4_visitor::emit(vec4_instruction *inst) in emit() function in brw::vec4_visitor
89 vec4_visitor::emit(enum opcode opcode, const dst_reg &dst, const src_reg &src0, in emit() function in brw::vec4_visitor
92 return emit(new(mem_ctx) vec4_instruction(opcode, dst, src0, src1, src2)); in emit()
97 vec4_visitor::emit(enum opcode opcode, const dst_reg &dst, const src_reg &src0, in emit() function in brw::vec4_visitor
100 return emit(new(mem_ctx) vec4_instruction(opcode, dst, src0, src1)); in emit()
104 vec4_visitor::emit(enum opcode opcode, const dst_reg &dst, const src_reg &src0) in emit() function in brw::vec4_visitor
106 return emit(new(mem_ctx) vec4_instruction(opcode, dst, src0)); in emit()
110 vec4_visitor::emit(enum opcode opcode, const dst_reg &dst) in emit() function in brw::vec4_visitor
112 return emit(new(mem_ctx) vec4_instruction(opcode, dst)); in emit()
116 vec4_visitor::emit(enu function in brw::vec4_visitor
923 assert(varying < VARYING_SLOT_MAX); unsigned num_comps = output_num_components[varying][component]; if (num_comps == 0) return NULL; assert(output_reg[varying][component].type == reg.type); current_annotation = output_reg_annotation[varying]; if (output_reg[varying][component].file != BAD_FILE) { src_reg src = src_reg(output_reg[varying][component]); src.swizzle = BRW_SWZ_COMP_OUTPUT(component); reg.writemask = brw_writemask_for_component_packing(num_comps, component); return emit(MOV(reg, src)); } return NULL; } void vec4_visitor::emit_urb_slot(dst_reg reg, int varying) { reg.type = BRW_REGISTER_TYPE_F; output_reg[varying][0].type = reg.type; switch (varying) { case VARYING_SLOT_PSIZ: { current_annotation = �; emit_psiz_and_flags(reg); break; } case BRW_VARYING_SLOT_NDC: current_annotation = �; if (output_reg[BRW_VARYING_SLOT_NDC][0].file != BAD_FILE) emit(MOV(reg, src_reg(output_reg[BRW_VARYING_SLOT_NDC][0]))); break; case VARYING_SLOT_POS: current_annotation = �; if (output_reg[VARYING_SLOT_POS][0].file != BAD_FILE) emit(MOV(reg, src_reg(output_reg[VARYING_SLOT_POS][0]))); break; case BRW_VARYING_SLOT_PAD: break; default: for (int i = 0; i < 4; i++) { emit_generic_urb_slot(reg, varying, i); } break; } } static unsigned align_interleaved_urb_mlen(const struct intel_device_info *devinfo, unsigned mlen) { if (devinfo->ver >= 6) emit_generic_urb_slot() argument
[all...]
H A Dbrw_vec4_gs_visitor.cpp169 vec4_instruction *inst = emit(GS_OPCODE_SET_DWORD_2, r0, brw_imm_ud(0u)); in emit_prolog()
177 inst = emit(MOV(dst_reg(this->vertex_count), brw_imm_ud(0u))); in emit_prolog()
192 inst = emit(MOV(dst_reg(this->control_data_bits), brw_imm_ud(0u))); in emit_prolog()
209 current_annotation = "thread end: emit control data bits"; in emit_thread_end()
221 vec4_instruction *inst = emit(MOV(mrf_reg, r0)); in emit_thread_end()
223 emit(GS_OPCODE_SET_VERTEX_COUNT, mrf_reg, this->vertex_count); in emit_thread_end()
224 inst = emit(GS_OPCODE_THREAD_END); in emit_thread_end()
244 vec4_instruction *inst = emit(MOV(mrf_reg, r0)); in emit_urb_write_header()
246 emit(GS_OPCODE_SET_WRITE_OFFSET, mrf_reg, this->vertex_count, in emit_urb_write_header()
260 vec4_instruction *inst = emit(VEC4_GS_OPCODE_URB_WRIT in emit_urb_write_opcode()
[all...]
H A Dbrw_fs_builder.h249 emit(const instruction &inst) const in emit() function in brw::fs_builder
251 return emit(new(shader->mem_ctx) instruction(inst)); in emit()
258 emit(enum opcode opcode) const in emit() function in brw::fs_builder
260 return emit(instruction(opcode, dispatch_width())); in emit()
267 emit(enum opcode opcode, const dst_reg &dst) const in emit() function in brw::fs_builder
269 return emit(instruction(opcode, dispatch_width(), dst)); in emit()
276 emit(enum opcode opcode, const dst_reg &dst, const src_reg &src0) const in emit() function in brw::fs_builder
286 return emit(instruction(opcode, dispatch_width(), dst, in emit()
290 return emit(instruction(opcode, dispatch_width(), dst, src0)); in emit()
298 emit(enu function in brw::fs_builder
320 emit(enum opcode opcode, const dst_reg &dst, const src_reg &src0, emit() function in brw::fs_builder
344 emit(enum opcode opcode, const dst_reg &dst, const src_reg srcs[], emit() function in brw::fs_builder
363 emit(instruction *inst) const emit() function in brw::fs_builder
[all...]
H A Dbrw_vec4_builder.h218 emit(const instruction &inst) const in emit() function in brw::vec4_builder
220 return emit(new(shader->mem_ctx) instruction(inst)); in emit()
227 emit(enum opcode opcode) const in emit() function in brw::vec4_builder
229 return emit(instruction(opcode)); in emit()
236 emit(enum opcode opcode, const dst_reg &dst) const in emit() function in brw::vec4_builder
238 return emit(instruction(opcode, dst)); in emit()
245 emit(enum opcode opcode, const dst_reg &dst, const src_reg &src0) const in emit() function in brw::vec4_builder
256 emit(instruction(opcode, dst, in emit()
260 return emit(instruction(opcode, dst, src0)); in emit()
268 emit(enu function in brw::vec4_builder
289 emit(enum opcode opcode, const dst_reg &dst, const src_reg &src0, emit() function in brw::vec4_builder
311 emit(instruction *inst) const emit() function in brw::vec4_builder
[all...]
H A Dbrw_vec4_tcs.cpp78 emit(TCS_OPCODE_GET_INSTANCE_ID, dst_reg(invocation_id)); in emit_prolog()
86 emit(CMP(dst_null_d(), invocation_id, in emit_prolog()
91 emit(IF(BRW_PREDICATE_NORMAL)); in emit_prolog()
103 emit(BRW_OPCODE_ENDIF); in emit_thread_end()
117 emit(TCS_OPCODE_CREATE_BARRIER_HEADER, header); in emit_thread_end()
118 emit(SHADER_OPCODE_BARRIER, dst_null_ud(), src_reg(header)); in emit_thread_end()
128 emit(TCS_OPCODE_SRC0_010_IS_ZERO, dst_null_d(), in emit_thread_end()
130 emit(IF(BRW_PREDICATE_NORMAL)); in emit_thread_end()
139 emit(TCS_OPCODE_RELEASE_INPUT, header, brw_imm_ud(i), in emit_thread_end()
142 emit(BRW_OPCODE_ENDI in emit_thread_end()
[all...]
H A Dbrw_vec4_tes.cpp87 emit(TES_OPCODE_CREATE_INPUT_READ_HEADER, dst_reg(input_read_header)); in emit_prolog()
106 vec4_instruction *inst = emit(VEC4_VS_OPCODE_URB_WRITE); in emit_urb_write_opcode()
122 emit(MOV(get_nir_dest(instr->dest, BRW_REGISTER_TYPE_F), in nir_emit_intrinsic()
127 emit(MOV(get_nir_dest(instr->dest, BRW_REGISTER_TYPE_F), in nir_emit_intrinsic()
131 emit(MOV(get_nir_dest(instr->dest, BRW_REGISTER_TYPE_F), in nir_emit_intrinsic()
138 emit(MOV(get_nir_dest(instr->dest, BRW_REGISTER_TYPE_F), in nir_emit_intrinsic()
142 emit(MOV(get_nir_dest(instr->dest, BRW_REGISTER_TYPE_F), in nir_emit_intrinsic()
147 emit(TES_OPCODE_GET_PRIMITIVE_ID, in nir_emit_intrinsic()
171 emit(TES_OPCODE_ADD_INDIRECT_URB_OFFSET, dst_reg(header), in nir_emit_intrinsic()
182 emit(MO in nir_emit_intrinsic()
[all...]
/third_party/node/test/parallel/
H A Dtest-event-emitter-once.js31 e.emit('hello', 'a', 'b');
32 e.emit('hello', 'a', 'b');
33 e.emit('hello', 'a', 'b');
34 e.emit('hello', 'a', 'b');
42 e.emit('foo');
45 e.emit('e');
50 e.emit('e');
68 EventEmitter.prototype.emit.apply(ee, args);
H A Dtest-repl-mode.js21 cli.input.emit('data', 'x = 3\n');
25 cli.input.emit('data', 'let y = 3\n');
32 cli.input.emit('data', 'x = 3\n');
37 cli.input.emit('data', 'let y = 3\n');
51 cli.input.emit('data', 'xyz ');
60 cli.input.emit('data', 'x = 3\n');
64 cli.input.emit('data', 'let y = 3\n');
/third_party/mesa3d/src/gallium/drivers/freedreno/a5xx/
H A Dfd5_draw.c44 struct fd5_emit *emit, unsigned index_offset) assert_dt
46 const struct pipe_draw_info *info = emit->info;
49 fd5_emit_state(ctx, ring, emit);
51 if (emit->dirty & (FD_DIRTY_VTXBUF | FD_DIRTY_VTXSTATE))
52 fd5_emit_vertex_bufs(ring, emit);
55 OUT_RING(ring, info->index_size ? emit->draw->index_bias
56 : emit->draw->start); /* VFD_INDEX_OFFSET */
64 fd5_emit_render_cntl(ctx, false, emit->binning_pass);
66 emit->binning_pass ? IGNORE_VISIBILITY : USE_VISIBILITY, info,
67 emit
77 struct fd5_emit emit = { global() variable
[all...]
/third_party/mesa3d/src/gallium/drivers/freedreno/a6xx/
H A Dfd6_emit.h41 /* To collect all the state objects to emit in a single CP_SET_DRAW_STATE
42 * packet, the emit tracks a collection of however many state_group's that
43 * need to be emit'd.
70 FD6_GROUP_NON_GROUP, /* placeholder group for state emit in IB2, keep last */
87 /* grouped together emit-state for prog/vertex/state emit: */
122 fd6_emit_get_prog(struct fd6_emit *emit) in fd6_emit_get_prog() argument
124 if (!emit->prog) { in fd6_emit_get_prog()
126 emit->ctx->shader_cache, &emit in fd6_emit_get_prog()
133 fd6_emit_take_group(struct fd6_emit *emit, struct fd_ringbuffer *stateobj, enum fd6_state_id group_id, unsigned enable_mask) fd6_emit_take_group() argument
144 fd6_emit_add_group(struct fd6_emit *emit, struct fd_ringbuffer *stateobj, enum fd6_state_id group_id, unsigned enable_mask) fd6_emit_add_group() argument
[all...]
H A Dfd6_emit.c254 OUT_RINGP(state, 0, &ctx->batch->fb_read_patches); /* texconst0, patched in gmem emit */
257 OUT_RING(state, 0); /* texconst2, patched in gmem emit */
259 OUT_RING(state, 0); /* BASE_LO, patched in gmem emit */
260 OUT_RING(state, 0); /* BASE_HI, patched in gmem emit */
372 * are merging tex state, only emit the textures that the shader in fd6_emit_textures()
447 /* emit texture state: */ in fd6_emit_textures()
481 fd6_emit_combined_textures(struct fd_ringbuffer *ring, struct fd6_emit *emit,
485 struct fd_context *ctx = emit->ctx;
504 * re-emit that:
523 fd6_emit_add_group(emit, te
1013 fd6_emit_state(struct fd_ringbuffer *ring, struct fd6_emit *emit) fd6_emit_state() argument
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/util/
H A Dparse_number.cpp59 std::function<void(uint32_t)> emit, std::string* error_msg) { in ParseAndEncodeIntegerNumber()
126 emit(low); in ParseAndEncodeIntegerNumber()
127 emit(high); in ParseAndEncodeIntegerNumber()
129 emit(uint32_t(decoded_bits)); in ParseAndEncodeIntegerNumber()
136 std::function<void(uint32_t)> emit, std::string* error_msg) { in ParseAndEncodeFloatingPointNumber()
159 emit(static_cast<uint32_t>(hVal.value().getAsFloat().get_value())); in ParseAndEncodeFloatingPointNumber()
168 emit(BitwiseCast<uint32_t>(fVal)); in ParseAndEncodeFloatingPointNumber()
180 emit(low); in ParseAndEncodeFloatingPointNumber()
181 emit(high); in ParseAndEncodeFloatingPointNumber()
194 std::function<void(uint32_t)> emit, in ParseAndEncodeNumber()
57 ParseAndEncodeIntegerNumber( const char* text, const NumberType& type, std::function<void(uint32_t)> emit, std::string* error_msg) ParseAndEncodeIntegerNumber() argument
134 ParseAndEncodeFloatingPointNumber( const char* text, const NumberType& type, std::function<void(uint32_t)> emit, std::string* error_msg) ParseAndEncodeFloatingPointNumber() argument
192 ParseAndEncodeNumber(const char* text, const NumberType& type, std::function<void(uint32_t)> emit, std::string* error_msg) ParseAndEncodeNumber() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/
H A Dparse_number.cpp59 std::function<void(uint32_t)> emit, std::string* error_msg) { in ParseAndEncodeIntegerNumber()
126 emit(low); in ParseAndEncodeIntegerNumber()
127 emit(high); in ParseAndEncodeIntegerNumber()
129 emit(uint32_t(decoded_bits)); in ParseAndEncodeIntegerNumber()
136 std::function<void(uint32_t)> emit, std::string* error_msg) { in ParseAndEncodeFloatingPointNumber()
159 emit(static_cast<uint32_t>(hVal.value().getAsFloat().get_value())); in ParseAndEncodeFloatingPointNumber()
168 emit(BitwiseCast<uint32_t>(fVal)); in ParseAndEncodeFloatingPointNumber()
180 emit(low); in ParseAndEncodeFloatingPointNumber()
181 emit(high); in ParseAndEncodeFloatingPointNumber()
194 std::function<void(uint32_t)> emit, in ParseAndEncodeNumber()
57 ParseAndEncodeIntegerNumber( const char* text, const NumberType& type, std::function<void(uint32_t)> emit, std::string* error_msg) ParseAndEncodeIntegerNumber() argument
134 ParseAndEncodeFloatingPointNumber( const char* text, const NumberType& type, std::function<void(uint32_t)> emit, std::string* error_msg) ParseAndEncodeFloatingPointNumber() argument
192 ParseAndEncodeNumber(const char* text, const NumberType& type, std::function<void(uint32_t)> emit, std::string* error_msg) ParseAndEncodeNumber() argument
[all...]
/third_party/spirv-tools/source/util/
H A Dparse_number.cpp59 std::function<void(uint32_t)> emit, std::string* error_msg) { in ParseAndEncodeIntegerNumber()
126 emit(low); in ParseAndEncodeIntegerNumber()
127 emit(high); in ParseAndEncodeIntegerNumber()
129 emit(uint32_t(decoded_bits)); in ParseAndEncodeIntegerNumber()
136 std::function<void(uint32_t)> emit, std::string* error_msg) { in ParseAndEncodeFloatingPointNumber()
159 emit(static_cast<uint32_t>(hVal.value().getAsFloat().get_value())); in ParseAndEncodeFloatingPointNumber()
168 emit(BitwiseCast<uint32_t>(fVal)); in ParseAndEncodeFloatingPointNumber()
180 emit(low); in ParseAndEncodeFloatingPointNumber()
181 emit(high); in ParseAndEncodeFloatingPointNumber()
194 std::function<void(uint32_t)> emit, in ParseAndEncodeNumber()
57 ParseAndEncodeIntegerNumber( const char* text, const NumberType& type, std::function<void(uint32_t)> emit, std::string* error_msg) ParseAndEncodeIntegerNumber() argument
134 ParseAndEncodeFloatingPointNumber( const char* text, const NumberType& type, std::function<void(uint32_t)> emit, std::string* error_msg) ParseAndEncodeFloatingPointNumber() argument
192 ParseAndEncodeNumber(const char* text, const NumberType& type, std::function<void(uint32_t)> emit, std::string* error_msg) ParseAndEncodeNumber() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceInstX8632.cpp56 #define X(val, encode, opp, dump, emit) {CondX86::opp, dump, emit},
62 #define X(val, emit) {emit},
424 void InstX86Label::emit(const Cfg *Func) const { in emit() function in Ice::X8632::InstX86Label
446 void InstX86Br::emit(const Cfg *Func) const { in emit() function in Ice::X8632::InstX86Br
527 void InstX86Jmp::emit(const Cfg *Func) const { in emit() function in Ice::X8632::InstX86Jmp
536 getJmpTarget()->emit(Func); in emit()
578 void InstX86Call::emit(const Cfg *Func) const { in emit() function in Ice::X8632::InstX86Call
595 CallTarget->emit(Fun in emit()
937 void InstX86Movmsk::emit(const Cfg *Func) const { emit() function in Ice::X8632::InstX86Movmsk
980 void InstX86Sqrt::emit(const Cfg *Func) const { emit() function in Ice::X8632::InstX86Sqrt
995 void InstX86Div::emit(const Cfg *Func) const { emit() function in Ice::X8632::InstX86Div
1013 void InstX86Idiv::emit(const Cfg *Func) const { emit() function in Ice::X8632::InstX86Idiv
1057 void InstX86Blendvps::emit(const Cfg *Func) const { emit() function in Ice::X8632::InstX86Blendvps
1069 void InstX86Pblendvb::emit(const Cfg *Func) const { emit() function in Ice::X8632::InstX86Pblendvb
1081 void InstX86Imul::emit(const Cfg *Func) const { emit() function in Ice::X8632::InstX86Imul
1131 void InstX86ImulImm::emit(const Cfg *Func) const { emit() function in Ice::X8632::InstX86ImulImm
1174 void InstX86Cbwdq::emit(const Cfg *Func) const { emit() function in Ice::X8632::InstX86Cbwdq
1239 void InstX86Mul::emit(const Cfg *Func) const { emit() function in Ice::X8632::InstX86Mul
1279 void InstX86Shld::emit(const Cfg *Func) const { emit() function in Ice::X8632::InstX86Shld
1315 void InstX86Shrd::emit(const Cfg *Func) const { emit() function in Ice::X8632::InstX86Shrd
1351 void InstX86Cmov::emit(const Cfg *Func) const { emit() function in Ice::X8632::InstX86Cmov
1406 void InstX86Cmpps::emit(const Cfg *Func) const { emit() function in Ice::X8632::InstX86Cmpps
[all...]
H A DIceInstX8664.cpp56 #define X(val, encode, opp, dump, emit) {CondX86::opp, dump, emit},
62 #define X(val, emit) {emit},
404 void InstX86Label::emit(const Cfg *Func) const { in emit() function in Ice::X8664::InstX86Label
426 void InstX86Br::emit(const Cfg *Func) const { in emit() function in Ice::X8664::InstX86Br
507 void InstX86Jmp::emit(const Cfg *Func) const { in emit() function in Ice::X8664::InstX86Jmp
523 getJmpTarget()->emit(Func); in emit()
565 void InstX86Call::emit(const Cfg *Func) const { in emit() function in Ice::X8664::InstX86Call
582 CallTarget->emit(Fun in emit()
929 void InstX86Movmsk::emit(const Cfg *Func) const { emit() function in Ice::X8664::InstX86Movmsk
972 void InstX86Sqrt::emit(const Cfg *Func) const { emit() function in Ice::X8664::InstX86Sqrt
987 void InstX86Div::emit(const Cfg *Func) const { emit() function in Ice::X8664::InstX86Div
1005 void InstX86Idiv::emit(const Cfg *Func) const { emit() function in Ice::X8664::InstX86Idiv
1049 void InstX86Blendvps::emit(const Cfg *Func) const { emit() function in Ice::X8664::InstX86Blendvps
1061 void InstX86Pblendvb::emit(const Cfg *Func) const { emit() function in Ice::X8664::InstX86Pblendvb
1073 void InstX86Imul::emit(const Cfg *Func) const { emit() function in Ice::X8664::InstX86Imul
1123 void InstX86ImulImm::emit(const Cfg *Func) const { emit() function in Ice::X8664::InstX86ImulImm
1166 void InstX86Cbwdq::emit(const Cfg *Func) const { emit() function in Ice::X8664::InstX86Cbwdq
1242 void InstX86Mul::emit(const Cfg *Func) const { emit() function in Ice::X8664::InstX86Mul
1282 void InstX86Shld::emit(const Cfg *Func) const { emit() function in Ice::X8664::InstX86Shld
1318 void InstX86Shrd::emit(const Cfg *Func) const { emit() function in Ice::X8664::InstX86Shrd
1354 void InstX86Cmov::emit(const Cfg *Func) const { emit() function in Ice::X8664::InstX86Cmov
1408 void InstX86Cmpps::emit(const Cfg *Func) const { emit() function in Ice::X8664::InstX86Cmpps
[all...]
H A DIceInstMIPS32.cpp12 /// constructors and the dump()/emit() methods.
32 #define X(tag, opp, emit) {CondMIPS32::opp, emit},
61 template <> void InstMIPS32Lui::emit(const Cfg *Func) const { in emit() function in Ice::MIPS32::InstMIPS32Lui
67 getDest()->emit(Func); in emit()
76 Src0->emit(Func); in emit()
176 void InstMIPS32Label::emit(const Cfg *Func) const { in emit() function in Ice::MIPS32::InstMIPS32Label
246 void OperandMIPS32Mem::emit(const Cfg *Func) const { in emit() function in Ice::MIPS32::OperandMIPS32Mem
256 Offset->emit(Func); in emit()
258 getBase()->emit(Fun in emit()
328 void InstMIPS32Ret::emit(const Cfg *Func) const { emit() function in Ice::MIPS32::InstMIPS32Ret
379 void InstMIPS32Br::emit(const Cfg *Func) const { emit() function in Ice::MIPS32::InstMIPS32Br
464 void InstMIPS32Call::emit(const Cfg *Func) const { emit() function in Ice::MIPS32::InstMIPS32Call
533 void InstMIPS32Mov::emit(const Cfg *Func) const { emit() function in Ice::MIPS32::InstMIPS32Mov
844 template <> void InstMIPS32Mflo::emit(const Cfg *Func) const { emit() function in Ice::MIPS32::InstMIPS32Mflo
855 template <> void InstMIPS32Mfhi::emit(const Cfg *Func) const { emit() function in Ice::MIPS32::InstMIPS32Mfhi
916 template <> void InstMIPS32Mtc1::emit(const Cfg *Func) const { emit() function in Ice::MIPS32::InstMIPS32Mtc1
932 template <> void InstMIPS32Mtlo::emit(const Cfg *Func) const { emit() function in Ice::MIPS32::InstMIPS32Mtlo
943 template <> void InstMIPS32Mthi::emit(const Cfg *Func) const { emit() function in Ice::MIPS32::InstMIPS32Mthi
969 template <> void InstMIPS32Mult::emit(const Cfg *Func) const { emit() function in Ice::MIPS32::InstMIPS32Mult
980 template <> void InstMIPS32Multu::emit(const Cfg *Func) const { emit() function in Ice::MIPS32::InstMIPS32Multu
[all...]
/third_party/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_vertex.h30 * the draw_vbuf code to emit hardware-specific vertex layouts into hw
50 * Vertex attribute emit modes
53 EMIT_OMIT, /**< don't emit the attribute */
77 unsigned emit:8; /**< EMIT_x */ member
114 enum attrib_emit emit, in draw_emit_vertex_attr()
126 vinfo->attrib[n].emit = emit; in draw_emit_vertex_attr()
139 static inline enum pipe_format draw_translate_vinfo_format(enum attrib_emit emit) in draw_translate_vinfo_format() argument
141 switch (emit) { in draw_translate_vinfo_format()
163 static inline unsigned draw_translate_vinfo_size(enum attrib_emit emit) in draw_translate_vinfo_size() argument
113 draw_emit_vertex_attr(struct vertex_info *vinfo, enum attrib_emit emit, int src_index) draw_emit_vertex_attr() argument
[all...]
/third_party/node/deps/undici/src/node_modules/@fastify/busboy/deps/dicer/lib/
H A DDicer.js44 self._part.emit('header', header)
49 Dicer.prototype.emit = function (ev) {
54 self.emit('error', new Error('Unexpected end of multipart data'))
57 self._part.emit('error', new Error(type + ' terminated early due to unexpected end of multipart data'))
61 self.emit('finish')
67 self.emit('finish')
71 } else { WritableStream.prototype.emit.apply(this, arguments) }
81 if (this.listenerCount('preamble') !== 0) { this.emit('preamble', this._part) } else { this._ignore() }
117 // ignoring the data, otherwise node's Readable stream will not emit 'end'
138 if ((start + i) < end && this.listenerCount('trailer') !== 0) { this.emit('traile
[all...]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
H A DOutputASM.cpp532 Instruction *callMain = emit(sw::Shader::OPCODE_CALL); in output()
536 emit(sw::Shader::OPCODE_RET); in output()
729 emit(sw::Shader::OPCODE_DEF, left, i, right, i); in visitBinary()
743 emit(sw::Shader::OPCODE_MUL, result, i, left, i, right); in visitBinary()
761 Instruction *dot = emit(sw::Shader::OPCODE_DP(size), result, 0, left, 0, right, i); in visitBinary()
776 Instruction *mul = emit(sw::Shader::OPCODE_MUL, result, i, left, 0, right, i); in visitBinary()
781 Instruction *mad = emit(sw::Shader::OPCODE_MAD, result, i, left, j, right, i, result, i); in visitBinary()
822 Instruction *mov = emit(sw::Shader::OPCODE_MOV, result, left); in visitBinary()
854 emit(sw::Shader::OPCODE_EQ, &equal, 0, left, index, right, index); in visitBinary()
855 emit(s in visitBinary()
2086 Instruction *OutputASM::emit(sw::Shader::Opcode op, TIntermTyped *dst, TIntermNode *src0, TIntermNode *src1, TIntermNode *src2, TIntermNode *src3, TIntermNode *src4) emit() function in glsl::OutputASM
2091 Instruction *OutputASM::emit(sw::Shader::Opcode op, TIntermTyped *dst, int dstIndex, TIntermNode *src0, int index0, TIntermNode *src1, int index1, emit() function in glsl::OutputASM
[all...]
/third_party/node/deps/v8/src/codegen/x64/
H A Dassembler-x64-inl.h47 void Assembler::emit(Immediate x) { in emit() function in v8::internal::Assembler
54 void Assembler::emit(Immediate64 x) { in emit() function in v8::internal::Assembler
62 emit(0x48 | reg.high_bit() << 2 | rm_reg.high_bit()); in emit_rex_64()
66 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3); in emit_rex_64()
70 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3); in emit_rex_64()
74 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3); in emit_rex_64()
78 emit(0x48 | reg.high_bit() << 2 | op.data().rex); in emit_rex_64()
82 emit(0x48 | (reg.code() & 0x8) >> 1 | op.data().rex); in emit_rex_64()
87 emit(0x48 | rm_reg.high_bit()); in emit_rex_64()
90 void Assembler::emit_rex_64(Operand op) { emit(
[all...]
/third_party/PyYAML/lib/yaml/
H A Dserializer.py29 self.emit(StreamStartEvent(encoding=self.use_encoding))
40 self.emit(StreamEndEvent())
51 self.emit(DocumentStartEvent(explicit=self.use_explicit_start,
55 self.emit(DocumentEndEvent(explicit=self.use_explicit_end))
81 self.emit(AliasEvent(alias))
89 self.emit(ScalarEvent(alias, node.tag, implicit, node.value,
94 self.emit(SequenceStartEvent(alias, node.tag, implicit,
100 self.emit(SequenceEndEvent())
104 self.emit(MappingStartEvent(alias, node.tag, implicit,
109 self.emit(MappingEndEven
[all...]
/third_party/node/lib/internal/process/
H A Dpromises.js49 // Emit 'unhandledRejection', but do not emit any warning.
53 // Emit 'unhandledRejection', then emit 'UnhandledPromiseRejectionWarning'.
59 // Otherwise, emit 'unhandledRejection'. If 'unhandledRejection' is not
60 // handled, emit 'UnhandledPromiseRejectionWarning'.
64 // Emit 'unhandledRejection', if it's unhandled, emit
70 // Emit 'unhandledRejection', if it's unhandled, emit
138 if (process.emit('multipleResolves', type, promise, reason)) {
145 const emit = (reason, promise, promiseInfo) => {
147 return promiseInfo.domain.emit('error', reason);
149 return process.emit('unhandledRejectio
[all...]

Completed in 23 milliseconds

12345678910>>...72