Home
last modified time | relevance | path

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

12

/external/mesa3d/src/mesa/math/
Dm_debug_xform.c168 static int test_transform_function( transform_func func, int psize, in test_transform_function() argument
181 if ( psize > 4 ) { in test_transform_function()
218 for ( j = 0 ; j < psize ; j++ ) in test_transform_function()
282 int psize, mtype; in _math_test_all_transform_functions() local
304 for ( psize = 1 ; psize <= 4 ; psize++ ) { in _math_test_all_transform_functions()
305 printf(" p%d\t", psize ); in _math_test_all_transform_functions()
312 for ( psize = 1 ; psize <= 4 ; psize++ ) { in _math_test_all_transform_functions()
313 transform_func func = _mesa_transform_tab[psize][mtypes[mtype]]; in _math_test_all_transform_functions()
314 unsigned long *cycles = &(benchmark_tab[psize-1][mtype]); in _math_test_all_transform_functions()
316 if ( test_transform_function( func, psize, mtype, cycles ) == 0 ) { in _math_test_all_transform_functions()
[all …]
Dm_debug_clip.c230 int psize, long *cycles ) in test_cliptest_function() argument
243 if ( psize > 4 ) { in test_cliptest_function()
251 for ( j = 0 ; j < psize ; j++ ) in test_cliptest_function()
279 ref_cliptest[psize]( source, ref, rm, &rco, &rca, viewport_z_clip ); in test_cliptest_function()
304 if (psize == 4 && xyz_close_to_w(c)) { in test_cliptest_function()
321 if ( np || psize < 4 ) in test_cliptest_function()
352 int np, psize; in _math_test_all_cliptest_functions() local
374 for ( psize = 2 ; psize <= 4 ; psize++ ) { in _math_test_all_cliptest_functions()
375 printf( " p%d\t", psize ); in _math_test_all_cliptest_functions()
382 for ( psize = 2 ; psize <= 4 ; psize++ ) { in _math_test_all_cliptest_functions()
[all …]
/external/u-boot/drivers/mtd/onenand/
Donenand_spl.c134 static int psize; in onenand_spl_read_block() local
136 if (!psize) in onenand_spl_read_block()
137 psize = onenand_spl_get_geometry(); in onenand_spl_read_block()
140 page = offset / psize; in onenand_spl_read_block()
142 offset = offset % psize; in onenand_spl_read_block()
149 if (offset || len < psize) { in onenand_spl_read_block()
151 (uint32_t *)scratch_buf, psize); in onenand_spl_read_block()
152 read = min(len, psize - offset); in onenand_spl_read_block()
156 onenand_spl_read_page(block, page, dst, psize); in onenand_spl_read_block()
157 read = psize; in onenand_spl_read_block()
/external/u-boot/fs/jffs2/
Dmergesort.c16 int k, psize, qsize; in sort_list() local
25 for (psize = 0; q && psize < k; psize++) in sort_list()
30 while (psize || (qsize && q)) { in sort_list()
32 if (psize == 0 || in sort_list()
42 psize--; in sort_list()
/external/autotest/client/site_tests/platform_PartitionCheck/
Dplatform_PartitionCheck.py45 psize = pblocks * 512;
46 if psize != ROOTFS_SIZE_2G and psize != ROOTFS_SIZE_4G:
48 (p, psize, ROOTFS_SIZE_2G, ROOTFS_SIZE_4G))
/external/dlmalloc/
Dmalloc.c3113 size_t psize; in init_mparams() local
3120 psize = malloc_getpagesize; in init_mparams()
3121 gsize = ((DEFAULT_GRANULARITY != 0)? DEFAULT_GRANULARITY : psize); in init_mparams()
3126 psize = system_info.dwPageSize; in init_mparams()
3145 ((psize & (psize-SIZE_T_ONE)) != 0)) in init_mparams()
3148 mparams.page_size = psize; in init_mparams()
3853 size_t psize = mmsize - offset - MMAP_FOOT_PAD; in mmap_alloc() local
3856 p->head = psize; in mmap_alloc()
3857 mark_inuse_foot(m, p, psize); in mmap_alloc()
3858 chunk_plus_offset(p, psize)->head = FENCEPOST_HEAD; in mmap_alloc()
[all …]
/external/vboot_reference/utility/
Dvbutil_what_keys111 psize=$(cgpt show -s -i "$pnum" "$file")
112 if [ "$psize" -ge 128 ]; then
138 psize=$(cgpt show -s -i "$pnum" "$file")
139 if [ "$psize" -ge 128 ]; then
/external/python/cpython2/Modules/_ctypes/libffi/src/
Ddlmalloc.c3226 size_t psize = mmsize - offset - MMAP_FOOT_PAD; in mmap_alloc() local
3229 (p)->head = (psize|CINUSE_BIT); in mmap_alloc()
3230 mark_inuse_foot(m, p, psize); in mmap_alloc()
3231 chunk_plus_offset(p, psize)->head = FENCEPOST_HEAD; in mmap_alloc()
3232 chunk_plus_offset(p, psize+SIZE_T_SIZE)->head = 0; in mmap_alloc()
3264 size_t psize = newmmsize - offset - MMAP_FOOT_PAD; in mmap_resize() local
3265 newp->head = (psize|CINUSE_BIT); in mmap_resize()
3266 mark_inuse_foot(m, newp, psize); in mmap_resize()
3267 chunk_plus_offset(newp, psize)->head = FENCEPOST_HEAD; in mmap_resize()
3268 chunk_plus_offset(newp, psize+SIZE_T_SIZE)->head = 0; in mmap_resize()
[all …]
/external/libffi/src/
Ddlmalloc.c3221 size_t psize = mmsize - offset - MMAP_FOOT_PAD; in mmap_alloc() local
3224 (p)->head = (psize|CINUSE_BIT); in mmap_alloc()
3225 mark_inuse_foot(m, p, psize); in mmap_alloc()
3226 chunk_plus_offset(p, psize)->head = FENCEPOST_HEAD; in mmap_alloc()
3227 chunk_plus_offset(p, psize+SIZE_T_SIZE)->head = 0; in mmap_alloc()
3259 size_t psize = newmmsize - offset - MMAP_FOOT_PAD; in mmap_resize() local
3260 newp->head = (psize|CINUSE_BIT); in mmap_resize()
3261 mark_inuse_foot(m, newp, psize); in mmap_resize()
3262 chunk_plus_offset(newp, psize)->head = FENCEPOST_HEAD; in mmap_resize()
3263 chunk_plus_offset(newp, psize+SIZE_T_SIZE)->head = 0; in mmap_resize()
[all …]
/external/python/cpython2/Modules/
Dbsddbmodule.c103 int minkeypage, int psize, int lorder) in newdbbtobject() argument
115 info.psize = psize; in newdbbtobject()
152 int rnflags, int cachesize, int psize, int lorder, in newdbrnobject() argument
164 info.psize = psize; in newdbrnobject()
740 unsigned int psize = 0; in bsdbtopen() local
746 &psize, &lorder)) in bsdbtopen()
778 psize, lorder); in bsdbtopen()
790 unsigned int psize = 0; in bsdrnopen() local
798 &rnflags, &cachesize, &psize, &lorder, in bsdrnopen()
836 psize, lorder, reclen, bval[0], bfname); in bsdrnopen()
/external/ltp/testcases/network/tcp_cmds/ping/
Dping02.sh40 for psize in $PACKETSIZES; do
41 EXPECT_PASS $PING -c $COUNT -f -s $psize $ipaddr -p "$pat" \>/dev/null
/external/u-boot/drivers/core/
Dof_addr.c128 int psize; in of_get_address() local
145 prop = of_get_property(dev, "reg", &psize); in of_get_address()
148 psize /= 4; in of_get_address()
151 for (i = 0; psize >= onesize; psize -= onesize, prop += onesize, i++) in of_get_address()
Dofnode.c505 int psize; in ofnode_get_addr_size() local
507 const __be32 *prop = of_get_property(np, property, &psize); in ofnode_get_addr_size()
527 int psize; in ofnode_read_u8_array_ptr() local
528 const __be32 *prop = of_get_property(np, propname, &psize); in ofnode_read_u8_array_ptr()
530 if (!prop || sz != psize) in ofnode_read_u8_array_ptr()
/external/strace/tests-m32/
Dsched_xetattr.c72 TAIL_ALLOC_OBJECT_CONST_PTR(unsigned int, psize); in main()
172 *psize = attr->size; in main()
174 sys_sched_setattr(0, (unsigned long) psize, 0); in main()
175 printf("sched_setattr(0, %p, 0) = %s\n", psize, errstr); in main()
/external/strace/tests-mx32/
Dsched_xetattr.c72 TAIL_ALLOC_OBJECT_CONST_PTR(unsigned int, psize); in main()
172 *psize = attr->size; in main()
174 sys_sched_setattr(0, (unsigned long) psize, 0); in main()
175 printf("sched_setattr(0, %p, 0) = %s\n", psize, errstr); in main()
/external/strace/tests/
Dsched_xetattr.c72 TAIL_ALLOC_OBJECT_CONST_PTR(unsigned int, psize); in main()
172 *psize = attr->size; in main()
174 sys_sched_setattr(0, (unsigned long) psize, 0); in main()
175 printf("sched_setattr(0, %p, 0) = %s\n", psize, errstr); in main()
/external/iputils/
Drarpd.c566 int psize; in main() local
611 psize = 1; in main()
630 psize = 1; in main()
643 psize = 1; in main()
659 psize--; in main()
661 if (psize == 0) { in main()
711 i = poll(pset, psize, -1); in main()
719 for (i=0; i<psize; i++) { in main()
/external/mesa3d/src/gallium/drivers/r300/
Dr300_shader_semantics.h38 int psize; member
55 info->psize = ATTR_UNUSED; in r300_shader_semantics_reset()
Dr300_vs.c59 vs_outputs->psize = i; in r300_shader_read_vs_outputs()
127 if (outputs->psize != ATTR_UNUSED) { in set_vertex_inputs_outputs()
128 c->code->outputs[outputs->psize] = reg++; in set_vertex_inputs_outputs()
/external/ltp/testcases/kernel/fs/fs_maim/
Dmaimparts61 $psize = int($Cyl/$parts);
67 printf(CONFIG ",%d,%x\n",$psize,$fsid); # write the lines in cfg
/external/python/cpython2/Doc/library/
Dimageop.rst25 .. function:: crop(image, psize, width, height, x0, y0, x1, y1)
28 and consist of pixels of *psize* bytes. *x0*, *y0*, *x1* and *y1* are like the
35 .. function:: scale(image, psize, width, height, newwidth, newheight)
42 .. function:: tovideo(image, psize, width, height)
/external/tensorflow/tensorflow/core/kernels/
Dpooling_ops_3d.cc225 int pindex, psize; in launch() local
231 padding[0], &pindex, &psize)); in launch()
246 {pindex, psize}, in launch()
258 Eigen::array<int, 5> bcast = {1, csize, rsize, psize, 1}; in launch()
265 bcast.set(3, psize); in launch()
403 int pindex, psize; in launch() local
406 padding[0], &pindex, &psize)); in launch()
421 {pindex, psize}, in launch()
431 Eigen::array<int, 5> bcast = {1, csize, rsize, psize, 1}; in launch()
438 bcast.set(3, psize); in launch()
[all …]
/external/u-boot/board/freescale/qemu-ppce500/
Dqemu-ppce500.c82 pci_size_t *psize, ulong *pmap_addr) in pci_map_region() argument
95 if (psize) in pci_map_region()
96 *psize = size; in pci_map_region()
/external/webp/src/dec/
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()
/external/python/cpython3/Modules/_ctypes/
Dctypes.h109 extern int PyType_stginfo(PyTypeObject *self, Py_ssize_t *psize, Py_ssize_t *palign, Py_ssize_t *pl…
110 extern int PyObject_stginfo(PyObject *self, Py_ssize_t *psize, Py_ssize_t *palign, Py_ssize_t *plen…
130 Py_ssize_t *psize, Py_ssize_t *poffset, Py_ssize_t *palign,

12