Home
last modified time | relevance | path

Searched refs:bytecode (Results 1 – 25 of 185) sorted by relevance

12345678

/third_party/mesa3d/src/gallium/drivers/r600/
Deg_asm.c36 bc->bytecode[id++] = cf->isa[0]; in eg_bytecode_cf_build()
37 bc->bytecode[id++] = cf->isa[1]; in eg_bytecode_cf_build()
45 bc->bytecode[id++] = in eg_bytecode_cf_build()
53 bc->bytecode[id++] = in eg_bytecode_cf_build()
61 bc->bytecode[id++] = S_SQ_CF_ALU_WORD0_ADDR(cf->addr >> 1) | in eg_bytecode_cf_build()
65 bc->bytecode[id++] = S_SQ_CF_ALU_WORD1_CF_INST(opcode) | in eg_bytecode_cf_build()
73 bc->bytecode[id++] = S_SQ_CF_WORD0_ADDR(cf->addr >> 1); in eg_bytecode_cf_build()
74 bc->bytecode[id] = S_SQ_CF_WORD1_CF_INST(opcode) | in eg_bytecode_cf_build()
79 bc->bytecode[id] |= S_SQ_CF_ALLOC_EXPORT_WORD1_END_OF_PROGRAM(cf->end_of_program); in eg_bytecode_cf_build()
83 bc->bytecode[id++] = S_SQ_CF_ALLOC_EXPORT_WORD0_RW_GPR(cf->output.gpr) | in eg_bytecode_cf_build()
[all …]
Dr700_asm.c26 void r700_bytecode_cf_vtx_build(uint32_t *bytecode, const struct r600_bytecode_cf *cf) in r700_bytecode_cf_vtx_build() argument
29 *bytecode++ = S_SQ_CF_WORD0_ADDR(cf->addr >> 1); in r700_bytecode_cf_vtx_build()
30 *bytecode++ = S_SQ_CF_WORD1_CF_INST(r600_isa_cf_opcode(ISA_CC_R700, cf->op)) | in r700_bytecode_cf_vtx_build()
39 bc->bytecode[id++] = S_SQ_ALU_WORD0_SRC0_SEL(alu->src[0].sel) | in r700_bytecode_alu_build()
53 bc->bytecode[id++] = S_SQ_ALU_WORD1_DST_GPR(alu->dst.sel) | in r700_bytecode_alu_build()
64 bc->bytecode[id++] = S_SQ_ALU_WORD1_DST_GPR(alu->dst.sel) | in r700_bytecode_alu_build()
132 bc->bytecode[id++] = S_SQ_MEM_RD_WORD0_MEM_INST(2) | in r700_bytecode_fetch_mem_build()
146 bc->bytecode[id++] = S_SQ_MEM_RD_WORD1_DST_GPR(mem->dst_gpr) | in r700_bytecode_fetch_mem_build()
157 bc->bytecode[id++] = S_SQ_MEM_RD_WORD2_ARRAY_BASE(mem->array_base) | in r700_bytecode_fetch_mem_build()
162 bc->bytecode[id++] = 0; /* MEM ops are 4 word aligned */ in r700_bytecode_fetch_mem_build()
Dr600_asm.c1639 bc->bytecode[id] = S_SQ_VTX_WORD0_VTX_INST(r600_isa_fetch_opcode(bc->isa->hw_class, vtx->op)) | in r600_bytecode_vtx_build()
1645 bc->bytecode[id] |= S_SQ_VTX_WORD0_MEGA_FETCH_COUNT(vtx->mega_fetch_count); in r600_bytecode_vtx_build()
1647 bc->bytecode[id++] = S_SQ_VTX_WORD1_DST_SEL_X(vtx->dst_sel_x) | in r600_bytecode_vtx_build()
1657 bc->bytecode[id] = S_SQ_VTX_WORD2_OFFSET(vtx->offset)| in r600_bytecode_vtx_build()
1660 …bc->bytecode[id] |= ((vtx->buffer_index_mode & 0x3) << 21); // S_SQ_VTX_WORD2_BIM(vtx->buffer_inde… in r600_bytecode_vtx_build()
1662 bc->bytecode[id] |= S_SQ_VTX_WORD2_MEGA_FETCH(1); in r600_bytecode_vtx_build()
1664 bc->bytecode[id++] = 0; in r600_bytecode_vtx_build()
1671 bc->bytecode[id] = S_SQ_TEX_WORD0_TEX_INST( in r600_bytecode_tex_build()
1678 …bc->bytecode[id] |= ((tex->sampler_index_mode & 0x3) << 27) | // S_SQ_TEX_WORD0_SIM(tex->sampler_i… in r600_bytecode_tex_build()
1681 bc->bytecode[id++] = S_SQ_TEX_WORD1_DST_GPR(tex->dst_gpr) | in r600_bytecode_tex_build()
[all …]
Dr600_asm.h271 uint32_t *bytecode; member
341 void r700_bytecode_cf_vtx_build(uint32_t *bytecode,
/third_party/libsnd/src/
Dima_adpcm.c257 int chan, k, diff, bytecode, predictor ; in aiff_ima_decode_block() local
290 { bytecode = blockdata [k + 2] ; in aiff_ima_decode_block()
291 sampledata [pima->channels * (2 * k + 0)] = bytecode & 0xF ; in aiff_ima_decode_block()
292 sampledata [pima->channels * (2 * k + 1)] = (bytecode >> 4) & 0xF ; in aiff_ima_decode_block()
299 bytecode = pima->samples [pima->channels * k + chan] ; in aiff_ima_decode_block()
301 stepindx += ima_indx_adjust [bytecode] ; in aiff_ima_decode_block()
305 if (bytecode & 1) diff += step >> 2 ; in aiff_ima_decode_block()
306 if (bytecode & 2) diff += step >> 1 ; in aiff_ima_decode_block()
307 if (bytecode & 4) diff += step ; in aiff_ima_decode_block()
308 if (bytecode & 8) diff = -diff ; in aiff_ima_decode_block()
[all …]
Dms_adpcm.c213 short bytecode, bpred [2], chan_idelta [2] ; in msadpcm_decode_block() local
278 { bytecode = pms->block [blockindx++] ; in msadpcm_decode_block()
279 pms->samples [sampleindx++] = (bytecode >> 4) & 0x0F ; in msadpcm_decode_block()
280 pms->samples [sampleindx++] = bytecode & 0x0F ; in msadpcm_decode_block()
288 bytecode = pms->samples [k] & 0xF ; in msadpcm_decode_block()
292 …chan_idelta [chan] = (AdaptationTable [bytecode] * idelta) >> 8 ; /* => / 256 => FIXED_POINT_ADAPT… in msadpcm_decode_block()
295 if (bytecode & 0x8) in msadpcm_decode_block()
296 bytecode -= 0x10 ; in msadpcm_decode_block()
300 current = (bytecode * idelta) + predict ; in msadpcm_decode_block()
/third_party/gstreamer/gstplugins_bad/gst/adpcmdec/
Dadpcmdec.c221 int bytecode; in adpcmdec_decode_ms_block() local
226 bytecode = (data[idx] >> 4) & 0x0F; in adpcmdec_decode_ms_block()
228 bytecode = data[idx] & 0x0F; in adpcmdec_decode_ms_block()
233 idelta[chan] = (AdaptationTable[bytecode] * delta) >> 8; in adpcmdec_decode_ms_block()
239 if (bytecode & 0x8) in adpcmdec_decode_ms_block()
240 bytecode -= 0x10; in adpcmdec_decode_ms_block()
246 current = (bytecode * delta) + predict; in adpcmdec_decode_ms_block()
305 int bytecode; in adpcmdec_decode_ima_block() local
310 bytecode = data[idx] & 0x0F; in adpcmdec_decode_ima_block()
312 bytecode = (data[idx] >> 4) & 0x0F; in adpcmdec_decode_ima_block()
[all …]
/third_party/mesa3d/src/gallium/drivers/r600/sb/
Dsb_core.cpp120 bc_dump(*sh, bc->bytecode, bc->ndw).run(); in r600_sb_bytecode_process()
250 bytecode &nbc = builder.get_bytecode(); in r600_sb_bytecode_process()
258 free(bc->bytecode); in r600_sb_bytecode_process()
260 bc->bytecode = (uint32_t*) malloc(bc->ndw << 2); in r600_sb_bytecode_process()
261 nbc.write_data(bc->bytecode); in r600_sb_bytecode_process()
Dsb_bc.h939 class bytecode {
949 bytecode(sb_hw_class_bits hw, unsigned rdw = 256)
981 bytecode & operator <<(uint32_t v) {
990 bytecode & operator <<(const hw_encoding_format &e) {
995 bytecode & operator <<(const bytecode &b) {
1007 bytecode bb;
1014 bytecode& get_bytecode() { assert(!error); return bb; } in get_bytecode()
/third_party/gstreamer/gstplugins_bad/gst/adpcmenc/
Dadpcmenc.c245 int bytecode = 0x0; in adpcmenc_encode_ima_sample() local
252 bytecode = NEGATIVE_SIGN_BIT; in adpcmenc_encode_ima_sample()
258 bytecode |= mask; in adpcmenc_encode_ima_sample()
266 if (bytecode & 8) { in adpcmenc_encode_ima_sample()
271 *stepindex = CLAMP (*stepindex + ima_indx_adjust[bytecode], 0, 88); in adpcmenc_encode_ima_sample()
273 return bytecode; in adpcmenc_encode_ima_sample()
/third_party/python/Doc/library/
Ddis.rst1 :mod:`dis` --- Disassembler for Python bytecode
5 :synopsis: Disassembler for Python bytecode.
11 The :mod:`dis` module supports the analysis of CPython :term:`bytecode` by
12 disassembling it. The CPython bytecode which this module takes as an input is
19 guarantees are made that bytecode will not be added, removed, or changed
49 The bytecode analysis API allows pieces of Python code to be wrapped in a
56 Analyse the bytecode corresponding to a function, generator, asynchronous
62 instance yields the bytecode operations as :class:`Instruction` instances.
88 Return a formatted view of the bytecode operations (the same as printed by
101 >>> bytecode = dis.Bytecode(myfunc)
[all …]
Dlanguage.rst8 language. These modules support tokenizing, parsing, syntax analysis, bytecode
/third_party/node/test/wasi/
Dtest-wasi-worker-terminate.js10 const bytecode = new Uint8Array([ constant
40 const module = await WebAssembly.compile(bytecode);
/third_party/flutter/engine/flutter/shell/platform/fuchsia/dart_runner/kernel/
DBUILD.gn23 # TODO(dartbug.com/36342): enable bytecode for core libraries when performance of bytecode
25 # "--bytecode",
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/kernel/
DBUILD.gn23 # TODO(dartbug.com/36342): enable bytecode for core libraries when performance of bytecode
25 # "--bytecode",
/third_party/python/Lib/
Dpy_compile.py162 bytecode = importlib._bootstrap_external._code_to_timestamp_pyc(
166 bytecode = importlib._bootstrap_external._code_to_hash_pyc(
172 importlib._bootstrap_external._write_atomic(cfile, bytecode, mode)
Dimp.py110 bytecode = [(s, 'rb', PY_COMPILED) for s in machinery.BYTECODE_SUFFIXES]
112 return extensions + source + bytecode
/third_party/mesa3d/src/gallium/winsys/svga/drm/
Dvmw_shader.c77 const uint32 *bytecode, in vmw_svga_shader_create() argument
107 memcpy(map, bytecode, bytecodeLen); in vmw_svga_shader_create()
Dvmw_shader.h71 const uint32 *bytecode,
/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_pipeline_state.cpp235 pso_desc.VS.pShaderBytecode = shader->bytecode; in create_gfx_pipeline_state()
242 pso_desc.HS.pShaderBytecode = shader->bytecode; in create_gfx_pipeline_state()
249 pso_desc.DS.pShaderBytecode = shader->bytecode; in create_gfx_pipeline_state()
256 pso_desc.GS.pShaderBytecode = shader->bytecode; in create_gfx_pipeline_state()
265 pso_desc.PS.pShaderBytecode = shader->bytecode; in create_gfx_pipeline_state()
444 pso_desc.CS.pShaderBytecode = shader->bytecode; in create_compute_pipeline_state()
/third_party/python/Objects/
Dlnotab_notes.txt99 (bytecode offset increment, line number increment)
128 line number corresponding to a bytecode address A should do something like
158 number we save the bytecode indices where it's valid:
163 the first bytecode index of the current line, and *instr_ub holds the first
164 bytecode index of the next line. As long as the above expression is true,
167 bytecode jumped more than 255 indices between line number changes or because
/third_party/skia/third_party/externals/angle2/third_party/bazel/desugar/
DREADME.chromium1 Name: Desugar, transforming Java 8 bytecode to be Java 7 compatible
10 to transform Java 8 bytecode to Java 7. It is used to enable Java 8 features
/third_party/jerryscript/docs/
D01.CONFIGURATION.md32 …ter parsing is complete. This option can be used to augment the created bytecode to provide line i…
97 ### Dump bytecode
99 This option can be used to display created bytecode in a human readable format. See [Internals](04.…
108 ### Dump RegExp bytecode
110 …e used to display created RegExp bytecode in a human readable format. The RegExp bytecode is diffe…
/third_party/flutter/flutter/packages/flutter_tools/lib/src/fuchsia/
Dfuchsia_kernel_compiler.dart65 '--gen-bytecode',
72 '--gen-bytecode',
/third_party/ltp/tools/sparse/sparse-src/Documentation/
Ddata-structures.txt26 The sparse static analysis backend has a few steps: it generates linearized bytecode, does some eva…
27 Several other backends run that linearized bytecode stage.
28 The linearized bytecode itself has a set of nested structures.

12345678