HomeSort by relevance Sort by last modified time
    Searched defs:spr (Results 1 - 16 of 16) sorted by null

  /external/skqp/src/gpu/
GrPathRendererChain.cpp 57 auto spr = sk_make_sp<GrSmallPathRenderer>(); local
58 context->contextPriv().addOnFlushCallbackObject(spr.get());
59 fChain.push_back(std::move(spr));
  /external/skia/src/gpu/
GrPathRendererChain.cpp 65 auto spr = sk_make_sp<GrSmallPathRenderer>(); local
66 context->priv().addOnFlushCallbackObject(spr.get());
67 fChain.push_back(std::move(spr));
  /external/eigen/blas/
level2_real_impl.h 186 int EIGEN_BLAS_FUNC(spr)(char *uplo, int *n, Scalar *palpha, Scalar *px, int *incx, Scalar *pap) function
205 return xerbla_(SCALAR_SUFFIX_UP"SPR ",&info,6);
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_buffer.c 32 const struct softpipe_resource *spr,
40 if (*width > spr->base.width0)
56 struct softpipe_resource *spr; local
66 spr = softpipe_resource(bview->buffer);
67 if (!spr)
70 if (!get_dimensions(bview, spr, &width))
90 data_ptr = (unsigned char *)spr->data + bview->buffer_offset + s_coord;
114 struct softpipe_resource *spr; local
124 spr = softpipe_resource(bview->buffer);
125 if (!spr)
291 struct softpipe_resource *spr; local
346 struct softpipe_resource *spr; local
    [all...]
sp_texture.c 56 struct softpipe_resource *spr,
59 struct pipe_resource *pt = &spr->base;
79 spr->stride[level] = util_format_get_stride(pt->format, width);
81 spr->level_offset[level] = buffer_size;
84 if ((uint64_t)spr->stride[level] * nblocksy > SP_MAX_TEXTURE_SIZE) {
89 spr->img_stride[level] = spr->stride[level] * nblocksy;
91 buffer_size += (uint64_t) spr->img_stride[level] * slices;
102 spr->data = align_malloc(buffer_size, 64);
103 return spr->data != NULL
119 struct softpipe_resource spr; local
159 struct softpipe_resource *spr = CALLOC_STRUCT(softpipe_resource); local
203 struct softpipe_resource *spr = softpipe_resource(pt); local
226 struct softpipe_resource *spr = CALLOC_STRUCT(softpipe_resource); local
261 struct softpipe_resource *spr = softpipe_resource(pt); local
363 struct softpipe_resource *spr = softpipe_resource(resource); local
460 struct softpipe_resource *spr; local
489 struct softpipe_resource *spr; local
    [all...]
sp_image.c 35 get_image_offset(const struct softpipe_resource *spr,
41 if (spr->base.target == PIPE_BUFFER)
44 if (spr->base.target == PIPE_TEXTURE_1D_ARRAY ||
45 spr->base.target == PIPE_TEXTURE_2D_ARRAY ||
46 spr->base.target == PIPE_TEXTURE_CUBE_ARRAY ||
47 spr->base.target == PIPE_TEXTURE_CUBE ||
48 spr->base.target == PIPE_TEXTURE_3D)
50 return softpipe_get_tex_image_offset(spr, iview->u.tex.level, base_layer);
148 const struct softpipe_resource *spr,
164 util_format_get_stride(spr->base.format, spr->base.width0)
213 struct softpipe_resource *spr; local
315 struct softpipe_resource *spr; local
662 struct softpipe_resource *spr; local
744 struct softpipe_resource *spr; local
    [all...]
sp_tex_sample.c 3461 const struct softpipe_resource *spr = (struct softpipe_resource *)resource; local
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/
swr_draw.cpp 328 struct swr_resource *spr = swr_resource(resource); local
333 if (renderTargets[i].xpBaseAddress == spr->swr.xpBaseAddress ||
334 (spr->secondary.xpBaseAddress &&
335 renderTargets[i].xpBaseAddress == spr->secondary.xpBaseAddress)) {
341 if (spr->has_stencil && (i == SWR_ATTACHMENT_DEPTH)) {
swr_context.cpp 102 struct swr_resource *spr = swr_resource(resource); local
121 if (spr->status) {
140 pt->stride = spr->swr.pitch;
141 pt->layer_stride = spr->swr.qpitch * spr->swr.pitch;
146 if (usage & PIPE_TRANSFER_READ && spr->has_depth && spr->has_stencil) {
149 zbase = (z * spr->swr.qpitch + box->y) * spr->swr.pitch +
150 spr->mip_offsets[level]
186 struct swr_resource *spr = swr_resource(transfer->resource); local
221 struct swr_resource *spr = swr_resource(transfer->resource); local
    [all...]
swr_screen.cpp 972 struct swr_resource *spr = swr_resource(pt); local
1025 struct swr_resource *spr = swr_resource(resource); local
    [all...]
  /external/v8/src/ppc/
disasm-ppc.cc 801 int spr = instr->Bits(20, 11); local
802 if (256 == spr) {
810 int spr = instr->Bits(20, 11); local
811 if (256 == spr) {
813 } else if (288 == spr) {
    [all...]
simulator-ppc.cc 2899 int spr = instr->Bits(20, 11); local
2909 int spr = instr->Bits(20, 11); local
    [all...]
  /external/u-boot/arch/arm/include/asm/arch-pxa/
regs-uart.h 32 uint32_t spr; member in struct:pxa_uart_regs
  /external/u-boot/common/
bedbug.c 484 * Convert the 'spr' operand from its numeric value to its symbolic name.
487 * value The value of the 'spr' operand. This value should
499 unsigned short spr;
505 /* spr is a 10 bit field whose interpretation has the high and low
508 spr = ((value >> 5) & 0x1f) | ((value & 0x1f) << 5);
511 if (spr == spr_map[i].spr_val)
515 sprintf (other, "%d", spr);
523 * Convert the 'spr' operand from its symbolic name to its numeric value
526 * name The symbolic name of the 'spr' operand. The
530 * Returns the numeric value for the spr appropriate for encoding a machin local
493 unsigned short spr; local
    [all...]
  /external/u-boot/
Makefile     [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_context.h 311 /* SPR - point sprite state
511 struct radeon_state_atom spr; member in struct:r200_hw_state

Completed in 895 milliseconds