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

1 2 3 4 5 6 78 91011>>

  /external/deqp/modules/gles3/functional/
es3fShaderFragDataTests.cpp 154 const float positions[] = local
173 glu::va::Float("a_position", 2, 4, 0, &positions[0]),
256 const float positions[] = local
274 glu::va::Float("a_position", 2, 4, 0, &positions[0]),
  /external/deqp/modules/gles31/functional/
es31fStencilTexturingTests.cpp 89 static void rectsToTriangles (const vector<IVec4>& rects, int width, int height, vector<Vec2>& positions, vector<deUint16>& indices)
94 positions.resize(rects.size()*4);
109 positions[rectNdx*4 + 0] = Vec2(x0, y0);
110 positions[rectNdx*4 + 1] = Vec2(x1, y0);
111 positions[rectNdx*4 + 2] = Vec2(x0, y1);
112 positions[rectNdx*4 + 3] = Vec2(x1, y1);
139 vector<Vec2> positions; local
154 rectsToTriangles(rects, width, height, positions, indices);
157 const glu::VertexArrayBinding posBinding = glu::va::Float("a_position", 2, (int)positions.size(), 0, positions[0].getPtr())
222 const float positions[] = local
287 const float positions[] = local
353 const float positions[] = local
    [all...]
  /external/icu/icu4c/source/samples/layout/
GDIFontInstance.h 41 const float *positions, le_int32 x, le_int32 y, le_int32 width, le_int32 height);
GDIFontInstance.cpp 59 void GDISurface::drawGlyphs(const LEFontInstance *font, const LEGlyphID *glyphs, le_int32 count, const float *positions,
78 dx[out] = (le_int32) (positions[g * 2 + 2] - positions[g * 2]);
79 ps[out * 2] = positions[g * 2];
80 ps[out * 2 + 1] = positions[g * 2 + 1];
  /external/skia/src/core/
SkVertices.cpp 108 SkPoint* SkVertices::Builder::positions() { function in class:SkVertices::Builder
109 return fVertices ? const_cast<SkPoint*>(fVertices->positions()) : nullptr;
138 sk_careful_memcpy(builder.positions(), pos, sizes.fVSize);
222 reader.read(builder.positions(), sizes.fVSize);
  /external/skqp/src/core/
SkVertices.cpp 108 SkPoint* SkVertices::Builder::positions() { function in class:SkVertices::Builder
109 return fVertices ? const_cast<SkPoint*>(fVertices->positions()) : nullptr;
138 sk_careful_memcpy(builder.positions(), pos, sizes.fVSize);
222 reader.read(builder.positions(), sizes.fVSize);
  /frameworks/base/graphics/java/android/graphics/
RadialGradient.java 130 int colors[], float positions[], int tileMode);
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
TestResizingRelayoutWithAutoMeasure.java 45 * Tests whether the layout manager can keep its children positions properly after it is re-laid
161 Map<Integer, Rect> positions = new HashMap<>(); local
174 positions.put(childAdapterPosition, outRect);
176 return positions;
  /external/harfbuzz_ng/src/
hb-coretext.cc 1161 const CGPoint* positions = USE_PTR ? CTRunGetPositionsPtr (run) : nullptr; local
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetworkViews.java 295 StringBuilder positions = new StringBuilder(); local
296 positions.append(nodePosition.left).append(" ").append(nodePosition.top);
297 positions.append(" ").append(nodePosition.right-nodePosition.left).append(" ");
298 positions.append(nodePosition.bottom-nodePosition.top);
299 return new MonkeyCommandReturn(true, positions.toString());
  /external/skqp/src/gpu/text/
GrAtlasTextBlob.cpp 71 const SkRect& positions,
77 if (positions.isEmpty()) {
110 subRun->joinGlyphBounds(positions);
120 *reinterpret_cast<SkPoint3*>(vertex) = {positions.fLeft, positions.fTop, 1.f};
125 *reinterpret_cast<SkPoint3*>(vertex) = {positions.fLeft, positions.fBottom, 1.f};
130 *reinterpret_cast<SkPoint3*>(vertex) = {positions.fRight, positions.fTop, 1.f};
135 *reinterpret_cast<SkPoint3*>(vertex) = {positions.fRight, positions.fBottom, 1.f}
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoEncoder.java 58 /** {@code null-ok;} positions (line numbers) to encode */
59 private final PositionList positions; field in class:DebugInfoEncoder
99 * @param positions {@code null-ok;} positions (line numbers) to encode
108 public DebugInfoEncoder(PositionList positions, LocalList locals,
111 this.positions = positions;
341 * Emits all positions that occur at the current {@code address}
344 * @param sortedPositions positions, sorted by ascending address
364 * @param sortedPositions positions, sorted by ascending addres
    [all...]
DebugInfoDecoder.java 47 /** positions decoded */
48 private final ArrayList<PositionEntry> positions; field in class:DebugInfoDecoder
106 positions = new ArrayList<PositionEntry>();
182 * Gets the decoded positions list.
185 * @return positions list in ascending address order.
188 return positions;
406 positions.add(new PositionEntry(address, line));
463 "Decoded positions table not same size was "
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoEncoder.java 66 /** {@code null-ok;} positions (line numbers) to encode */
67 private final PositionList positions; field in class:DebugInfoEncoder
107 * @param positions {@code null-ok;} positions (line numbers) to encode
116 public DebugInfoEncoder(PositionList positions, LocalList locals,
119 this.positions = positions;
349 * Emits all positions that occur at the current {@code address}
352 * @param sortedPositions positions, sorted by ascending address
372 * @param sortedPositions positions, sorted by ascending addres
    [all...]
DebugInfoDecoder.java 58 /** positions decoded */
59 private final ArrayList<PositionEntry> positions; field in class:DebugInfoDecoder
117 positions = new ArrayList<PositionEntry>();
194 * Gets the decoded positions list.
197 * @return positions list in ascending address order.
200 return positions;
411 positions.add(new PositionEntry(address, line));
468 "Decoded positions table not same size was "
  /external/mesa3d/src/gallium/drivers/svga/
svga_surface.c 705 /* We can't actually query the device to learn the sample positions.
745 const float (*positions)[2];
749 positions = pos4;
752 positions = pos8;
755 positions = pos16;
758 positions = pos1;
761 pos_out[0] = positions[sample_index][0];
762 pos_out[1] = positions[sample_index][1];
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktTextureTestUtil.cpp 947 float positions[] = local
    [all...]
  /prebuilts/go/darwin-x86/src/go/ast/
example_test.go 26 fset := token.NewFileSet() // positions are relative to fset
69 fset := token.NewFileSet() // positions are relative to fset
163 fset := token.NewFileSet() // positions are relative to fset
  /prebuilts/go/linux-x86/src/go/ast/
example_test.go 26 fset := token.NewFileSet() // positions are relative to fset
69 fset := token.NewFileSet() // positions are relative to fset
163 fset := token.NewFileSet() // positions are relative to fset
  /external/skqp/src/gpu/ops/
GrLatticeOp.cpp 134 SkPoint* positions = reinterpret_cast<SkPoint*>(verts); variable
135 SkPointPriv::SetRectTriStrip(positions, dstR.fLeft, dstR.fTop, dstR.fRight,
155 SkPoint* positions = reinterpret_cast<SkPoint*>(patchVerts); variable
156 SkMatrixPriv::MapPointsWithStride(patch.fViewMatrix, positions, vertexStride,
  /frameworks/base/cmds/statsd/benchmark/
metric_util.cpp 213 const std::vector<Position>& positions) {
216 for (const auto position : positions) {
226 const std::vector<Position>& positions) {
229 for (const auto position : positions) {
  /frameworks/base/core/jni/android/opengl/
util.cpp 312 FloatArrayHelper positions(env, positions_ref, positionsOffset, 0);
315 bool checkOK = positions.check() && sphere.check();
320 positions.bind();
328 const float* pSrc = positions.mData;
508 float[] positions, int positionsOffset,
519 FloatArrayHelper positions(env, positions_ref, positionsOffset, 0);
522 bool checkOK = ws.check() && positions.check() && indices.check();
534 positions.bind();
538 positions.mData, positions.mLength
    [all...]
  /frameworks/base/libs/hwui/
RecordedOp.h 361 TextOp(BASE_PARAMS, const glyph_t* glyphs, const float* positions, int glyphCount, float x,
365 , positions(positions)
370 const float* positions; member in struct:android::uirenderer::TextOp
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupUtil.java 236 * The sum of the last element in counts[] and the last element in positions[] is the total
240 public static boolean needTrimming(int count, int[] counts, int[] positions) {
241 // The sum of the last element in counts[] and the last element in positions[] is
244 return positions.length > 0 && counts.length > 0
245 && count <= (counts[counts.length - 1] + positions[positions.length - 1]);
  /external/deqp/modules/gles2/functional/
es2fShaderFragDataTests.cpp 154 const float positions[] = local
173 glu::va::Float("a_position", 2, 4, 0, &positions[0]),

Completed in 988 milliseconds

1 2 3 4 5 6 78 91011>>