Home
last modified time | relevance | path

Searched refs:psize (Results 1 – 21 of 21) sorted by relevance

/AliOS-Things-master/components/SDL2/src/gfx/Test/
A DTestGfxTexture.c64 int psize = NUM_POINTS; in Draw() local
114 for (i=2; i < psize -2 ; i++){ in Draw()
115 polygon_x[i]= (screen->w * (i-2)) / (psize -5) ; in Draw()
119 polygon_x[psize-2]= screen->w; in Draw()
120 polygon_y[psize-2]= height_half; in Draw()
121 polygon_x[psize-1]= screen->w; in Draw()
122 polygon_y[psize-1]= screen->h; in Draw()
139 …texturedPolygon(screen,polygon_x,polygon_y,psize,texture, -(screen->w * (Sint16)(sin_start-2)) / … in Draw()
/AliOS-Things-master/components/SDL2/src/stdlib/
A DSDL_malloc.c3301 mark_inuse_foot(m, p, psize); in mmap_alloc()
3363 psize -= offset; in init_top()
3366 m->topsize = psize; in init_top()
3367 p->head = psize | PINUSE_BIT; in init_top()
3414 size_t qsize = psize - nb; in prepend_alloc()
3494 size_t psize = csp - old_top; in add_segment() local
3496 set_free_with_pinuse(q, psize, tn); in add_segment()
3497 insert_chunk(m, q, psize); in add_segment()
3718 size_t psize = chunksize(p); in release_unused_segments() local
4385 psize += prevsize; in dlfree()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/
A Dtif_unix.c163 _tiffMapProc(thandle_t fd, void** pbase, toff_t* psize) in _tiffMapProc() argument
173 *psize = (tmsize_t)sizem; in _tiffMapProc()
188 _tiffMapProc(thandle_t fd, void** pbase, toff_t* psize) in _tiffMapProc() argument
190 (void) fd; (void) pbase; (void) psize; in _tiffMapProc()
A Dtif_win32.c162 _tiffDummyMapProc(thandle_t fd, void** pbase, toff_t* psize) in _tiffDummyMapProc() argument
166 (void) psize; in _tiffDummyMapProc()
182 _tiffMapProc(thandle_t fd, void** pbase, toff_t* psize) in _tiffMapProc() argument
202 *psize = size; in _tiffMapProc()
A Dtif_open.c36 _tiffDummyMapProc(thandle_t fd, void** pbase, toff_t* psize) in _tiffDummyMapProc() argument
38 (void) fd; (void) pbase; (void) psize; in _tiffDummyMapProc()
A Dtiffiop.h228 #define TIFFMapFileContents(tif, paddr, psize) \ argument
229 ((*(tif)->tif_mapproc)((tif)->tif_clientdata,(paddr),(psize)))
/AliOS-Things-master/components/py_engine/adapter/haas/
A Dmodipc.c95 void *psize = mp_obj_get_int(args[3]);
97 mp_int_t ret = krhino_buf_queue_recv(ipc_obj->queue, tick , msg, psize);
/AliOS-Things-master/components/py_engine/adapter/haas510/
A Dmodipc.c95 void *psize = mp_obj_get_int(args[3]);
97 mp_int_t ret = krhino_buf_queue_recv(ipc_obj->queue, tick , msg, psize);
/AliOS-Things-master/components/py_engine/adapter/haas600/
A Dmodipc.c95 void *psize = mp_obj_get_int(args[3]);
97 mp_int_t ret = krhino_buf_queue_recv(ipc_obj->queue, tick , msg, psize);
/AliOS-Things-master/components/freetype/include/internal/services/
A Dsvttglyf.h33 FT_ULong *psize );
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dec/
A Dvp8_dec.c217 size_t psize = sz[0] | (sz[1] << 8) | (sz[2] << 16); in ParsePartitions() local
218 if (psize > size_left) psize = size_left; in ParsePartitions()
219 VP8InitBitReader(dec->parts_ + p, part_start, psize); in ParsePartitions()
220 part_start += psize; in ParsePartitions()
221 size_left -= psize; in ParsePartitions()
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/stream/
A Dtiffstream.h37 static int map(thandle_t fd, tdata_t* phase, toff_t* psize);
A Dtiffstream.cpp155 TiffStream::map(thandle_t fd, tdata_t* phase, toff_t* psize) in map() argument
/AliOS-Things-master/components/SDL2/src/image/
A DIMG_tif.c112 static int tiff_map(thandle_t fd, tdata_t* pbase, toff_t* psize) in tiff_map() argument
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/examples/
A Dwebpinfo.c406 const size_t psize = in ParseLossyHeader() local
408 if (psize > part_data_size) { in ParseLossyHeader()
412 printf(" Part. %d length: %d\n", i, (int)psize); in ParseLossyHeader()
413 part_data_size -= psize; in ParseLossyHeader()
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dquickjs.h814 uint8_t *JS_GetArrayBuffer(JSContext *ctx, size_t *psize, JSValueConst obj);
876 uint8_t *JS_WriteObject(JSContext *ctx, size_t *psize, JSValueConst obj,
878 uint8_t *JS_WriteObject2(JSContext *ctx, size_t *psize, JSValueConst obj,
A Dunicode_gen.c102 void add_char(int **pbuf, int *psize, int *plen, int c) in add_char() argument
106 size = *psize; in add_char()
109 size = *psize; in add_char()
113 *psize = size; in add_char()
A Dquickjs.c1410 new_size = max_int(req_size, *psize * 3 / 2); in js_realloc_array()
1415 *psize = new_size; in js_realloc_array()
1422 int* psize, int req_size) in js_resize_array() argument
1424 if (unlikely(req_size > *psize)) in js_resize_array()
20454 size = *psize; in ident_realloc()
20470 *psize = new_size; in ident_realloc()
34117 *psize = s->dbuf.size; in JS_WriteObject2()
34128 *psize = 0; in JS_WriteObject2()
34139 return JS_WriteObject2(ctx, psize, obj, flags, NULL, NULL); in JS_WriteObject()
50627 *psize = abuf->byte_length; in JS_GetArrayBuffer()
[all …]
/AliOS-Things-master/components/py_engine/engine/extmod/
A Dmodbtree.c359 openinfo.psize = args.pagesize.u_int; in mod_btree_open()
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/swig/
A Dlibwebp_python_wrap.c2981 SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc) in SWIG_AsCharPtrAndSize() argument
3035 if (psize) *psize = len + 1; in SWIG_AsCharPtrAndSize()
3046 if (psize) *psize = vptr ? (strlen((char *)vptr) + 1) : 0; in SWIG_AsCharPtrAndSize()
/AliOS-Things-master/hardware/chip/rtl872xd/bin/
A Dkm0_boot_all_2nd.bin131 ���oaddr:0x%lx paddr:0x%lx num:%d noff:%lx nsize:%lx poff:%lx psize:%ld status:%d

Completed in 146 milliseconds