Searched defs:slice (Results 1 - 25 of 124) sorted by last modified time

12345

/external/valgrind/main/include/vki/
H A Dvki-xen-domctl.h245 vki_xen_uint64_aligned_t slice; member in struct:vki_xen_domctl_scheduler_op::__anon32987::xen_domctl_sched_sedf
/external/sfntly/cpp/src/sfntly/data/
H A Dreadable_font_data.cc266 FontDataPtr slice = new ReadableFontData(this, offset, length); local
267 return slice.Detach();
278 FontDataPtr slice = new ReadableFontData(this, offset); local
279 return slice.Detach();
H A Dwritable_font_data.cc175 FontDataPtr slice = new WritableFontData(this, offset, length); local
176 return slice.Detach();
187 FontDataPtr slice = new WritableFontData(this, offset); local
188 return slice.Detach();
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Debdt_table.cc110 WritableFontDataPtr slice; local
111 slice.Attach(down_cast<WritableFontData*>(new_data->Slice(size)));
112 size += glyph_entry->second->SubSerialize(slice);
223 ReadableFontDataPtr slice; local
224 slice.Attach(down_cast<ReadableFontData*>(data->Slice(
228 slice, info->format()));
H A Dindex_sub_table_format2.cc33 ReadableFontDataPtr slice; local
34 slice.Attach(down_cast<ReadableFontData*>(
37 BigGlyphMetricsPtr output = new BigGlyphMetrics(slice);
202 WritableFontDataPtr slice; local
205 slice.Attach(down_cast<WritableFontData*>(new_data->Slice(size)));
206 size += metrics_->SubSerialize(slice);
H A Dindex_sub_table_format5.cc214 WritableFontDataPtr slice; local
215 slice.Attach(down_cast<WritableFontData*>(new_data->Slice(size)));
216 size += BigMetrics()->SubSerialize(slice);
/external/sfntly/cpp/src/sfntly/table/core/
H A Dcmap_table.cc1144 FontDataPtr slice; local
1145 slice.Attach(new_data->Slice(size));
1146 size += b->SubSerialize(down_cast<WritableFontData*>(slice.p_));
/external/sfntly/cpp/src/test/
H A Dfont_data_test.cc260 ReadableFontDataPtr slice; local
261 slice.Attach(down_cast<ReadableFontData*>(rfd->Slice(trim, length)));
262 EXPECT_TRUE(ReadComparison(trim, length, rfd, slice));
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/opencv/cv/src/
H A Dcvapprox.cpp523 CvSlice slice = {0, 0}, right_slice = {0, 0}; local
557 slice.start_index = 0;
558 slice.end_index = count - 1;
559 cvSeqPush( stack, &slice );
602 slice.start_index = cvGetSeqReaderPos( &reader );
603 slice.end_index = right_slice.start_index += slice.start_index;
606 right_slice.end_index = slice.start_index;
611 cvSeqPush( stack, &slice );
620 cvSeqPop( stack, &slice );
727 CvSlice slice = {0, 0}, right_slice = {0, 0}; local
[all...]
H A Dcvshapedescr.cpp45 cvArcLength( const void *array, CvSlice slice, int is_closed ) argument
83 cvSetSeqReaderPos( &reader, slice.start_index );
84 count = cvSliceLength( slice, contour );
558 static CvStatus icvContourSecArea( CvSeq * contour, CvSlice slice, double *area ) argument
580 lpt = cvSliceLength( slice, contour );
601 cvSetSeqReaderPos( &reader, slice.start_index );
604 cvSetSeqReaderPos( &reader, slice.end_index );
610 cvSetSeqReaderPos( &reader, slice.start_index );
728 cvContourArea( const void *array, CvSlice slice )
752 if( cvSliceLength( slice, contou
[all...]
/external/opencv/cxcore/include/
H A Dcxtypes.h1098 CvSlice slice; local
1099 slice.start_index = start;
1100 slice.end_index = end;
1102 return slice;
/external/opencv/cxcore/src/
H A Dcxdatastructs.cpp609 cvSliceLength( CvSlice slice, const CvSeq* seq ) argument
612 int length = slice.end_index - slice.start_index;
616 if( slice.start_index < 0 )
617 slice.start_index += total;
618 if( slice.end_index <= 0 )
619 slice.end_index += total;
621 length = slice.end_index - slice.start_index;
639 cvCvtSeqToArray( const CvSeq *seq, void *array, CvSlice slice )
1841 cvSeqSlice( const CvSeq* seq, CvSlice slice, CvMemStorage* storage, int copy_data ) argument
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_texture.c170 GLuint slice, GLuint x, GLuint y, GLuint w, GLuint h,
187 map = st_texture_image_map(st, stImage, slice, pipeMode, x, y, w, h);
203 GLuint slice)
168 st_MapTextureImage(struct gl_context *ctx, struct gl_texture_image *texImage, GLuint slice, GLuint x, GLuint y, GLuint w, GLuint h, GLbitfield mode, GLubyte **mapOut, GLint *rowStrideOut) argument
201 st_UnmapTextureImage(struct gl_context *ctx, struct gl_texture_image *texImage, GLuint slice) argument
/external/mesa3d/src/mesa/swrast/
H A Ds_renderbuffer.c569 const GLuint slice = fb->Attachment[buffer].Zoffset; local
572 ctx->Driver.MapTextureImage(ctx, texImage, slice,
603 const GLuint slice = fb->Attachment[buffer].Zoffset; local
606 ctx->Driver.UnmapTextureImage(ctx, texImage, slice);
H A Ds_texfilter.c486 * Compute slice/image to use for 1D or 2D array texture.
491 GLint slice = IFLOOR(coord + 0.5f); local
492 slice = CLAMP(slice, 0, size - 1);
493 return slice;
555 GLint *i0, GLint *i1, GLint *j0, GLint *j1, GLint *slice,
569 *slice = 0;
578 *slice = 0;
586 *slice = 0;
594 *slice
551 linear_texcoord(const struct gl_sampler_object *samp, const struct gl_texture_object *texObj, GLuint level, const GLfloat texcoord[4], GLint *i0, GLint *i1, GLint *j0, GLint *j1, GLint *slice, GLfloat *wi, GLfloat *wj) argument
3573 GLint col, row, slice; local
3598 GLint slice; local
[all...]
H A Ds_texture.c159 GLuint slice, GLuint x, GLuint y, GLuint w, GLuint h)
172 * Map a 2D slice of a texture image into user space.
177 * \param slice the 3D image slice or array texture slice
186 GLuint slice,
197 _mesa_check_map_teximage(texImage, slice, x, y, w, h);
220 assert(slice < texImage->Depth);
221 map += slice * sliceSize;
227 assert(slice < texImag
158 _mesa_check_map_teximage(struct gl_texture_image *texImage, GLuint slice, GLuint x, GLuint y, GLuint w, GLuint h) argument
184 _swrast_map_teximage(struct gl_context *ctx, struct gl_texture_image *texImage, GLuint slice, GLuint x, GLuint y, GLuint w, GLuint h, GLbitfield mode, GLubyte **mapOut, GLint *rowStrideOut) argument
239 _swrast_unmap_teximage(struct gl_context *ctx, struct gl_texture_image *texImage, GLuint slice) argument
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_texture.c788 * for just one cube face or one 3D texture slice
891 * Return pointer to a 2D texture image/face/slice.
1015 * for a particular cube face or 3D texture slice.
1017 * \param face_slice the cube face or 3D slice of interest
1169 int slice; local
1174 for (slice = slices - 1; slice >= 0; slice--) {
1175 map = llvmpipe_get_texture_image(lpr, slice, level, usage, layout);
1209 /* compute address of the slice/fac
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Devergreen_state.c1246 unsigned pitch, slice; local
1267 slice = (rtex->surface.level[level].nblk_x * rtex->surface.level[level].nblk_y) / 64;
1268 if (slice) {
1269 slice = slice - 1;
1412 surf->cb_color_slice = S_028C68_SLICE_TILE_MAX(slice);
1427 surf->cb_color_fmask_slice = S_028C88_TILE_MAX(slice);
1440 unsigned level, pitch, slice, format, array_mode; local
1450 slice = (rtex->surface.level[level].nblk_x * rtex->surface.level[level].nblk_y) / 64;
1451 if (slice) {
[all...]
H A Dr600_state.c1261 unsigned pitch, slice; local
1281 slice = (rtex->surface.level[level].nblk_x * rtex->surface.level[level].nblk_y) / 64;
1282 if (slice) {
1283 slice = slice - 1;
1393 S_028060_SLICE_TILE_MAX(slice);
1410 surf->cb_color_mask |= S_028100_FMASK_TILE_MAX(slice);
1461 S_028100_FMASK_TILE_MAX(slice);
1480 unsigned level, pitch, slice, format, offset, array_mode; local
1485 slice
[all...]
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_state.c1450 unsigned pitch, slice; local
1478 slice = (rtex->surface.level[level].nblk_x * rtex->surface.level[level].nblk_y) / 64;
1479 if (slice) {
1480 slice = slice - 1;
1588 si_pm4_set_reg(pm4, R_028C68_CB_COLOR0_SLICE + cb * 0x3C, S_028C68_TILE_MAX(slice));
1617 unsigned level, pitch, slice, format; local
1644 slice = (rtex->surface.level[level].nblk_x * rtex->surface.level[level].nblk_y) / 64;
1645 if (slice) {
1646 slice
[all...]
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta.c2853 * drawing a 2D texture image or slice of a cube/3D texture.
2855 * \param slice slice of a 1D/2D array texture or 3D texture
2862 GLint slice,
2882 r = 1.0F / slice;
2884 r = slice;
2916 coords0[1] = slice; /* t */
2919 coords1[1] = slice;
2922 coords2[1] = slice;
2925 coords3[1] = slice;
2861 setup_texture_coords(GLenum faceTarget, GLint slice, GLint width, GLint height, GLfloat coords0[3], GLfloat coords1[3], GLfloat coords2[3], GLfloat coords3[3]) argument
3253 const GLint slice = 0; local
3598 decompress_texture_image(struct gl_context *ctx, struct gl_texture_image *texImage, GLuint slice, GLenum destFormat, GLenum destType, GLvoid *dest) argument
3826 const GLuint slice = 0; /* only 2D compressed textures for now */ local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_mipmap_tree.c533 free((*mt)->level[i].slice);
616 assert(mt->level[level].slice == NULL);
618 mt->level[level].slice = calloc(d, sizeof(*mt->level[0].slice));
619 mt->level[level].slice[0].x_offset = mt->level[level].level_x;
620 mt->level[level].slice[0].y_offset = mt->level[level].level_y;
634 mt->level[level].slice[img].x_offset = mt->level[level].level_x + x;
635 mt->level[level].slice[img].y_offset = mt->level[level].level_y + y;
639 mt->level[level].slice[img].x_offset,
640 mt->level[level].slice[im
654 int slice; local
1068 intel_miptree_map_gtt(struct intel_context *intel, struct intel_mipmap_tree *mt, struct intel_miptree_map *map, unsigned int level, unsigned int slice) argument
1110 intel_miptree_unmap_gtt(struct intel_context *intel, struct intel_mipmap_tree *mt, struct intel_miptree_map *map, unsigned int level, unsigned int slice) argument
1120 intel_miptree_map_blit(struct intel_context *intel, struct intel_mipmap_tree *mt, struct intel_miptree_map *map, unsigned int level, unsigned int slice) argument
1181 intel_miptree_unmap_blit(struct intel_context *intel, struct intel_mipmap_tree *mt, struct intel_miptree_map *map, unsigned int level, unsigned int slice) argument
1194 intel_miptree_map_s8(struct intel_context *intel, struct intel_mipmap_tree *mt, struct intel_miptree_map *map, unsigned int level, unsigned int slice) argument
1240 intel_miptree_unmap_s8(struct intel_context *intel, struct intel_mipmap_tree *mt, struct intel_miptree_map *map, unsigned int level, unsigned int slice) argument
1270 intel_miptree_map_etc1(struct intel_context *intel, struct intel_mipmap_tree *mt, struct intel_miptree_map *map, unsigned int level, unsigned int slice) argument
1301 intel_miptree_unmap_etc1(struct intel_context *intel, struct intel_mipmap_tree *mt, struct intel_miptree_map *map, unsigned int level, unsigned int slice) argument
1335 intel_miptree_map_depthstencil(struct intel_context *intel, struct intel_mipmap_tree *mt, struct intel_miptree_map *map, unsigned int level, unsigned int slice) argument
1405 intel_miptree_unmap_depthstencil(struct intel_context *intel, struct intel_mipmap_tree *mt, struct intel_miptree_map *map, unsigned int level, unsigned int slice) argument
1467 intel_miptree_attach_map(struct intel_mipmap_tree *mt, unsigned int level, unsigned int slice, unsigned int x, unsigned int y, unsigned int w, unsigned int h, GLbitfield mode) argument
1497 intel_miptree_release_map(struct intel_mipmap_tree *mt, unsigned int level, unsigned int slice) argument
1509 intel_miptree_map_singlesample(struct intel_context *intel, struct intel_mipmap_tree *mt, unsigned int level, unsigned int slice, unsigned int x, unsigned int y, unsigned int w, unsigned int h, GLbitfield mode, void **out_ptr, int *out_stride) argument
1560 intel_miptree_unmap_singlesample(struct intel_context *intel, struct intel_mipmap_tree *mt, unsigned int level, unsigned int slice) argument
1591 intel_miptree_map_multisample(struct intel_context *intel, struct intel_mipmap_tree *mt, unsigned int level, unsigned int slice, unsigned int x, unsigned int y, unsigned int w, unsigned int h, GLbitfield mode, void **out_ptr, int *out_stride) argument
1650 intel_miptree_unmap_multisample(struct intel_context *intel, struct intel_mipmap_tree *mt, unsigned int level, unsigned int slice) argument
1675 intel_miptree_map(struct intel_context *intel, struct intel_mipmap_tree *mt, unsigned int level, unsigned int slice, unsigned int x, unsigned int y, unsigned int w, unsigned int h, GLbitfield mode, void **out_ptr, int *out_stride) argument
1702 intel_miptree_unmap(struct intel_context *intel, struct intel_mipmap_tree *mt, unsigned int level, unsigned int slice) argument
[all...]

Completed in 1063 milliseconds

12345