Home
last modified time | relevance | path

Searched refs:vr (Results 1 - 25 of 26) sorted by relevance

12

/third_party/icu/icu4c/source/layoutex/
H A Dplayout.cpp227 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; in pl_getVisualRunFont() local
229 if (vr == NULL) { in pl_getVisualRunFont()
233 return (const le_font *) vr->getFont(); in pl_getVisualRunFont()
239 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; in pl_getVisualRunDirection() local
241 if (vr == NULL) { in pl_getVisualRunDirection()
245 return vr->getDirection(); in pl_getVisualRunDirection()
251 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; in pl_getVisualRunGlyphCount() local
253 if (vr == NULL) { in pl_getVisualRunGlyphCount()
257 return vr->getGlyphCount(); in pl_getVisualRunGlyphCount()
263 ParagraphLayout::VisualRun *vr in pl_getVisualRunGlyphs() local
275 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; pl_getVisualRunPositions() local
287 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; pl_getVisualRunGlyphToCharMap() local
299 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; pl_getVisualRunAscent() local
311 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; pl_getVisualRunDescent() local
323 ParagraphLayout::VisualRun *vr = (ParagraphLayout::VisualRun *) run; pl_getVisualRunLeading() local
[all...]
H A Dplruns.cpp133 ValueRuns *vr = (ValueRuns *) valueRuns; in pl_closeValueRuns() local
135 delete vr; in pl_closeValueRuns()
141 const ValueRuns *vr = (const ValueRuns *) valueRuns; in pl_getValueRunCount() local
143 if (vr == NULL) { in pl_getValueRunCount()
147 return vr->getCount(); in pl_getValueRunCount()
153 ValueRuns *vr = (ValueRuns *) valueRuns; in pl_resetValueRuns() local
155 if (vr != NULL) { in pl_resetValueRuns()
156 vr->reset(); in pl_resetValueRuns()
163 const ValueRuns *vr = (const ValueRuns *) valueRuns; in pl_getValueRunLastLimit() local
165 if (vr in pl_getValueRunLastLimit()
176 const ValueRuns *vr = (const ValueRuns *) valueRuns; pl_getValueRunLimit() local
189 const ValueRuns *vr = (const ValueRuns *) valueRuns; pl_getValueRunValue() local
203 ValueRuns *vr = (ValueRuns *) valueRuns; pl_addValueRun() local
[all...]
/third_party/libexif/libexif/olympus/
H A Dmnote-olympus-entry.c280 ExifRational vr, vr2; in mnote_olympus_entry_get_value() local
378 vr = exif_get_rational (entry->data, entry->order); in mnote_olympus_entry_get_value()
379 r = R2D(vr); in mnote_olympus_entry_get_value()
380 vr = exif_get_rational (entry->data+8, entry->order); in mnote_olympus_entry_get_value()
381 b = R2D(vr); in mnote_olympus_entry_get_value()
387 vr = exif_get_rational (entry->data, entry->order); in mnote_olympus_entry_get_value()
388 if (!vr.numerator || !vr.denominator) { in mnote_olympus_entry_get_value()
391 r = R2D(vr); in mnote_olympus_entry_get_value()
398 vr in mnote_olympus_entry_get_value()
[all...]
/third_party/libexif/libexif/fuji/
H A Dmnote-fuji-entry.c197 ExifRational vr; in mnote_fuji_entry_get_value() local
262 vr = exif_get_rational (entry->data, entry->order); in mnote_fuji_entry_get_value()
263 if (!vr.denominator) break; in mnote_fuji_entry_get_value()
264 snprintf (val, maxlen, _("%2.2f mm"), (double) vr.numerator / in mnote_fuji_entry_get_value()
265 vr.denominator); in mnote_fuji_entry_get_value()
290 vr = exif_get_rational (entry->data, entry->order); in mnote_fuji_entry_get_value()
291 if (!vr.denominator) break; in mnote_fuji_entry_get_value()
292 snprintf (val, maxlen, "%2.4f", (double) vr.numerator / in mnote_fuji_entry_get_value()
293 vr.denominator); in mnote_fuji_entry_get_value()
/third_party/mksh/
H A Dexpr.c263 struct tbl *vl, *vr = NULL, *vasn; in evalexpr() local
345 vr = intvar(es, evalexpr(es, P_ASSIGN)); in evalexpr()
360 vr = evalexpr(es, P_TERN); in evalexpr()
363 vl = ev ? vl : vr; in evalexpr()
366 vr = intvar(es, evalexpr(es, prec - 1)); in evalexpr()
374 if (vr->val.u == 0) { in evalexpr()
377 vr->val.u = 1; in evalexpr()
381 t2 = vr->val.i < 0 ? -vr->val.u : vr in evalexpr()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dqoienc.c78 int8_t vr = px[0] - px_prev[0]; in qoi_encode_frame() local
82 int8_t vg_r = vr - vg; in qoi_encode_frame()
85 if (vr > -3 && vr < 2 && in qoi_encode_frame()
88 bytestream_put_byte(&buf, QOI_OP_DIFF | (vr + 2) << 4 | (vg + 2) << 2 | (vb + 2)); in qoi_encode_frame()
H A Dvorbisdec.c1344 vorbis_residue *vr, in setup_classifs()
1351 vorbis_codebook *codebook = vc->codebooks + vr->classbook; in setup_classifs()
1354 unsigned inverse_class = ff_inverse[vr->classifications]; in setup_classifs()
1371 if (vr->classifications == 1) { in setup_classifs()
1374 vr->classifs[p + i] = 0; in setup_classifs()
1381 vr->classifs[p + i] = temp - temp2 * vr->classifications; in setup_classifs()
1393 vorbis_residue *vr, in vorbis_residue_decode_internal()
1402 unsigned c_p_c = vc->codebooks[vr->classbook].dimensions; in vorbis_residue_decode_internal()
1403 uint8_t *classifs = vr in vorbis_residue_decode_internal()
1343 setup_classifs(vorbis_context *vc, vorbis_residue *vr, uint8_t *do_not_decode, unsigned ch_used, int partition_count, int ptns_to_read ) setup_classifs() argument
1392 vorbis_residue_decode_internal(vorbis_context *vc, vorbis_residue *vr, unsigned ch, uint8_t *do_not_decode, float *vec, unsigned vlen, unsigned ch_left, int vr_type) vorbis_residue_decode_internal() argument
1567 vorbis_residue_decode(vorbis_context *vc, vorbis_residue *vr, unsigned ch, uint8_t *do_not_decode, float *vec, unsigned vlen, unsigned ch_left) vorbis_residue_decode() argument
[all...]
H A Ddvbsubdec.c679 int vr = x+1<w ? V(x+1,y) + 1 : 0; in compute_default_clut() local
682 counttab[v-1] += !!((v!=vl) + (v!=vr) + (v!=vt) + (v!=vb)); in compute_default_clut()
684 counttab2[vr][v-1] ++; in compute_default_clut()
/third_party/libexif/libexif/apple/
H A Dmnote-apple-entry.c39 ExifRational vr; in mnote_apple_entry_get_value() local
137 vr = exif_get_rational (data, entry->order); in mnote_apple_entry_get_value()
138 if (!vr.denominator) break; in mnote_apple_entry_get_value()
139 snprintf (v, maxlen, "%2.4f", (double) vr.numerator / in mnote_apple_entry_get_value()
140 vr.denominator); in mnote_apple_entry_get_value()
/third_party/musl/src/string/
H A Dmemcmp.c3 int memcmp(const void *vl, const void *vr, size_t n) in memcmp() argument
5 const unsigned char *l=vl, *r=vr; in memcmp()
/third_party/musl/porting/liteos_m/user/src/string/
H A Dmemcmp.c4 _LIBC_TEXT_SECTION int memcmp(const void *vl, const void *vr, size_t n) in memcmp() argument
6 const unsigned char *l=vl, *r=vr; in memcmp()
/third_party/libunwind/libunwind/tests/
H A Dppc64-test-altivec.c41 unw_fpreg_t vr; in vec_stack() local
72 if ((ret = unw_get_fpreg (&cursor, UNW_PPC64_V30, &vr)) < 0) in vec_stack()
86 vec_half1 = (unsigned int *)&vr; in vec_stack()
/third_party/ffmpeg/libavcodec/x86/
H A Dvp9dsp_init_16bpp.c68 decl_ipred_dir_funcs(vr); variable
111 init_ipred_funcs(vr, VERT_RIGHT, 16, sse2); in ff_vp9dsp_init_16bpp_x86()
120 init_ipred_funcs(vr, VERT_RIGHT, 16, ssse3); in ff_vp9dsp_init_16bpp_x86()
132 init_ipred_funcs(vr, VERT_RIGHT, 16, avx); in ff_vp9dsp_init_16bpp_x86()
H A Dvp9dsp_init.c169 ipred_func(size, vr, opt)
256 init_ipred(sz, opt, vr, VERT_RIGHT); \ in ff_vp9dsp_init_x86()
H A Dvp9intrapred.asm1426 ; vr
/third_party/skia/tests/
H A DOpChainTest.cpp109 for (const auto& vr : op.fValueRanges) { in writeResult()
110 for (unsigned i = 0; i < vr.fRange.fLength; ++i) { in writeResult()
111 result[vr.fRange.fOffset + i] = vr.fValue; in writeResult()
/third_party/musl/porting/liteos_m/user/include/
H A Dusr_lib_ops.h112 int (*memcmp)(const void *vl, const void *vr, size_t n);
/third_party/musl/porting/liteos_m/user/hook/
H A Dlos_usr_libc.c433 int memcmp(const void *vl, const void *vr, size_t n) in memcmp() argument
435 return g_usrLibc->memcmp(vl, vr, n); in memcmp()
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/arborist/
H A Dbuild-ideal-tree.js1106 const vr = new Node({
1121 root: vr,
1126 this.#virtualRoots.set(node, vr)
1127 return vr
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp598 void NVPTXAsmPrinter::emitVirtualRegister(unsigned int vr, in emitVirtualRegister() argument
600 O << getVirtualRegisterName(vr); in emitVirtualRegister()
1654 unsigned int vr = Register::index2VirtReg(i); in setAndEmitFunctionVirtualRegisters() local
1655 const TargetRegisterClass *RC = MRI->getRegClass(vr); in setAndEmitFunctionVirtualRegisters()
1658 regmap.insert(std::make_pair(vr, n + 1)); in setAndEmitFunctionVirtualRegisters()
H A DNVPTXAsmPrinter.h224 void emitVirtualRegister(unsigned int vr, raw_ostream &);
/third_party/skia/third_party/externals/angle2/src/image_util/
H A Dloadimage_etc.cpp1071 int vr, vg, vb; in selectEndPointPCA() local
1078 vr = 299; in selectEndPointPCA()
1089 vr = static_cast<int>(vfr * magn); in selectEndPointPCA()
1107 int dot = pixel.R * vr + pixel.G * vg + pixel.B * vb; in selectEndPointPCA()
/third_party/ffmpeg/libswscale/
H A Dutils.c769 int64_t vr = table[0]; in fill_rgb2yuv_table() local
820 vr = vr * 224 / 255; in fill_rgb2yuv_table()
826 V = ROUNDED_DIV(ONE*ONE*vg, vr); in fill_rgb2yuv_table()
831 Cv = ROUNDED_DIV(vr*Z, ONE); in fill_rgb2yuv_table()
/third_party/ffmpeg/libpostproc/
H A Dpostprocess_altivec_template.c343 const vector signed short vr##j = vec_sra(temps2##i, v_4) in doVertLowPass_altivec()
362 vec_packsu(vr##i, (vector signed short)zero); \ in doVertLowPass_altivec()
378 vec_packsu(vr##i, (vector signed short)zero); \ in doVertLowPass_altivec()
/third_party/skia/third_party/externals/microhttpd/doc/
H A Dtexinfo.tex338 % We don't want .vr (or whatever) entries like this:
1068 \newcodeindex{vr}%
3580 \def\itemindex ##1{\doind {vr}{\code{##1}}}%
6958 \dosubind{vr}{\code{#4}}{#1}%

Completed in 34 milliseconds

12