Home
last modified time | relevance | path

Searched refs:xStart (Results 1 – 10 of 10) sorted by relevance

/external/pdfium/fxbarcode/qrcode/
DBC_QRCoderMatrixUtil.cpp342 int32_t xStart, in EmbedHorizontalSeparationPattern() argument
351 if (!IsEmpty(matrix->Get(xStart + x, yStart))) { in EmbedHorizontalSeparationPattern()
355 matrix->Set(xStart + x, yStart, HORIZONTAL_SEPARATION_PATTERN[0][x]); in EmbedHorizontalSeparationPattern()
359 int32_t xStart, in EmbedVerticalSeparationPattern() argument
368 if (!IsEmpty(matrix->Get(xStart, yStart + y))) { in EmbedVerticalSeparationPattern()
372 matrix->Set(xStart, yStart + y, VERTICAL_SEPARATION_PATTERN[y][0]); in EmbedVerticalSeparationPattern()
376 int32_t xStart, in EmbedPositionAdjustmentPattern() argument
387 if (!IsEmpty(matrix->Get(xStart + x, y + yStart))) { in EmbedPositionAdjustmentPattern()
391 matrix->Set(xStart + x, yStart + y, POSITION_ADJUSTMENT_PATTERN[y][x]); in EmbedPositionAdjustmentPattern()
396 int32_t xStart, in EmbedPositionDetectionPattern() argument
[all …]
DBC_QRCoderMatrixUtil.h53 static void EmbedHorizontalSeparationPattern(int32_t xStart,
57 static void EmbedVerticalSeparationPattern(int32_t xStart,
61 static void EmbedPositionAdjustmentPattern(int32_t xStart,
65 static void EmbedPositionDetectionPattern(int32_t xStart,
/external/skia/gm/
Darcto.cpp133 for (int xStart = 0; xStart < kParsePathTestDimension; xStart += 100) { in DEF_SIMPLE_GM() local
137 str.printf("<g transform='translate(%d,%d) scale(%d,%d)'>\n", xStart, yStart, in DEF_SIMPLE_GM()
140 str.printf("<clipPath id='clip_%d_%d'>\n", xStart, yStart); in DEF_SIMPLE_GM()
171 str.printf(" clip-path='url(#clip_%d_%d)'/>\n", xStart, yStart); in DEF_SIMPLE_GM()
/external/skqp/gm/
Darcto.cpp133 for (int xStart = 0; xStart < kParsePathTestDimension; xStart += 100) { in DEF_SIMPLE_GM() local
137 str.printf("<g transform='translate(%d,%d) scale(%d,%d)'>\n", xStart, yStart, in DEF_SIMPLE_GM()
140 str.printf("<clipPath id='clip_%d_%d'>\n", xStart, yStart); in DEF_SIMPLE_GM()
171 str.printf(" clip-path='url(#clip_%d_%d)'/>\n", xStart, yStart); in DEF_SIMPLE_GM()
/external/replicaisland/src/com/replica/replicaisland/
DBackgroundCollisionComponent.java250 float xStart = left; in update() local
253 xStart = right; in update()
258 mRayStart.set(xStart, centerOffsetY); in update()
/external/deqp/modules/gles3/functional/
Des3fInstancedRenderingTests.cpp563 int xStart = instanceNdx * wid / m_numInstances; in computeReference() local
606 for (int x = xStart; x < xEnd; x++) in computeReference()
/external/webrtc/webrtc/modules/video_render/mac/
Dvideo_render_agl.cc287 GLfloat xStart = 2.0f * _startWidth - 1.0f; in RenderOffScreenBuffer() local
309 glTexCoord2f(0.0, 0.0); glVertex2f(xStart, yStop); in RenderOffScreenBuffer()
312 glTexCoord2f(0.0, _height); glVertex2f(xStart, yStart); in RenderOffScreenBuffer()
Dvideo_render_nsopengl.mm290 GLfloat xStart = 2.0f * _startWidth - 1.0f;
305 glTexCoord2f(0.0, 0.0); glVertex2f(xStart, yStop);
308 glTexCoord2f(0.0, _height); glVertex2f(xStart, yStart);
/external/valgrind/coregrind/m_aspacemgr/
Daspacemgr-linux.c3089 Addr xStart; in VG_() local
3105 xStart = seg->end+1; in VG_()
3106 aspacem_assert(xStart + delta >= delta); // no wrap-around in VG_()
3112 aspacem_assert(segf->start == xStart); in VG_()
3113 aspacem_assert(xStart + delta - 1 <= segf->end); in VG_()
/external/swiftshader/src/Renderer/
DBlitter.cpp172 const float xStart = sRect.x0 + 0.5f * w; in blit() local
177 float x = xStart; in blit()