HomeSort by relevance Sort by last modified time
    Searched defs:bit_size (Results 1 - 25 of 28) sorted by null

1 2

  /external/mesa3d/src/compiler/nir/
nir_lower_var_copies.c 120 unsigned bit_size = glsl_get_bit_size(src_tail->type); local
126 nir_ssa_dest_init(&load->instr, &load->dest, num_components, bit_size,
nir_lower_indirect_derefs.c 76 unsigned bit_size = then_dest->bit_size; local
78 then_dest->num_components, bit_size, NULL);
126 unsigned bit_size = orig_instr->dest.ssa.bit_size; local
128 load->num_components, bit_size, NULL);
nir_opt_constant_folding.c 58 unsigned bit_size = 0; local
60 bit_size = instr->dest.dest.ssa.bit_size;
66 if (bit_size == 0 &&
68 bit_size = instr->src[i].src.ssa->bit_size;
79 if (load_const->def.bit_size == 64)
89 if (bit_size == 0)
90 bit_size = 32;
97 bit_size, src)
    [all...]
nir_search.h 44 unsigned bit_size; member in struct:__anon27475
nir_lower_phis_to_scalar.c 192 unsigned bit_size = phi->dest.ssa.bit_size; local
209 bit_size, NULL);
215 phi->dest.ssa.bit_size, NULL);
223 nir_ssa_dest_init(&mov->instr, &mov->dest.dest, 1, bit_size, NULL);
nir_builder.h 85 nir_ssa_undef(nir_builder *build, unsigned num_components, unsigned bit_size)
88 nir_ssa_undef_instr_create(build->shader, num_components, bit_size);
99 unsigned bit_size, nir_const_value value)
102 nir_load_const_instr_create(build->shader, num_components, bit_size);
209 unsigned bit_size = nir_alu_type_get_type_size(op_info->output_type); local
210 if (bit_size == 0) {
212 unsigned src_bit_size = instr->src[i].src.ssa->bit_size;
214 if (bit_size)
215 assert(src_bit_size == bit_size);
217 bit_size = src_bit_size
    [all...]
nir_phi_builder.c 55 unsigned bit_size; member in struct:nir_phi_builder_value
109 unsigned bit_size, const BITSET_WORD *defs)
117 val->bit_size = bit_size;
191 val->bit_size);
216 val->bit_size, NULL);
nir_loop_analyze.c 401 nir_const_value *limit, nir_op cond_op, unsigned bit_size,
431 nir_eval_const_opcode(mul_op, 1, bit_size, mul_src);
436 nir_eval_const_opcode(add_op, 1, bit_size, add_src);
443 nir_const_value result = nir_eval_const_opcode(cond_op, 1, bit_size, src);
512 unsigned bit_size = nir_src_bit_size(alu->src[0].src); local
516 if (test_iterations(iter_bias, step, limit, cond_alu->op, bit_size,
nir_validate.c 216 src_bit_size = src->src.ssa->bit_size;
219 src_bit_size = src->src.reg.reg->bit_size;
244 instr->dest.dest.is_ssa ? instr->dest.dest.ssa.bit_size
245 : instr->dest.dest.reg.reg->bit_size;
342 unsigned bit_size = dest->dest.is_ssa ? dest->dest.ssa.bit_size local
343 : dest->dest.reg.reg->bit_size;
348 validate_assert(state, bit_size == 16 || bit_size == 32 || bit_size == 64)
    [all...]
nir.c 75 reg->bit_size = 32;
476 unsigned bit_size)
481 nir_ssa_def_init(&instr->instr, &instr->def, num_components, bit_size, NULL);
584 unsigned bit_size)
589 nir_ssa_def_init(&instr->instr, &instr->def, num_components, bit_size, NULL);
839 unsigned bit_size = glsl_get_bit_size(tail->type); local
842 bit_size);
    [all...]
nir.h 344 uint8_t bit_size; member in struct:nir_register
460 uint8_t bit_size; member in struct:nir_ssa_def
584 return src.is_ssa ? src.ssa->bit_size : src.reg.reg->bit_size;
590 return dest.is_ssa ? dest.ssa.bit_size : dest.reg.reg->bit_size;
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_nir_opt_peephole_ffma.c 212 unsigned bit_size = add->dest.dest.ssa.bit_size; local
252 bit_size,
brw_vec4_nir.cpp 143 const unsigned num_regs = array_elems * DIV_ROUND_UP(reg->bit_size, 32);
146 if (reg->bit_size == 64)
262 if (nir_reg->bit_size == 64)
279 dst_reg(VGRF, alloc.allocate(DIV_ROUND_UP(dest.ssa.bit_size, 32)));
280 if (dest.ssa.bit_size == 64)
361 if (instr->def.bit_size == 64) {
382 if ((instr->def.bit_size == 32 &&
384 (instr->def.bit_size == 64 &&
391 if (instr->def.bit_size == 64) {
1107 unsigned bit_size = nir_src_bit_size(cmp_instr->src[i].src); local
    [all...]
  /external/r8/src/main/java/com/android/tools/r8/utils/
EncodedValueUtils.java 24 int bit_size = Long.SIZE + 1 - Long.numberOfLeadingZeros(value ^ (value >> (Long.SIZE - 1))); local
25 int size = Math.max((bit_size + Byte.SIZE - 1) / Byte.SIZE, 1);
36 int bit_size = Long.SIZE + 1 - Long.numberOfLeadingZeros(value ^ (value >> (Long.SIZE - 1))); local
37 int size = Math.max((bit_size + Byte.SIZE - 1) / Byte.SIZE, 1);
60 int bit_size = Long.SIZE - Long.numberOfLeadingZeros(value); local
61 int size = Math.max((bit_size + Byte.SIZE - 1) / Byte.SIZE, 1);
71 int bit_size = Long.SIZE - Long.numberOfLeadingZeros(value); local
72 int size = Math.max((bit_size + Byte.SIZE - 1) / Byte.SIZE, 1);
83 int bit_size = Long.SIZE - Long.numberOfTrailingZeros(value); local
84 int size = (bit_size - 1) / Byte.SIZE + 1
95 int bit_size = Long.SIZE - Long.numberOfTrailingZeros(value); local
    [all...]
  /external/mesa3d/src/compiler/glsl/
glsl_to_nir.cpp 76 void add_instr(nir_instr *instr, unsigned num_components, unsigned bit_size);
970 unsigned bit_size = glsl_get_bit_size(type); local
972 type->vector_elements, bit_size, NULL);
1056 unsigned bit_size = glsl_get_bit_size(type); local
1119 unsigned bit_size = glsl_get_bit_size(ir->return_deref->type); local
1299 unsigned bit_size = glsl_get_bit_size(ir->type); local
1320 unsigned bit_size = glsl_get_bit_size(ir->type); local
1389 unsigned bit_size = glsl_get_bit_size(deref->type); local
1609 unsigned bit_size = glsl_get_bit_size(ir->type); local
2047 unsigned bit_size = glsl_get_bit_size(ir->type); local
    [all...]
  /external/freetype/src/sfnt/
ttsbit.c 1175 FT_UInt bit_size = ( width * height + 7 ) >> 3; local
    [all...]
  /external/pdfium/third_party/freetype/src/sfnt/
ttsbit.c 1016 FT_UInt bit_size = ( width * height + 7 ) >> 3; local
1020 if ( bit_size < byte_size &&
    [all...]
  /external/ImageMagick/coders/
dpx.c 215 bit_size;
848 dpx.image.image_element[i].bit_size=(unsigned char) ReadBlobByte(image);
212 bit_size; member in struct:_DPXImageElement
    [all...]
  /external/mesa3d/src/compiler/spirv/
spirv_to_nir.c 65 unsigned bit_size = glsl_get_bit_size(val->type); local
66 val->def = nir_ssa_undef(&b->nb, num_components, bit_size);
110 int bit_size = glsl_get_bit_size(type); local
114 nir_load_const_instr_create(b->shader, num_components, bit_size);
130 nir_load_const_instr_create(b->shader, rows, bit_size);
717 int bit_size = w[2]; local
718 val->type->type = bit_size == 64 ? glsl_double_type() : glsl_float_type();
1034 int bit_size = glsl_get_bit_size(val->const_type); local
1047 int bit_size = glsl_get_bit_size(val->const_type); local
1068 int bit_size = glsl_get_bit_size(val->const_type); local
1122 unsigned bit_size = glsl_get_bit_size(val->const_type); local
1238 unsigned bit_size = glsl_get_bit_size(type); local
1255 unsigned bit_size = glsl_get_bit_size(type); local
1275 unsigned bit_size = local
    [all...]
  /toolchain/binutils/binutils-2.25/include/opcode/
cr16.h 324 unsigned int bit_size; member in struct:__anon116253
crx.h 321 unsigned int bit_size; member in struct:__anon116266
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_ir.h 222 unsigned bit_size; member in class:r600_sb::sb_bitset
226 sb_bitset() : data(), bit_size() {}
235 unsigned size() { return bit_size; }
245 if (bit_size < bs2.bit_size) {
246 resize(bs2.bit_size);
  /external/libpng/contrib/libtests/
pngvalid.c 3755 bit_size(png_const_structp pp, png_byte colour_type, png_byte bit_depth) function
    [all...]
  /external/valgrind/perf/
tinycc.c 10428 int r, r2, rc2, bit_pos, bit_size, size, align, i; local
11881 int sbt, dbt, ft, r, t, size, align, bit_size, bit_pos, rc, delayed_cast; local
12125 int bit_size, bit_pos, bsize, bt, lbit_pos; local
13967 int saved_global_expr, bt, bit_pos, bit_size; local
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/build/builder/3.0.0-alpha9/
builder-3.0.0-alpha9.jar 

Completed in 1088 milliseconds

1 2