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

  /external/mesa3d/src/mesa/tnl/
t_vb_lighttmp.h 56 const GLuint vstride = input->stride; local
88 for (j = 0; j < nr; j++,STRIDE_F(vertex,vstride),STRIDE_F(normal,nstride)) {
242 const GLuint vstride = input->stride; local
269 for (j = 0; j < nr; j++,STRIDE_F(vertex,vstride),STRIDE_F(normal,nstride)) {
  /external/mesa3d/src/intel/compiler/
test_eu_validate.cpp 443 enum brw_vertical_stride vstride; member in struct:__anon34228
445 } vstride[] = { local
458 for (unsigned i = 0; i < sizeof(vstride) / sizeof(vstride[0]); i++) {
460 brw_inst_set_src0_vstride(&devinfo, last_inst, vstride[i].vstride);
462 EXPECT_EQ(vstride[i].expected_result, validate(p));
467 for (unsigned i = 0; i < sizeof(vstride) / sizeof(vstride[0]); i++) {
469 brw_inst_set_src1_vstride(&devinfo, last_inst, vstride[i].vstride)
    [all...]
brw_reg.h 236 unsigned vstride:4; /* source only */ member in struct:brw_reg::__anon34213::__anon34214
337 * \param vstride one of BRW_VERTICAL_STRIDE_x
350 unsigned vstride,
384 reg.vstride = vstride;
512 if (reg.vstride)
689 imm.vstride = BRW_VERTICAL_STRIDE_0;
899 stride(struct brw_reg reg, unsigned vstride, unsigned width, unsigned hstride)
901 reg.vstride = cvt(vstride);
    [all...]
brw_eu_validate.c 379 is_packed(unsigned vstride, unsigned width, unsigned hstride)
381 if (vstride == width) {
382 if (vstride == 1) {
549 unsigned vstride, width, hstride, element_size, subreg; local
557 vstride = STRIDE(brw_inst_src ## n ## _vstride(devinfo, inst)); \
587 ERROR_IF(vstride != width * hstride,
603 ERROR_IF(vstride != 0 || hstride != 0,
611 if (vstride == 0 && hstride == 0) {
632 rowbase += vstride * element_size;
671 unsigned vstride, unsigned width, unsigned hstride
739 unsigned vstride, width, hstride, element_size, subreg; local
1123 unsigned vstride, width, hstride, type_size, reg, subreg, address_mode; local
    [all...]
brw_fs_generator.cpp 121 if (brw_reg.vstride > 0)
122 brw_reg.vstride++;
166 brw_reg.vstride == BRW_VERTICAL_STRIDE_0 &&
1084 unsigned vstride, width; local
    [all...]
  /external/mesa3d/src/mesa/main/
eval.c 213 GLint vstride, GLint vorder,
238 uinc = ustride - vorder*vstride;
242 for (j=0; j<vorder; j++, points += vstride)
256 GLint vstride, GLint vorder,
281 uinc = ustride - vorder*vstride;
285 for (j=0; j<vorder; j++, points += vstride)
386 GLfloat v1, GLfloat v2, GLint vstride, GLint vorder,
426 if (vstride < k) {
427 _mesa_error( ctx, GL_INVALID_VALUE, "glMap2(vstride)" );
446 vstride, vorder, (GLfloat*) points)
484 (GLfloat) v1, (GLfloat) v2, vstride, vorder, points, GL_DOUBLE); local
    [all...]
dlist.c 8341 GLint vstride = n[7].i; local
    [all...]
  /frameworks/av/media/codec2/components/vpx/
C2SoftVpxEnc.cpp 321 uint32_t vstride = (height + mStrideAlign - 1) & ~(mStrideAlign - 1); local
322 mConversionBuffer = MemoryBlock::Allocate(stride * vstride * 3 / 2);
478 uint32_t vstride = (height + mStrideAlign - 1) & ~(mStrideAlign - 1); local
482 ConvertRGBToPlanarYUV(mConversionBuffer.data(), stride, vstride,
508 MediaImage2 img = CreateYUV420PlanarMediaImage2(width, height, stride, vstride);
509 if (mConversionBuffer.size() >= stride * vstride * 3 / 2) {
516 vpx_img_wrap(&raw_frame, VPX_IMG_FMT_I420, stride, vstride,
521 stride, vstride, mConversionBuffer.size());
  /frameworks/av/media/codec2/sfplugin/
CCodecBuffers.cpp 91 int32_t vstride = (img->mPlane[1].mOffset - img->mPlane[0].mOffset) / stride; local
92 newFormat->setInt32(KEY_SLICE_HEIGHT, vstride);
93 ALOGD("[%s] updating vstride = %d", mName, vstride);
    [all...]
  /frameworks/av/media/codec2/sfplugin/tests/
MediaCodec_sanity_test.cpp 357 int32_t stride, vstride; local
359 ofmt->findInt32("slice-height", &vstride) || ofmt->findInt32("height", &vstride);
376 EXPECT_EQ(img->mPlane[img->U].mOffset, (uint32_t)(stride * vstride));
380 EXPECT_EQ(img->mPlane[img->V].mOffset, (uint32_t)(stride * vstride * 5 / 4));
384 EXPECT_GE(size, (size_t)(stride * vstride * 5 / 4 + stride / 2 * 119 + 160));
385 EXPECT_LE(size, (size_t)(stride * vstride * 3 / 2));
394 EXPECT_EQ(img->mPlane[img->U].mOffset, (uint32_t)(stride * vstride));
398 EXPECT_EQ(img->mPlane[img->V].mOffset, (uint32_t)(stride * vstride + 1));
402 EXPECT_GE(size, (size_t)(stride * vstride + stride * 119 + 320))
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_lowering_nv50.cpp 1306 Value *vstride = bld.mkOp1v(OP_RDSV, TYPE_U32, bld.getSSA(), sv); local
    [all...]

Completed in 4125 milliseconds