Home
last modified time | relevance | path

Searched refs:psz (Results 1 – 17 of 17) sorted by relevance

/external/pdfium/xfa/fde/css/
Dcfde_cssselector.cpp19 int32_t GetCSSNameLen(const FX_WCHAR* psz, const FX_WCHAR* pEnd) { in GetCSSNameLen() argument
20 const FX_WCHAR* pStart = psz; in GetCSSNameLen()
21 while (psz < pEnd) { in GetCSSNameLen()
22 FX_WCHAR wch = *psz; in GetCSSNameLen()
25 ++psz; in GetCSSNameLen()
30 return psz - pStart; in GetCSSNameLen()
36 const FX_WCHAR* psz, in CFDE_CSSSelector() argument
40 m_dwHash(FX_HashCode_GetW(CFX_WideStringC(psz, iLen), bIgnoreCase)) {} in CFDE_CSSSelector()
61 const FX_WCHAR* psz = str.c_str(); in FromString() local
62 const FX_WCHAR* pStart = psz; in FromString()
[all …]
Dcfde_cssvaluelistparser.cpp9 CFDE_CSSValueListParser::CFDE_CSSValueListParser(const FX_WCHAR* psz, in CFDE_CSSValueListParser() argument
12 : m_Separator(separator), m_pCur(psz), m_pEnd(psz + iLen) { in CFDE_CSSValueListParser()
13 ASSERT(psz && iLen > 0); in CFDE_CSSValueListParser()
Dcfde_cssvaluelistparser.h15 CFDE_CSSValueListParser(const FX_WCHAR* psz,
Dcfde_cssselector.h22 const FX_WCHAR* psz,
/external/ltp/testcases/kernel/io/disktest/
DGetopt.c96 char *psz = NULL; in getopt() local
101 psz = &(argv[iArg][0]); in getopt()
102 if (*psz == '-' || *psz == '/') { in getopt()
107 psz = strchr(pszValidOpts, chOpt); in getopt()
108 if (psz != NULL) { in getopt()
110 if (psz[1] == ':') { in getopt()
112 psz = &(argv[iArg][2]); in getopt()
113 if (*psz == '\0') { in getopt()
116 psz = in getopt()
120 if (*psz == '-' in getopt()
[all …]
/external/jemalloc/test/integration/
Drallocx.c117 size_t psz, qsz, i, j; in TEST_BEGIN() local
126 psz = sallocx(p, 0); in TEST_BEGIN()
128 assert_false(validate_fill(p, 0, 0, psz), in TEST_BEGIN()
130 memset(p, FILL_BYTE, psz); in TEST_BEGIN()
131 assert_false(validate_fill(p, FILL_BYTE, 0, psz), in TEST_BEGIN()
138 if (q != p || qsz != psz) { in TEST_BEGIN()
140 psz), "Expected filled memory"); in TEST_BEGIN()
141 assert_false(validate_fill(q, 0, psz, qsz-psz), in TEST_BEGIN()
144 if (psz != qsz) { in TEST_BEGIN()
145 memset((void *)((uintptr_t)q+psz), FILL_BYTE, in TEST_BEGIN()
[all …]
/external/jemalloc/include/jemalloc/internal/
Dsize_classes.sh52 psz="yes"
60 psz="yes"
62 psz="no"
92 … %8d, %6d, %3s, %3s, %2s) \\\n' ${index} ${lg_grp} ${lg_delta} ${ndelta} ${psz} ${bin} ${lg_delta_…
132 if [ ${psz} = "yes" ] ; then
156 if [ ${psz} = "yes" ] ; then
164 if [ ${psz} = "yes" ] ; then
186 if [ ${psz} = "yes" ] ; then
233 * SIZE_CLASSES: Complete table of SC(index, lg_grp, lg_delta, ndelta, psz,
239 * psz: 'yes' if a multiple of the page size, 'no' otherwise.
Djemalloc_internal.h561 pszind_t psz2ind(size_t psz);
565 size_t psz2u(size_t psz);
587 psz2ind(size_t psz) in psz2ind() argument
590 if (unlikely(psz > HUGE_MAXCLASS)) in psz2ind()
593 pszind_t x = lg_floor((psz<<1)-1); in psz2ind()
602 pszind_t mod = ((((psz-1) & delta_inverse_mask) >> lg_delta)) & in psz2ind()
648 psz2u(size_t psz) in psz2u() argument
651 if (unlikely(psz > HUGE_MAXCLASS)) in psz2u()
654 size_t x = lg_floor((psz<<1)-1); in psz2u()
659 size_t usize = (psz + delta_mask) & ~delta_mask; in psz2u()
Djemalloc_internal.h.in561 pszind_t psz2ind(size_t psz);
565 size_t psz2u(size_t psz);
587 psz2ind(size_t psz) argument
590 if (unlikely(psz > HUGE_MAXCLASS))
593 pszind_t x = lg_floor((psz<<1)-1);
602 pszind_t mod = ((((psz-1) & delta_inverse_mask) >> lg_delta)) &
648 psz2u(size_t psz) argument
651 if (unlikely(psz > HUGE_MAXCLASS))
654 size_t x = lg_floor((psz<<1)-1);
659 size_t usize = (psz + delta_mask) & ~delta_mask;
/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_tris.c445 GLfloat psz[4], col[4], restore_psz, restore_alpha; in intel_atten_point() local
447 _tnl_get_attr(ctx, v0, _TNL_ATTRIB_POINTSIZE, psz); in intel_atten_point()
450 restore_psz = psz[0]; in intel_atten_point()
453 if (psz[0] >= ctx->Point.Threshold) { in intel_atten_point()
454 psz[0] = MIN2(psz[0], ctx->Point.MaxSize); in intel_atten_point()
457 GLfloat dsize = psz[0] / ctx->Point.Threshold; in intel_atten_point()
458 psz[0] = MAX2(ctx->Point.Threshold, ctx->Point.MinSize); in intel_atten_point()
462 if (psz[0] < 1.0) in intel_atten_point()
463 psz[0] = 1.0; in intel_atten_point()
465 if (restore_psz != psz[0] || restore_alpha != col[3]) { in intel_atten_point()
[all …]
/external/jemalloc/test/unit/
Dmallctl.c257 size_t sz, psz, qsz; in TEST_BEGIN() local
261 psz = 42; in TEST_BEGIN()
262 qsz = nallocx(psz, 0) + 1; in TEST_BEGIN()
292 ps[i] = mallocx(psz, MALLOCX_TCACHE(tis[i])); in TEST_BEGIN()
306 ps[i] = mallocx(psz, MALLOCX_TCACHE(tis[i])); in TEST_BEGIN()
/external/ltp/testcases/kernel/fs/scsi/ltpscsi/
Dscsimain.c2455 size_t psz = getpagesize(); in do_scsi_device_read_write() local
2456 wrkBuff = malloc(bs * bpt + psz); in do_scsi_device_read_write()
2461 wrkPos = (unsigned char *)(((unsigned long)wrkBuff + psz - 1) & in do_scsi_device_read_write()
2462 (~(psz - 1))); in do_scsi_device_read_write()
3849 size_t psz = getpagesize(); in do_scsi_read_buffer() local
3941 if (do_mmap && (0 != (k % psz))) in do_scsi_read_buffer()
3942 k = ((k / psz) + 1) * psz; /* round up to page size */ in do_scsi_read_buffer()
3960 rawp = malloc(buf_size + (do_dio ? psz : 0)); in do_scsi_read_buffer()
3967 (unsigned char *)(((unsigned long)rawp + psz - 1) & in do_scsi_read_buffer()
3968 (~(psz - 1))); in do_scsi_read_buffer()
[all …]
/external/lzma/CPP/Common/
DMyWindows.h194 MY_EXTERN_C BSTR SysAllocStringByteLen(LPCSTR psz, UINT len);
/external/pdfium/xfa/fxfa/app/
Dcxfa_textlayout.cpp936 FX_WCHAR* psz = wsText.GetBuffer(iLen); in ProcessText() local
940 wch = psz[i]; in ProcessText()
947 psz[iTrimLeft++] = wch; in ProcessText()
/external/jemalloc/src/
Djemalloc.c97 #define SC(index, lg_grp, lg_delta, ndelta, psz, bin, lg_delta_lookup) \ argument
98 PSZ_##psz(lg_grp, ndelta, lg_delta)
107 #define SC(index, lg_grp, lg_delta, ndelta, psz, bin, lg_delta_lookup) \ argument
179 #define SC(index, lg_grp, lg_delta, ndelta, psz, bin, lg_delta_lookup) \ argument
Darena.c3750 #define SC(index, lg_grp, lg_delta, ndelta, psz, bin, lg_delta_lookup) \ in bin_info_init() argument
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encoder.c2224 const size_t psz = cpi->common.MBs * sizeof(uint8_t); in vp9_create_compressor() local
2225 const int ps = (int)(oxcf->firstpass_mb_stats_in.sz / psz); in vp9_create_compressor()