HomeSort by relevance Sort by last modified time
    Searched full:type_size (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/tpm2/
marshal_fp.h 11 UINT16 type_size);
13 UINT16 type_size);
  /external/llvm/utils/
lldbDataFormatters.py 31 return (end - begin)/self.type_size
46 offset = index * self.type_size
60 self.type_size = self.data_type.GetByteSize()
61 assert self.type_size != 0
81 offset = index * self.type_size
90 self.type_size = self.data_type.GetByteSize()
91 assert self.type_size != 0
  /external/mesa3d/src/compiler/nir/
nir_lower_io.c 39 int (*type_size)(const struct glsl_type *type); member in struct:lower_io_state
46 int (*type_size)(const struct glsl_type *))
60 location += type_size(var->type);
90 int (*type_size)(const struct glsl_type *),
119 return nir_imm_int(b, type_size(glsl_vec4_type()) * slot_offset);
131 unsigned size = type_size(tail->type);
148 field_offset += type_size(glsl_get_struct_field(parent_type, i));
215 nir_intrinsic_set_range(load, state->type_size(var->type));
422 state->type_size, &component_offset);
485 int (*type_size)(const struct glsl_type *)
    [all...]
nir_lower_clip.c 58 shader->num_outputs++; /* TODO use type_size() */
62 shader->num_inputs++; /* TODO use type_size() */
nir_lower_two_sided_color.c 62 shader->num_inputs++; /* TODO use type_size() */
  /test/vts/compilation_tools/vtsc/code_gen/fuzzer/
HalHidlFuzzerCodeGen.cpp 129 out << "size_t type_size" << i << " = sizeof(" << types[i] << ");\n";
130 out << "if (size < type_size" << i << ") { return 0; }\n";
131 out << "size -= type_size" << i << ";\n";
133 out << "memcpy(&arg" << i << ", data, type_size" << i << ");\n";
134 out << "data += type_size" << i << ";\n\n";
  /external/tensorflow/tensorflow/core/example/
example_parser_configuration.cc 68 if (tdense.list().type_size() != num_dense) {
70 tdense.list().type_size(),
80 if (sparse_types.list().type_size() != num_sparse) {
82 sparse_types.list().type_size(),
86 for (int i = 0; i < tdense.list().type_size(); ++i) {
92 for (int i = 0; i < sparse_types.list().type_size(); ++i) {
  /external/mesa3d/src/mapi/glapi/gen/
glX_proto_recv.py 321 type_size = param.size() / count
331 if type_size == 1:
351 swap_func = self.swap_name(type_size)
353 print ' %s = (%s) %s( (%s *) (pc + %s), %s );' % (param.name, param.type_string(), swap_func, self.real_types[type_size], o, compsize)
403 type_size = 0
415 type_size = (param.size() / c)
416 if type_size == 1:
419 size_scale = " * %u" % (type_size)
425 print ' %s %s = __glXGetAnswerBuffer(cl, compsize%s, answerBuffer, sizeof(answerBuffer), %u);' % (param.type_string(), param.name, size_scale, type_size )
435 print ' %s %s = __glXGetAnswerBuffer(cl, %s%s, answerBuffer, sizeof(answerBuffer), %u);' % (param.type_string(), param.name, param.counter, size_scale, type_size)
    [all...]
typeexpr.py 99 for (type_name, type_size, integer) in basic_types:
103 tn.size = type_size
  /system/media/audio/include/system/
audio_effect-base.h 15 EFFECT_FLAG_TYPE_MASK = 7, // (((1 << TYPE_SIZE) - 1) << TYPE_SHIFT)
21 EFFECT_FLAG_INSERT_SHIFT = 3, // (TYPE_SHIFT + TYPE_SIZE)
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
disasm-a3xx.c 200 print_reg_dst((reg_t)(cat1->dst), type_size(cat1->dst_type) == 32,
225 print_reg_src((reg_t)(cat1->src), type_size(cat1->src_type) == 32,
441 print_reg_dst((reg_t)(cat5->dst), type_size(cat5->type) == 32, false);
494 dst.full = type_size(cat6->type) == 32;
495 src1.full = type_size(cat6->type) == 32;
496 src2.full = type_size(cat6->type) == 32;
512 src1.full = type_size(cat6->type) == 32;
513 src2.full = type_size(cat6->type) == 32;
516 dst.full = type_size(cat6->type) == 32;
  /frameworks/av/media/img_utils/include/img_utils/
TiffHelpers.h 87 TYPE_SIZE = 2,
  /external/mesa3d/src/mesa/state_tracker/
st_glsl_types.cpp 91 assert(!"Invalid type in type_size");
  /frameworks/av/services/camera/libcameraservice/utils/
TagMonitor.cpp 226 size_t type_size = camera_metadata_type_size[type]; local
239 k++, count--, index += type_size) {
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4_reg_allocate.cpp 427 unsigned type_size = type_sz(inst->src[i].type); local
429 reg_type_size[inst->src[i].nr] = type_size;
430 else if (reg_type_size[inst->src[i].nr] != type_size)
465 unsigned type_size = type_sz(inst->dst.type); local
467 reg_type_size[inst->dst.nr] = type_size;
468 else if (reg_type_size[inst->dst.nr] != type_size)
brw_fs_nir.cpp     [all...]
  /external/piex/src/
tiff_parser.cc 493 const size_t type_size = SizeOfType(type, nullptr /* no error */); local
495 // Check that type_size * number_of_elements does not exceed UINT32_MAX.
496 if (type_size != 0 && number_of_elements > UINT32_MAX / type_size) {
500 type_size * static_cast<size_t>(number_of_elements);
  /hardware/interfaces/audio/effect/2.0/
types.hal 116 TYPE_SIZE = 3,
117 TYPE_MASK = ((1 << TYPE_SIZE) -1) << TYPE_SHIFT,
125 INSERT_SHIFT = TYPE_SHIFT + TYPE_SIZE,
  /hardware/interfaces/audio/effect/4.0/
types.hal 116 TYPE_SIZE = 3,
117 TYPE_MASK = ((1 << TYPE_SIZE) -1) << TYPE_SHIFT,
125 INSERT_SHIFT = TYPE_SHIFT + TYPE_SIZE,
  /external/mesa3d/src/mesa/program/
ir_to_mesa.cpp 501 type_size(const struct glsl_type *type) function
537 return type_size(type->fields.array) * type->length;
541 size += type_size(type->fields.structure[i].type);
556 assert(!"Invalid type in type_size");
577 next_temp += type_size(type);
638 assert((int) ir->get_num_state_slots() == type_size(ir->type));
643 this->next_temp += type_size(ir->type);
674 type_size(ir->type));
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
runtime-gdb.py 256 type_size = int(dynamic_go_type['size'])
258 if type_size > uintptr_size:
  /prebuilts/go/linux-x86/src/runtime/
runtime-gdb.py 256 type_size = int(dynamic_go_type['size'])
258 if type_size > uintptr_size:
  /bionic/tests/
thread_local_test.cpp 196 TEST(thread_local_storage, type_size) {
  /system/media/camera/src/
camera_metadata.c 1099 size_t type_size = camera_metadata_type_size[entry->type]; local
1130 size_t type_size = camera_metadata_type_size[type]; local
    [all...]
  /external/mesa3d/src/mesa/main/
glformats.c 3409 int num_channels = 0, type_size = 0; local
    [all...]

Completed in 325 milliseconds

1 2 3