HomeSort by relevance Sort by last modified time
    Searched refs:src_type (Results 51 - 75 of 119) sorted by null

1 23 4 5

  /art/runtime/verifier/
register_line.h 225 * "dst_type" is stored into vA, and "src_type" is verified against vB.
230 const RegType& src_type)
245 const RegType& src_type)
316 * "dst_type" is stored into vA, and "src_type" is verified against vB.
323 const RegType& src_type,
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3_print.c 78 if (instr->cat1.src_type == instr->cat1.dst_type)
82 printf(".%s%s", type[instr->cat1.src_type], type[instr->cat1.dst_type]);
disasm-a3xx.c 181 if (cat1->src_type == cat1->dst_type) {
182 if ((cat1->src_type == TYPE_S16) && (((reg_t)cat1->dst).num == REG_A0)) {
186 printf("mov.%s%s", type[cat1->src_type], type[cat1->dst_type]);
189 printf("cov.%s%s", type[cat1->src_type], type[cat1->dst_type]);
207 if (type_float(cat1->src_type))
209 else if (type_uint(cat1->src_type))
225 print_reg_src((reg_t)(cat1->src), type_size(cat1->src_type) == 32,
ir3.h 203 type_t src_type, dst_type; member in struct:ir3_instruction::__anon27665::__anon27667
562 return instr->cat1.src_type == instr->cat1.dst_type;
947 instr->cat1.src_type = type;
954 type_t src_type, type_t dst_type)
959 instr->cat1.src_type = src_type;
ir3_group.c 73 instr->cat1.src_type = TYPE_F32;
  /external/selinux/python/sepolgen/src/sepolgen/
matching.py 167 dist += self.type_distance(req.src_type, prov.src_type)
  /external/selinux/python/sepolgen/tests/
test_interfaces.py 34 self.assertEqual(p.type, refpolicy.SRC_TYPE)
44 av.src_type = "$1"
49 self.assertEqual(p.type, refpolicy.SRC_TYPE)
59 self.assertEqual(p.type, refpolicy.SRC_TYPE)
69 self.assertEqual(p.type, refpolicy.SRC_TYPE)
72 av.src_type = "bar"
220 self.assertEqual(param.type, refpolicy.SRC_TYPE)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
matching.py 167 dist += self.type_distance(req.src_type, prov.src_type)
  /external/opencv/ml/src/
ml_inner_functions.cpp     [all...]
  /external/mesa3d/src/amd/vulkan/
radv_meta_resolve_cs.c 92 tex->src[0].src_type = nir_tex_src_coord;
94 tex->src[1].src_type = nir_tex_src_ms_index;
113 tex_all_same->src[0].src_type = nir_tex_src_coord;
134 tex_add->src[0].src_type = nir_tex_src_coord;
136 tex_add->src[1].src_type = nir_tex_src_ms_index;
radv_meta_bufimage.c 87 tex->src[0].src_type = nir_tex_src_coord;
89 tex->src[1].src_type = nir_tex_src_lod;
290 tex->src[0].src_type = nir_tex_src_coord;
292 tex->src[1].src_type = nir_tex_src_lod;
479 tex->src[0].src_type = nir_tex_src_coord;
481 tex->src[1].src_type = nir_tex_src_lod;
    [all...]
  /external/mesa3d/src/intel/vulkan/
anv_nir_apply_pipeline_layout.c 134 nir_tex_src_type src_type,
155 new_srcs[i].src_type = tex->src[i].src_type;
165 tex->src[tex->num_srcs].src_type = src_type;
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_format_aos.c 155 struct lp_type src_type)
166 lp_build_context_init(&bld, gallivm, src_type);
167 dst_mask = lp_build_const_int_vec(gallivm, src_type,
170 lp_build_const_int_vec(gallivm, src_type, 0));
180 lp_build_const_int_vec(gallivm, src_type, db),
187 lp_build_const_int_vec(gallivm, src_type,
197 LLVMValueRef shuv = lp_build_const_int_vec(gallivm, src_type, n);
  /external/mesa3d/src/mesa/main/
format_utils.h 228 enum mesa_array_format_datatype src_type,
  /external/opencv/cv/include/
cv.hpp 109 int get_src_type() const { return src_type; }
135 /* currently, work_type must be the same as src_type in case of non-separable filters */
136 int min_depth, src_type, dst_type, work_type; member in class:CvBaseImageFilter
  /external/valgrind/none/tests/s390x/
pfpo.c 29 #define PFPO(initial, src_type, dst_type, fn_code, round, ret_code, cc) \
31 register src_type src_reg asm("f4") = initial; \
  /external/mesa3d/src/gallium/auxiliary/nir/
tgsi_to_nir.c     [all...]
  /external/mesa3d/src/compiler/nir/
nir_instr_set.c 149 hash = HASH(hash, instr->src[i].src_type);
302 if (tex1->src[i].src_type != tex2->src[i].src_type ||
nir_validate.c 232 nir_alu_type src_type = nir_op_infos[instr->op].input_types[index]; local
235 if (nir_alu_type_get_base_type(src_type) == nir_type_float)
238 if (nir_alu_type_get_type_size(src_type)) {
240 validate_assert(state, nir_alu_type_get_type_size(src_type) == src_bit_size);
512 validate_assert(state, !src_type_seen[instr->src[i].src_type]);
513 src_type_seen[instr->src[i].src_type] = true;
    [all...]
nir.h 1115 nir_tex_src_type src_type; member in struct:__anon27432
    [all...]
  /art/runtime/
common_throws.h 77 void ThrowClassCastException(ObjPtr<mirror::Class> dest_type, ObjPtr<mirror::Class> src_type)
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_dataflow.c 142 unsigned int src_type; local
144 src_type = rc_source_type_swz(sub->Arg[i].Swizzle);
146 if (src_type == RC_SOURCE_NONE)
155 if (src_type & RC_SOURCE_RGB) {
  /external/opencv/cv/src/
cvfilter.cpp 104 int max_depth = MAX(CV_MAT_DEPTH(src_type), CV_MAT_DEPTH(dst_type));
105 int max_cn = MAX(CV_MAT_CN(src_type), CV_MAT_CN(dst_type));
108 trow_sz = cvAlign( (max_width + ksize.width - 1)*CV_ELEM_SIZE(src_type), ALIGN );
112 work_type = src_type;
135 if( !(buffer && _max_width <= max_width && _src_type == src_type &&
143 src_type = CV_MAT_TYPE(_src_type);
173 src_pix_sz = CV_ELEM_SIZE(src_type);
193 cvScalarToRawData( &border_value, border_tab, src_type, 0 );
202 int pix_sz = CV_ELEM_SIZE(src_type), work_pix_sz = CV_ELEM_SIZE(work_type);
344 int pix_size = CV_ELEM_SIZE(src_type);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/
dim.h 80 enum isl_dim_type src_type, unsigned src_pos, unsigned n);
polynomial.h 78 enum isl_dim_type src_type, unsigned src_pos, unsigned n);
213 enum isl_dim_type src_type, unsigned src_pos, unsigned n);
292 enum isl_dim_type src_type, unsigned src_pos, unsigned n);
383 enum isl_dim_type src_type, unsigned src_pos, unsigned n);

Completed in 614 milliseconds

1 23 4 5