Home
last modified time | relevance | path

Searched refs:psize (Results 1 – 25 of 33) 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/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/autotest/client/site_tests/platform_PartitionCheck/
Dplatform_PartitionCheck.py82 psize = pblocks * block_size
83 if psize != ROOTFS_SIZE:
85 (p, psize, ROOTFS_SIZE))
/external/mesa3d/src/gallium/drivers/r300/
Dr300_shader_semantics.h38 int psize; member
53 info->psize = ATTR_UNUSED; in r300_shader_semantics_reset()
Dr300_vs.c59 vs_outputs->psize = i; in r300_shader_read_vs_outputs()
126 if (outputs->psize != ATTR_UNUSED) { in set_vertex_inputs_outputs()
127 c->code->outputs[outputs->psize] = reg++; in set_vertex_inputs_outputs()
Dr300_state_derived.c83 if (vs_outputs->psize != ATTR_UNUSED) { in r300_draw_emit_all_attribs()
85 vs_outputs->psize); in r300_draw_emit_all_attribs()
351 if (vs_outputs->psize != ATTR_UNUSED) { in r300_update_rs_block()
/external/opencv3/3rdparty/libtiff/
Dtif_unix.c114 _tiffMapProc(thandle_t fd, void** pbase, toff_t* psize) in _tiffMapProc() argument
122 *psize = (tmsize_t)sizem; in _tiffMapProc()
137 _tiffMapProc(thandle_t fd, void** pbase, toff_t* psize) in _tiffMapProc() argument
139 (void) fd; (void) pbase; (void) psize; in _tiffMapProc()
Dtif_win32.c137 _tiffDummyMapProc(thandle_t fd, void** pbase, toff_t* psize) in _tiffDummyMapProc() argument
141 (void) psize; in _tiffDummyMapProc()
157 _tiffMapProc(thandle_t fd, void** pbase, toff_t* psize) in _tiffMapProc() argument
177 *psize = size; in _tiffMapProc()
Dtiffiop.h222 #define TIFFMapFileContents(tif, paddr, psize) \ argument
223 ((*(tif)->tif_mapproc)((tif)->tif_clientdata,(paddr),(psize)))
Dtif_open.c36 _tiffDummyMapProc(thandle_t fd, void** pbase, toff_t* psize) in _tiffDummyMapProc() argument
38 (void) fd; (void) pbase; (void) psize; in _tiffDummyMapProc()
/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/webp/src/dec/
Dvp8.c206 size_t psize = sz[0] | (sz[1] << 8) | (sz[2] << 16); in ParsePartitions() local
207 if (psize > size_left) psize = size_left; in ParsePartitions()
208 VP8InitBitReader(dec->parts_ + p, part_start, psize); in ParsePartitions()
209 part_start += psize; in ParsePartitions()
210 size_left -= psize; in ParsePartitions()
/external/mesa3d/src/gallium/drivers/nv50/
Dnv50_shader_state.c275 uint32_t color, psize; in nv50_validate_derived_rs() local
287 psize = nv50->state.semantic_psize & ~NV50_3D_SEMANTIC_PTSZ_PTSZ_EN__MASK; in nv50_validate_derived_rs()
300 psize |= NV50_3D_SEMANTIC_PTSZ_PTSZ_EN__MASK; in nv50_validate_derived_rs()
302 if (psize != nv50->state.semantic_psize) { in nv50_validate_derived_rs()
303 nv50->state.semantic_psize = psize; in nv50_validate_derived_rs()
305 PUSH_DATA (push, psize); in nv50_validate_derived_rs()
/external/pdfium/third_party/freetype/include/freetype/internal/services/
Dsvttglyf.h34 FT_ULong *psize );
/external/freetype/include/internal/services/
Dsvttglyf.h34 FT_ULong *psize );
/external/opencv3/3rdparty/libwebp/dec/
Didec.c360 const size_t psize = br->buf_end_ - br->buf_; in CopyParts0Data() local
364 assert(psize > 0); in CopyParts0Data()
365 assert(psize <= mem->part0_size_); // Format limit: no need for runtime check in CopyParts0Data()
368 uint8_t* const part0_buf = (uint8_t*)malloc(psize); in CopyParts0Data()
372 memcpy(part0_buf, br->buf_, psize); in CopyParts0Data()
375 br->buf_end_ = part0_buf + psize; in CopyParts0Data()
379 mem->start_ += psize; in CopyParts0Data()
/external/vboot_reference/utility/include/
Dgbb_utility.h90 bool find_property(PROPINDEX i, uint32_t *poffset, uint32_t *psize,
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_setup_context.h103 float psize; member
/external/chromium-trace/catapult/telemetry/third_party/png/
Dpng.py605 self.psize = (self.bitdepth/8) * self.planes
1475 fu = max(1, self.psize)
1584 row_size = int(math.ceil(self.psize * ppr))
1798 self.psize = float(self.bitdepth)/float(8) * planes
1799 if int(self.psize) == self.psize:
1800 self.psize = int(self.psize)
1801 self.row_bytes = int(math.ceil(self.width * self.psize))
2981 reader.psize = 3
3000 reader.psize = 3
3011 reader.psize = 3
/external/opencv3/modules/viz/src/vtk/
DvtkVizInteractorStyle.cpp142 float psize = apart->GetProperty()->GetPointSize() + delta; in changePointsSize() local
143 psize = std::max(1.f, std::min(63.f, psize)); in changePointsSize()
144 apart->GetProperty()->SetPointSize(psize); in changePointsSize()
/external/vulkan-validation-layers/loader/
Dvk-loader-generate.py180 psize = proto.params[-2].name
185 setup.append("size_t count = *%s / sizeof(*info), i;" % psize)
/external/pdfium/third_party/libtiff/
Dtiffiop.h227 #define TIFFMapFileContents(tif, paddr, psize) \ argument
228 ((*(tif)->tif_mapproc)((tif)->tif_clientdata,(paddr),(psize)))
Dtif_open.c36 _tiffDummyMapProc(thandle_t fd, void** pbase, toff_t* psize) in _tiffDummyMapProc() argument
38 (void) fd; (void) pbase; (void) psize; in _tiffDummyMapProc()

12