Home
last modified time | relevance | path

Searched refs:vres (Results 1 – 20 of 20) sorted by relevance

/external/skqp/src/core/
DSkBlitRow_D32.cpp160 uint8x8_t vsrc, vdst, vres; in blit_row_s32_blend() local
172 vres = vshrn_n_u16(vdst_wide, 8); in blit_row_s32_blend()
174 vst1_u32(dst, vreinterpret_u32_u8(vres)); in blit_row_s32_blend()
182 uint8x8_t vsrc = vdup_n_u8(0), vdst = vdup_n_u8(0), vres; in blit_row_s32_blend() local
192 vres = vshrn_n_u16(vdst_wide, 8); in blit_row_s32_blend()
194 vst1_lane_u32(dst, vreinterpret_u32_u8(vres), 0); in blit_row_s32_blend()
204 uint8x8_t vsrc = vdup_n_u8(0), vdst = vdup_n_u8(0), vres; in blit_row_s32a_blend() local
221 vres = vshrn_n_u16(vdst_wide, 8); in blit_row_s32a_blend()
223 vst1_lane_u32(dst, vreinterpret_u32_u8(vres), 0); in blit_row_s32a_blend()
235 uint8x8_t vsrc, vdst, vres, vsrc_alphas; in blit_row_s32a_blend() local
[all …]
/external/skia/src/core/
DSkBlitRow_D32.cpp159 uint8x8_t vsrc, vdst, vres; in blit_row_s32_blend() local
171 vres = vshrn_n_u16(vdst_wide, 8); in blit_row_s32_blend()
173 vst1_u32(dst, vreinterpret_u32_u8(vres)); in blit_row_s32_blend()
181 uint8x8_t vsrc = vdup_n_u8(0), vdst = vdup_n_u8(0), vres; in blit_row_s32_blend() local
191 vres = vshrn_n_u16(vdst_wide, 8); in blit_row_s32_blend()
193 vst1_lane_u32(dst, vreinterpret_u32_u8(vres), 0); in blit_row_s32_blend()
203 uint8x8_t vsrc = vdup_n_u8(0), vdst = vdup_n_u8(0), vres; in blit_row_s32a_blend() local
220 vres = vshrn_n_u16(vdst_wide, 8); in blit_row_s32a_blend()
222 vst1_lane_u32(dst, vreinterpret_u32_u8(vres), 0); in blit_row_s32a_blend()
234 uint8x8_t vsrc, vdst, vres, vsrc_alphas; in blit_row_s32a_blend() local
[all …]
/external/adhd/cras/src/common/
Dedid_utils.c189 int vres = base[DTD_VA_LO] + ((base[DTD_VABL_HI] & 0xf0) << 4); in show_edid_dtd() local
205 int refr = (pelclk * 10000) / ((hres + hbl) * (vres + vbl)); in show_edid_dtd()
206 int refm = (pelclk * 10000) % ((hres + hbl) * (vres + vbl)); in show_edid_dtd()
207 int refd = (refm * 100) / ((hres + hbl) * (vres + vbl)); in show_edid_dtd()
211 hres, vres, (mdflg & 0x80) ? 'i' : 'p', refr, refd, in show_edid_dtd()
216 fprintf(outfile, "V: start %d, end %d, total %d\n", vres + vso, in show_edid_dtd()
217 vres + vso + vsw, vres + vbl); in show_edid_dtd()
695 int hres, vres; in show_edid() local
705 vres = (hres * 10) / 16; in show_edid()
708 vres = (hres * 3) / 4; in show_edid()
[all …]
/external/mesa3d/src/gallium/drivers/virgl/
Dvirgl_resource.c272 struct virgl_resource *vres = virgl_resource(vtransfer->base.resource); in virgl_staging_map() local
297 align_offset = vres->u.b.target == PIPE_BUFFER ? in virgl_staging_map()
317 virgl_resource_dirty(vres, vtransfer->base.level); in virgl_staging_map()
384 struct virgl_resource *vres = virgl_resource(resource); in virgl_resource_transfer_map() local
393 &vres->metadata, level, usage, box); in virgl_resource_transfer_map()
398 if (!virgl_resource_realloc(vctx, vres)) { in virgl_resource_transfer_map()
402 vws->resource_reference(vws, &trans->hw_res, vres->hw_res); in virgl_resource_transfer_map()
405 trans->hw_res_map = vws->resource_map(vws, vres->hw_res); in virgl_resource_transfer_map()
428 if (vres->u.b.target == PIPE_BUFFER) { in virgl_resource_transfer_map()
446 (vres->clean_mask & 1)) { in virgl_resource_transfer_map()
[all …]
Dvirgl_screen.c754 struct virgl_resource *vres = virgl_resource(res); in virgl_flush_frontbuffer() local
757 vws->flush_frontbuffer(vws, vres->hw_res, level, layer, winsys_drawable_handle, in virgl_flush_frontbuffer()
Dvirgl_context.c839 struct virgl_resource *vres = virgl_resource(res); in virgl_clear_texture() local
841 virgl_encode_clear_texture(vctx, vres, level, box, data); in virgl_clear_texture()
847 virgl_resource_dirty(vres, level); in virgl_clear_texture()
Dvirgl_encode.c1432 struct virgl_resource *vres = virgl_resource(trans->base.resource); in virgl_encode_transfer() local
1438 vres->blob_mem == VIRGL_BLOB_MEM_HOST3D_GUEST) in virgl_encode_transfer()
/external/skqp/src/opts/
DSkBitmapProcState_opts.h266 uint8x8_t vy, vconst16_8, v16_y, vres; in filter_and_scale_by_alpha() local
298 vres = vshrn_n_u16(vcombine_u16(tmp, vcreate_u16(0)), 8); // shift down result by 8 in filter_and_scale_by_alpha()
299 vst1_lane_u32(dst, vreinterpret_u32_u8(vres), 0); // store result in filter_and_scale_by_alpha()
/external/skia/src/opts/
DSkBitmapProcState_opts.h401 uint8x8_t vy, vconst16_8, v16_y, vres; in filter_and_scale_by_alpha() local
433vres = vshrn_n_u16(vcombine_u16(tmp, vcreate_u16((uint64_t)0)), 8); // shift down result by 8 in filter_and_scale_by_alpha()
434 vst1_lane_u32(dst, vreinterpret_u32_u8(vres), 0); // store result in filter_and_scale_by_alpha()
/external/llvm-project/llvm/test/CodeGen/AArch64/GlobalISel/
Darm64-regbankselect.mir77 %vres = or <2 x i32> %varg1, %varg2
78 %res = bitcast <2 x i32> %vres to i64
85 %vres = fadd double %varg1, %varg2
86 %res = bitcast double %vres to i64
92 %vres = fadd double %varg1, %varg1
93 store double %vres, double* %addr
/external/vixl/test/aarch64/
Dtest-simulator-aarch64.cc1930 VRegister vres = v5.V16B(); in Test2OpNEON_Helper() local
1968 __ Mov(vres, vd); in Test2OpNEON_Helper()
1973 __ Str(vres, MemOperand(out, vd.GetSizeInBytes(), PostIndex)); in Test2OpNEON_Helper()
2184 VRegister vres = v5.V16B(); in TestByElementNEON_Helper() local
2223 __ Mov(vres, vd); in TestByElementNEON_Helper()
2230 __ Str(vres, MemOperand(out, vd.GetSizeInBytes(), PostIndex)); in TestByElementNEON_Helper()
2655 VRegister vres = VRegister(5, vn_bits); in TestOpImmOpImmNEON_Helper() local
2692 __ Mov(vres, vd); in TestOpImmOpImmNEON_Helper()
2694 __ Str(vres, MemOperand(out, vd.GetSizeInBytes(), PostIndex)); in TestOpImmOpImmNEON_Helper()
/external/hyphenation-patterns/fr/
Dhyph-fr.pat.txt1176 4vres.
/external/libwebsockets/minimal-examples/api-tests/api-test-fts/
Dles-mis-utf8.txt668 petits enfants, dans ces logis-là, et voyez les fièvres et les maladies.
3937 Puis, gravement et remuant les lèvres comme quelqu'un qui prie ou qui se
5809 macarons à la roulette du pont de Sèvres, cueillirent des bouquets à
5866 faits pour la fuite de Galatée sous les saules. Ses lèvres roses
6327 Favourite. Ô Favourite, tu as des lèvres ioniennes. Il y avait un
6329vres. Ce Grec seul eût été digne de peindre ta bouche! Écoute! avant
7824 et terrible, ses lèvres minces s'écartaient, et laissaient voir, non
8574 sourire sanglant. Une salive rougeâtre lui souillait le coin des lèvres,
9062 monsieur le maire, pâle, froid, les lèvres bleues, le regard désespéré,
9189 main et que ses lèvres s'y posaient.
[all …]
/external/virglrenderer/src/
Dvrend_renderer.c7337 static uint64_t vrend_transfer_size(struct vrend_resource *vres, in vrend_transfer_size() argument
7341 struct pipe_resource *pres = &vres->base; in vrend_transfer_size()
/external/cldr/tools/java/org/unicode/cldr/util/data/external/
DsubdivisionData.txt1344 FR-79 Deux-Sèvres
D2013-1_UNLOCODE_CodeListPart1.csv4187 ,"BE","CHI","Chi�vres","Chievres","WHT","--3-----","RN","0212",,"5035N 00348E",
33280 ,"FR","IVR","Bi�vres","Bievres","91","-23-----","RL","0601",,"4845N 00213E",
35969 ,"FR","GV5","G�vres","Gavres",,"1-------","AA","1201",,"4741N 00321W",
36036 ,"FR","GVS","Gi�vres","Gievres","41","123-----","RL","0601",,"4716N 00140E",
42354 ,"FR","SEV","S�vres","Sevres","92","--3-----","AF","9506",,,
42524 ,"FR","SUV","Su�vres","Suevres","41","--3-----","RL","0501",,"4740N 00128E",
DwikiSubdivisionLanguages.tsv62809 http://www.wikidata.org/entity/Q12765 Deux-Sèvres FR-79 af
62815 http://www.wikidata.org/entity/Q12765 Deux-Sèvres FR-79 ca
62816 http://www.wikidata.org/entity/Q12765 Deux-Sèvres FR-79 ceb
62817 http://www.wikidata.org/entity/Q12765 Deux-Sèvres FR-79 cs
62818 http://www.wikidata.org/entity/Q12765 Deux-Sèvres FR-79 cy
62819 http://www.wikidata.org/entity/Q12765 Deux-Sèvres FR-79 da
62820 http://www.wikidata.org/entity/Q12765 Département Deux-Sèvres FR-79 de
62822 http://www.wikidata.org/entity/Q12765 Deux-Sèvres FR-79 en
62823 http://www.wikidata.org/entity/Q12765 Deux-Sèvres FR-79 es
62824 http://www.wikidata.org/entity/Q12765 Deux-Sèvres FR-79 et
[all …]
/external/libtextclassifier/native/annotator/pod_ner/test_data/
Dvocab.txt24791 ##vres
/external/python/google-api-python-client/samples/prediction/
Dlanguage_id.txt436 …oucl�s tombant sur ses �paules, aux grands yeux bleus languissants, aux l�vres ros�es et aux mains…
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Dinternal_raw_IPA-old.txt191708vres %13843