HomeSort by relevance Sort by last modified time
    Searched refs:positions (Results 151 - 175 of 852) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/skqp/gm/
hardstop_gradients.cpp 114 SkScalar* positions[NUM_ROWS] = { variable
149 positions[cellRow],
  /frameworks/base/cmds/statsd/benchmark/
metric_util.h 89 const std::vector<Position>& positions);
93 const std::vector<Position>& positions);
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/selection/testing/
SelectionProbe.java 105 public void select(int...positions) {
106 for (int position : positions) {
  /prebuilts/go/darwin-x86/src/go/parser/
example_test.go 14 fset := token.NewFileSet() // positions are relative to fset
  /prebuilts/go/linux-x86/src/go/parser/
example_test.go 14 fset := token.NewFileSet() // positions are relative to fset
  /external/deqp/modules/gles3/functional/
es3fPixelBufferObjectTests.cpp 281 float positions[3*3]; local
283 positions[0] = a.x();
284 positions[1] = a.y();
285 positions[2] = a.z();
287 positions[3] = b.x();
288 positions[4] = b.y();
289 positions[5] = b.z();
291 positions[6] = c.x();
292 positions[7] = c.y();
293 positions[8] = c.z()
    [all...]
  /external/skia/src/gpu/text/
GrAtlasTextBlob.cpp 77 const SkRect& positions,
83 if (positions.isEmpty()) {
124 subRun->joinGlyphBounds(positions);
134 *reinterpret_cast<SkPoint3*>(vertex) = {positions.fLeft, positions.fTop, 1.f};
139 *reinterpret_cast<SkPoint3*>(vertex) = {positions.fLeft, positions.fBottom, 1.f};
144 *reinterpret_cast<SkPoint3*>(vertex) = {positions.fRight, positions.fTop, 1.f};
149 *reinterpret_cast<SkPoint3*>(vertex) = {positions.fRight, positions.fBottom, 1.f}
    [all...]
  /external/vulkan-validation-layers/demos/smoke/
Meshes.cpp 337 void get_transform(const float *positions, int position_count, Mesh::Position &translate, float &scale) {
339 positions[0], positions[1], positions[2],
342 positions[0], positions[1], positions[2],
346 if (min[j] > positions[i + j]) min[j] = positions[i + j];
347 if (max[j] < positions[i + j]) max[j] = positions[i + j]
    [all...]
  /frameworks/base/libs/hwui/
SkiaCanvasProxy.cpp 277 // compute the glyph positions
313 auto glyphFunc = [&](uint16_t* text, float* positions) {
317 positions[posIndex++] = xBaseline;
318 positions[posIndex++] = yBaseline;
319 // setup the remaining glyph positions
323 positions[posIndex++] = xBaseline;
325 positions[posIndex++] = yPosition;
331 positions[posIndex++] = xPosition;
332 positions[posIndex++] = yBaseline;
345 // convert to relative positions if necessar
    [all...]
  /external/deqp/modules/glshared/
glsBufferTestUtil.cpp 476 static void computePositions (vector<tcu::Vec2>& positions, int gridSizeX, int gridSizeY)
478 positions.resize(gridSizeX*gridSizeY*4);
493 positions[baseNdx+0] = tcu::Vec2(fx0, fy0);
494 positions[baseNdx+1] = tcu::Vec2(fx0, fy1);
495 positions[baseNdx+2] = tcu::Vec2(fx1, fy0);
496 positions[baseNdx+3] = tcu::Vec2(fx1, fy1);
581 vector<tcu::Vec2> positions;
589 computePositions(positions, maxQuadsX, maxQuadsY);
601 // Upload positions
603 glBufferData (GL_ARRAY_BUFFER, (glw::GLsizeiptr)(positions.size()*sizeof(positions[0])), &positions[0], GL_STATIC_DRAW)
    [all...]
  /external/pdfium/core/fpdfapi/render/
cpdf_textrenderer.cpp 92 std::vector<float> positions; local
94 positions.resize(nChars - 1);
99 positions[i - 1] = cur_pos;
109 DrawNormalText(pDevice, codes, positions, pFont, font_size, &matrix,
  /external/deqp/external/vulkancts/modules/vulkan/tessellation/
vktTessellationMiscDrawTests.cpp 102 std::vector<tcu::Vec2> positions; local
103 positions.reserve(4);
107 positions.push_back(tcu::Vec2( 0.8f, 0.6f));
108 positions.push_back(tcu::Vec2( 0.0f, -0.786f));
109 positions.push_back(tcu::Vec2(-0.8f, 0.6f));
113 positions.push_back(tcu::Vec2(-0.8f, -0.8f));
114 positions.push_back(tcu::Vec2( 0.8f, -0.8f));
115 positions.push_back(tcu::Vec2(-0.8f, 0.8f));
116 positions.push_back(tcu::Vec2( 0.8f, 0.8f));
121 return positions;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/protected_memory/
vktProtectedMemBufferValidator.hpp 52 const tcu::IVec4 positions[4]; member in struct:vkt::ProtectedMem::ValidationData
149 << tcu::TestLog::Message << "Reference positions: \n"
150 << "1: " << m_refData.positions[0] << "\n"
151 << "2: " << m_refData.positions[1] << "\n"
152 << "3: " << m_refData.positions[2] << "\n"
153 << "4: " << m_refData.positions[3] << "\n"
  /external/icu/icu4c/source/test/letest/
gendata.cpp 211 float *positions = NULL; local
320 positions = NEW_ARRAY(float, glyphCount * 2 + 2);
324 engine->getGlyphPositions(positions, leStatus);
337 dumpFloats(outputFile, "result-positions", positions, glyphCount * 2 + 2);
342 DELETE_ARRAY(positions);
  /frameworks/base/libs/hwui/hwui/
Canvas.cpp 105 auto glyphFunc = [&](uint16_t* text, float* positions) {
109 positions[posIndex++] = x + layout.getX(i);
110 positions[posIndex++] = y + layout.getY(i);
115 positions[posIndex++] = layout.getX(i);
116 positions[posIndex++] = layout.getY(i);
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineReferenceRenderer.cpp 260 std::vector<tcu::Vec4> positions; local
266 positions.push_back(v.position);
275 vertexAttribs[0].pointer = positions.data();
292 std::vector<tcu::Vec4> positions; local
298 positions.push_back(v.position);
307 vertexAttribs[0].pointer = positions.data();
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoItem.java 175 PositionList positions = code.getPositions(); local
182 new DebugInfoEncoder(positions, locals,
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoItem.java 172 PositionList positions = code.getPositions(); local
179 new DebugInfoEncoder(positions, locals,
  /external/harfbuzz_ng/test/shaping/
record-test.sh 44 glyph_names=`echo "$text" | $hb_shape $options --no-clusters --no-positions "$fontfile" | sed 's/[][]//g; s/|/,/g'`
  /external/skia/src/core/
SkFindAndPlaceGlyph.h 38 // * Components per position (2) - the positions vector can have a common Y with different
169 explicit HorizontalPositions(const SkScalar* positions)
170 : fPositions(positions) { }
183 explicit ArbitraryPositions(const SkScalar* positions)
184 : fPositions(positions) { }
486 PositionReaderInterface* positions = nullptr; local
488 positions = &aPositions;
490 positions = &hPositions;
497 SkPoint mappedPoint = mapper.TranslationMapper::map(positions->nextPoint());
  /external/skqp/src/core/
SkFindAndPlaceGlyph.h 38 // * Components per position (2) - the positions vector can have a common Y with different
169 explicit HorizontalPositions(const SkScalar* positions)
170 : fPositions(positions) { }
183 explicit ArbitraryPositions(const SkScalar* positions)
184 : fPositions(positions) { }
486 PositionReaderInterface* positions = nullptr; local
488 positions = &aPositions;
490 positions = &hPositions;
497 SkPoint mappedPoint = mapper.TranslationMapper::map(positions->nextPoint());
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_value.h 124 // Sets the positions in the module at which the HloValue appears. Updates
126 // be included in 'positions' as this is set at construction time.
128 tensorflow::gtl::ArraySlice<HloPosition> positions);
152 // Return all positions of the HloValue in the module.
153 const std::vector<HloPosition>& positions() const { return positions_; } function in class:xla::HloValue
176 // The set of positions of this HloValue. The first element is always the
  /frameworks/base/libs/hwui/font/
Font.cpp 290 const float* positions) {
291 render(paint, glyphs, numGlyphs, x, y, FRAMEBUFFER, nullptr, 0, 0, nullptr, positions);
343 const float* positions) {
349 render(paint, glyphs, numGlyphs, 0, 0, MEASURE, nullptr, 0, 0, bounds, positions);
373 Rect* bounds, const float* positions) {
401 int penX = x + (int)roundf(positions[(glyphsCount << 1)]);
402 int penY = y + (int)roundf(positions[(glyphsCount << 1) + 1]);
406 (*this.*render)(cachedGlyph, penX, penY, bitmap, bitmapW, bitmapH, bounds, positions);
  /prebuilts/go/darwin-x86/src/go/scanner/
example_test.go 19 fset := token.NewFileSet() // positions are relative to fset
  /prebuilts/go/linux-x86/src/go/scanner/
example_test.go 19 fset := token.NewFileSet() // positions are relative to fset

Completed in 823 milliseconds

1 2 3 4 5 67 8 91011>>