Home
last modified time | relevance | path

Searched refs:res_type (Results 1 – 7 of 7) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_type.h179 struct lp_type res_type; in lp_type_float() local
181 memset(&res_type, 0, sizeof res_type); in lp_type_float()
182 res_type.floating = TRUE; in lp_type_float()
183 res_type.sign = TRUE; in lp_type_float()
184 res_type.width = width; in lp_type_float()
185 res_type.length = 1; in lp_type_float()
187 return res_type; in lp_type_float()
195 struct lp_type res_type; in lp_type_float_vec() local
197 memset(&res_type, 0, sizeof res_type); in lp_type_float_vec()
198 res_type.floating = TRUE; in lp_type_float_vec()
[all …]
Dlp_bld_type.c183 struct lp_type res_type; in lp_elem_type() local
186 res_type = type; in lp_elem_type()
187 res_type.length = 1; in lp_elem_type()
189 return res_type; in lp_elem_type()
199 struct lp_type res_type; in lp_uint_type() local
202 memset(&res_type, 0, sizeof res_type); in lp_uint_type()
203 res_type.width = type.width; in lp_uint_type()
204 res_type.length = type.length; in lp_uint_type()
206 return res_type; in lp_uint_type()
216 struct lp_type res_type; in lp_int_type() local
[all …]
Dlp_bld_tgsi_soa.c2066 struct lp_type res_type; in lp_build_tgsi_soa() local
2069 memset(&res_type, 0, sizeof res_type); in lp_build_tgsi_soa()
2070 res_type.width = type.width; in lp_build_tgsi_soa()
2071 res_type.length = type.length; in lp_build_tgsi_soa()
2072 res_type.sign = 1; in lp_build_tgsi_soa()
/external/opencv3/modules/cudaarithm/src/cuda/
Dsum.cu65 typedef typename MakeVec<R, cn>::type res_type; in sumImpl() typedef
68 GpuMat_<res_type>& dst = (GpuMat_<res_type>&) _dst; in sumImpl()
80 typedef typename MakeVec<R, cn>::type res_type; in sumAbsImpl() typedef
83 GpuMat_<res_type>& dst = (GpuMat_<res_type>&) _dst; in sumAbsImpl()
86 gridCalcSum(abs_(cvt_<res_type>(src)), dst, stream); in sumAbsImpl()
88 gridCalcSum(abs_(cvt_<res_type>(src)), dst, globPtr<uchar>(mask), stream); in sumAbsImpl()
95 typedef typename MakeVec<R, cn>::type res_type; in sumSqrImpl() typedef
98 GpuMat_<res_type>& dst = (GpuMat_<res_type>&) _dst; in sumSqrImpl()
101 gridCalcSum(sqr_(cvt_<res_type>(src)), dst, stream); in sumSqrImpl()
103 gridCalcSum(sqr_(cvt_<res_type>(src)), dst, globPtr<uchar>(mask), stream); in sumSqrImpl()
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
Dtag.py60 def __init__(self, connection=None, res_id=None, res_type=None, argument
64 self.res_type = res_type
78 self.res_type = value
/external/webrtc/
DPRESUBMIT.py195 res_type = output_api.PresubmitPromptWarning
197 res_type = output_api.PresubmitPromptWarning
198 result = [res_type('Changelist failed cpplint.py check.')]
/external/libvorbis/lib/
Dvorbisenc.c39 int res_type; member
470 ci->residue_type[number]=res->res_type; in vorbis_encode_residue_setup()