Home
last modified time | relevance | path

Searched refs:cursz (Results 1 - 3 of 3) sorted by relevance

/third_party/mesa3d/src/panfrost/midgard/
H A Dmidgard_nir_algebraic.py101 cursz = srcsz variable
109 rule = (op + str(int(cursz)), rule)
110 while cursz != dstsz:
111 cursz = cursz / 2 if dstsz < srcsz else cursz * 2 variable
112 rule = (sizeconvop + str(int(cursz)), rule)
114 rule = (op + str(int(cursz)), rule)
/third_party/skia/third_party/externals/freetype/include/freetype/internal/
H A Dftmemory.h174 #define FT_MEM_REALLOC( ptr, cursz, newsz ) \
177 (FT_Long)(cursz), \
190 #define FT_MEM_QREALLOC( ptr, cursz, newsz ) \
193 (FT_Long)(cursz), \
287 #define FT_MEM_RENEW_ARRAY( ptr, cursz, newsz ) \
290 (FT_Long)(cursz), \
303 #define FT_MEM_QRENEW_ARRAY( ptr, cursz, newsz ) \
306 (FT_Long)(cursz), \
314 #define FT_REALLOC( ptr, cursz, newsz ) \
315 FT_MEM_SET_ERROR( FT_MEM_REALLOC( ptr, cursz, news
[all...]
/third_party/mksh/
H A Dvar.c472 size_t cursz; in setstr() local
474 cursz = strlen(vq->val.s) + 1; in setstr()
477 if (s >= vq->val.s && s < (vq->val.s + cursz)) { in setstr()
484 cursz = 0; in setstr()
488 exportprep(vq, s, cursz); in setstr()
491 vq->val.s = aresizeif(cursz, (vq->flag & ALLOC) ? in setstr()
741 exportprep(struct tbl *vp, const char *val, size_t cursz) in exportprep() argument
750 vp->val.s = aresizeif(cursz, cp, vp->type + vallen, vp->areap); in exportprep()

Completed in 4 milliseconds