Home
last modified time | relevance | path

Searched refs:tsize (Results 1 - 19 of 19) sorted by relevance

/third_party/skia/modules/skottie/src/
H A DSkottieTest.cpp468 for (const auto& tsize : kTestSizes) { in DEF_TEST()
472 tsize.text_size, in DEF_TEST()
473 0, tsize.text_size, in DEF_TEST()
474 tsize.text_size, in DEF_TEST()
496 std::fabs(shape_bounds.left() - expected_l) < tsize.tolerance, in DEF_TEST()
497 "%f %f %f %f %d", shape_bounds.left(), expected_l, tsize.tolerance, in DEF_TEST()
498 tsize.text_size, talign.align); in DEF_TEST()
502 std::fabs(shape_bounds.right() - expected_r) < tsize.tolerance, in DEF_TEST()
503 "%f %f %f %f %d", shape_bounds.right(), expected_r, tsize.tolerance, in DEF_TEST()
504 tsize in DEF_TEST()
[all...]
/third_party/toybox/toys/pending/
H A Dtftpd.c104 socklen_t socklen, char *file, int opcode, int tsize, int blksize) in do_action()
130 if (blksize != TFTPD_BLKSIZE || tsize) { in do_action()
138 if (tsize) {// add "tsize\000tsize_val\000" in send buffer. in do_action()
143 strcpy(ptr, "tsize"); in do_action()
144 ptr += strlen("tsize") + 1; in do_action()
254 int fd = 0, recvmsg_len, opcode, blksize = TFTPD_BLKSIZE, tsize = 0, set =1, bflag = 0; in tftpd_main() local
313 } else if (!tsize && !strcasecmp(opt, "tsize")) tsize in tftpd_main()
103 do_action(struct sockaddr *srcaddr, struct sockaddr *dstaddr, socklen_t socklen, char *file, int opcode, int tsize, int blksize) do_action() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Dfic.c278 int tsize; in fic_decode_frame() local
315 tsize = AV_RB24(src + 24); in fic_decode_frame()
316 if (tsize > avpkt->size - FIC_HEADER_SIZE) { in fic_decode_frame()
319 tsize, avpkt->size - FIC_HEADER_SIZE); in fic_decode_frame()
323 if (!tsize || !AV_RL16(src + 37) || !AV_RL16(src + 39)) in fic_decode_frame()
326 if (!skip_cursor && tsize < 32) { in fic_decode_frame()
358 sdata = src + tsize + FIC_HEADER_SIZE + 4 * nslices; in fic_decode_frame()
359 msize = avpkt->size - nslices * 4 - tsize - FIC_HEADER_SIZE; in fic_decode_frame()
376 unsigned slice_off = AV_RB32(src + tsize + FIC_HEADER_SIZE + slice * 4); in fic_decode_frame()
389 slice_size = AV_RB32(src + tsize in fic_decode_frame()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DcontrolFlowCaching.js25 tsize = taTitleFont ? g.normalizedLength(g.splitFontString(taTitleFont).size) : 0;
33 tsize + taTitleGap;
53 titlePos.y = offsets.t - titleOffset + (titleRotation ? 0 : tsize);
75 var o = this.opt, ta = this.chart.theme.axis, position = o.position, leftBottom = position !== "rightOrTop", rotation = o.rotation % 360, start, stop, titlePos, titleRotation = 0, titleOffset, axisVector, tickVector, anchorOffset, labelOffset, labelAlign, labelGap = this.chart.theme.axis.tick.labelGap, taFont = o.font || (ta.majorTick && ta.majorTick.font) || (ta.tick && ta.tick.font), taTitleFont = o.titleFont || (ta.title && ta.title.font), taFontColor = o.fontColor || (ta.majorTick && ta.majorTick.fontColor) || (ta.tick && ta.tick.fontColor) || "black", taTitleFontColor = o.titleFontColor || (ta.title && ta.title.fontColor) || "black", taTitleGap = (o.titleGap == 0) ? 0 : o.titleGap || (ta.title && ta.title.gap) || 15, taTitleOrientation = o.titleOrientation || (ta.title && ta.title.orientation) || "axis", taMajorTick = this.chart.theme.getTick("major", o), taMinorTick = this.chart.theme.getTick("minor", o), taMicroTick = this.chart.theme.getTick("micro", o), taStroke = "stroke" in o ? o.stroke : ta.stroke, size = taFont ? g.normalizedLength(g.splitFontString(taFont).size) : 0, cosr = Math.abs(Math.cos(rotation * Math.PI / 180)), sinr = Math.abs(Math.sin(rotation * Math.PI / 180)), tsize = taTitleFont ? g.normalizedLength(g.splitFontString(taTitleFont).size) : 0;
82 tsize + taTitleGap;
106 titlePos.y = offsets.t - titleOffset + (titleRotation ? 0 : tsize);
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/truetype/
H A DCompositeGlyph.java131 int tsize = transformationSize(contour); in transformation()
132 byte[] transformation = new byte[tsize]; in transformation()
133 this.data.readBytes(index, transformation, 0, tsize); in transformation()
/third_party/mesa3d/src/panfrost/bifrost/valhall/
H A Dvalhall.py275 tsize = typesize(name)
280 built = build_source(src, i, tsize)
285 if tsize != 64 and built.size == 64:
293 sources = sources + ([Source(i, int(tsize)) for i in range(int(el.attrib.get('srcs', 0)))])
/third_party/elfutils/libdw/
H A DlibdwP.h591 #define libdw_alloc(dbg, type, tsize, cnt) \
593 size_t _required = (tsize) * (cnt); \
612 #define libdw_unalloc(dbg, type, tsize, cnt) \
614 size_t _required = (tsize) * (cnt); \
/third_party/vixl/src/aarch64/
H A Dinstructions-aarch64.cc640 Instr tsize = in GetSVEImmShiftAndLaneSizeLog2() local
644 if (tsize == 0) { in GetSVEImmShiftAndLaneSizeLog2()
645 // The bit field `tsize` means undefined if it is zero, so return a in GetSVEImmShiftAndLaneSizeLog2()
650 int lane_size_in_bytes_log_2 = 32 - CountLeadingZeros(tsize, 32) - 1; in GetSVEImmShiftAndLaneSizeLog2()
652 int shift = (2 * esize) - ((tsize << 3) | imm_3); in GetSVEImmShiftAndLaneSizeLog2()
H A Ddisasm-aarch64.cc3850 unsigned tsize = (instr->ExtractBits(23, 22) << 2) | instr->ExtractBits(9, 8); in Disassembler() local
3852 if (tsize == 0) { in Disassembler()
5098 unsigned tsize = in Disassembler() local
5113 if (tsize != 0) { in Disassembler()
5122 if (tsize != 0) { in Disassembler()
5944 unsigned tsize = in Disassembler() local
5947 if (tsize == 0) { in Disassembler()
/third_party/curl/lib/
H A Dtftp.c76 #define TFTP_OPTION_TSIZE "tsize"
364 long tsize = 0; in tftp_parse_option_ack() local
366 tsize = strtol(value, NULL, 10); in tftp_parse_option_ack()
367 infof(data, "%s (%ld)", "tsize parsed from OACK", tsize); in tftp_parse_option_ack()
369 /* tsize should be ignored on upload: Who cares about the size of the in tftp_parse_option_ack()
372 if(!tsize) { in tftp_parse_option_ack()
373 failf(data, "invalid tsize -:%s:- value in OACK packet", value); in tftp_parse_option_ack()
376 Curl_pgrsSetDownloadSize(data, tsize); in tftp_parse_option_ack()
486 /* add tsize optio in tftp_send_first()
[all...]
/third_party/python/Tools/gdb/
H A Dlibpython.py482 tsize = int_from_int(self._gdbval.cast(type_PyVarObject_ptr)['ob_size'])
483 if tsize < 0:
484 tsize = -tsize
485 size = _PyObject_VAR_SIZE(typeobj, tsize)
/third_party/python/Objects/
H A Dobject.c1074 Py_ssize_t tsize = Py_SIZE(obj); in _PyObject_DictPointer() local
1075 if (tsize < 0) { in _PyObject_DictPointer()
1076 tsize = -tsize; in _PyObject_DictPointer()
1078 size_t size = _PyObject_VAR_SIZE(tp, tsize); in _PyObject_DictPointer()
/third_party/libbpf/include/uapi/linux/
H A Dpkt_sched.h109 unsigned int tsize; member
/third_party/python/Modules/_decimal/
H A D_decimal.c2464 Py_ssize_t i, mem, tsize; in dectuple_as_str() local
2536 tsize = PyTuple_Size(digits); in dectuple_as_str()
2538 mem = 1 + tsize + 3 + MPD_EXPDIGITS + 2; in dectuple_as_str()
2553 if (tsize == 0 && sign_special[1] == '\0') { in dectuple_as_str()
2557 for (i = 0; i < tsize; i++) { in dectuple_as_str()
/third_party/skia/third_party/externals/expat/expat/lib/
H A Dxmlparse.c7021 size_t tsize; in lookup() local
7027 tsize = table->size * sizeof(NAMED *); in lookup()
7028 table->v = (NAMED **)table->mem->malloc_fcn(tsize); in lookup()
7033 memset(table->v, 0, tsize); in lookup()
7067 size_t tsize = newSize * sizeof(NAMED *); in lookup() local
7068 NAMED **newV = (NAMED **)table->mem->malloc_fcn(tsize); in lookup()
7071 memset(newV, 0, tsize); in lookup()
/third_party/python/Modules/expat/
H A Dxmlparse.c7043 size_t tsize; in lookup() local
7049 tsize = table->size * sizeof(NAMED *); in lookup()
7050 table->v = table->mem->malloc_fcn(tsize); in lookup()
7055 memset(table->v, 0, tsize); in lookup()
7089 size_t tsize = newSize * sizeof(NAMED *); in lookup() local
7090 NAMED **newV = table->mem->malloc_fcn(tsize); in lookup()
7093 memset(newV, 0, tsize); in lookup()
/third_party/python/Modules/_ctypes/
H A D_ctypes.c3926 Py_ssize_t tsize = PyTuple_GET_SIZE(item); in _build_callargs() local
3928 name = tsize > 1 ? PyTuple_GET_ITEM(item, 1) : NULL; in _build_callargs()
3929 defval = tsize > 2 ? PyTuple_GET_ITEM(item, 2) : NULL; in _build_callargs()
/third_party/python/Lib/test/
H A Dtest_buffer.py2763 tsize = struct.calcsize(tfmt)
2764 n = prod(_tshape) * tsize
2774 titems, tshape = cast_items(ex, tfmt, tsize, shape=tshape)
2790 itemsize=tsize, fmt=tfmt, readonly=True,
/third_party/skia/third_party/externals/sfntly/java/lib/
H A Dicu4j-4_8_1_1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ibm/icu/ com/ibm/icu/impl/ ...

Completed in 73 milliseconds