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

  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/src/
mp4_utils.cpp 57 uint32 MP4_Utils::read_bit_field(posInfoType * posPtr, uint32 size) {
58 uint8 *bits = &posPtr->bytePtr[0];
62 uint32 value = (bitBuf >> (32 - posPtr->bitPos - size)) & MASK(size);
65 posPtr->bitPos += size;
67 while (posPtr->bitPos >= 8) {
68 posPtr->bitPos -= 8;
69 posPtr->bytePtr++;
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
mp4_utils.cpp 50 uint32 MP4_Utils::read_bit_field(posInfoType * posPtr, uint32 size)
52 uint8 *bits = &posPtr->bytePtr[0];
56 uint32 value = (bitBuf >> (32 - posPtr->bitPos - size)) & MASK(size);
59 posPtr->bitPos += size;
61 while (posPtr->bitPos >= 8) {
62 posPtr->bitPos -= 8;
63 posPtr->bytePtr++;
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/
mp4_utils.cpp 50 uint32 MP4_Utils::read_bit_field(posInfoType * posPtr, uint32 size)
52 uint8 *bits = &posPtr->bytePtr[0];
56 uint32 value = (bitBuf >> (32 - posPtr->bitPos - size)) & MASK(size);
59 posPtr->bitPos += size;
61 while (posPtr->bitPos >= 8) {
62 posPtr->bitPos -= 8;
63 posPtr->bytePtr++;
  /hardware/qcom/media/msmcobalt/mm-video-v4l2/vidc/vdec/src/
mp4_utils.cpp 50 uint32 MP4_Utils::read_bit_field(posInfoType * posPtr, uint32 size)
52 uint8 *bits = &posPtr->bytePtr[0];
56 uint32 value = (bitBuf >> (32 - posPtr->bitPos - size)) & MASK(size);
59 posPtr->bitPos += size;
61 while (posPtr->bitPos >= 8) {
62 posPtr->bitPos -= 8;
63 posPtr->bytePtr++;
  /frameworks/rs/
rsMesh.cpp 216 float *posPtr = nullptr;
234 posPtr = (float*)(bp + offset);
239 if (posPtr) {
246 if (!posPtr) {
255 mBBoxMin[v] = rsMin(mBBoxMin[v], posPtr[v]);
256 mBBoxMax[v] = rsMax(mBBoxMax[v], posPtr[v]);
258 posPtr += stride;
  /external/deqp/modules/glshared/
glsFragOpInteractionCase.cpp 282 static void renderQuad (sglr::Context& ctx, const glu::VertexArrayPointer& posPtr, const Quad& quad, const float depth)
296 setVertex(posPtr, 0, Vec4(pA.x(), pA.y(), depth, 1.0f));
297 setVertex(posPtr, 1, Vec4(pB.x(), pA.y(), depth, 1.0f));
298 setVertex(posPtr, 2, Vec4(pA.x(), pB.y(), depth, 1.0f));
299 setVertex(posPtr, 3, Vec4(pB.x(), pB.y(), depth, 1.0f));
305 static void render (sglr::Context& ctx, const glu::VertexArrayPointer& posPtr, const RenderCommand& cmd)
308 renderQuad(ctx, posPtr, cmd.quad, cmd.depth);
573 const glu::VertexArrayPointer posPtr = getEntryWithPointer(vertexData, positionNdx).pointer;
602 render(ctx, posPtr, *cmdIter);
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/inc/
mp4_utils.h 169 static uint32 read_bit_field(posInfoType * posPtr, uint32 size);
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/
mp4_utils.h 166 static uint32 read_bit_field(posInfoType * posPtr, uint32 size);
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
mp4_utils.h 166 static uint32 read_bit_field(posInfoType * posPtr, uint32 size);
  /hardware/qcom/media/msmcobalt/mm-video-v4l2/vidc/vdec/inc/
mp4_utils.h 166 static uint32 read_bit_field(posInfoType * posPtr, uint32 size);
  /frameworks/base/core/jni/android/graphics/
PathMeasure.cpp 96 SkScalar* posPtr = pos ? tmpPos : NULL;
99 if (!pair->fMeasure.getPosTan(dist, (SkPoint*)posPtr, (SkVector*)tanPtr)) {

Completed in 1114 milliseconds