Searched refs:position (Results 1 - 25 of 1199) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dext-vector-member-alignment.c6 float4 position; member in struct:struct1
10 float4 f(struct struct1* x) { return x->position; }
13 p->position.x = c;
14 *a = p->position.y;
15 *b = p->position[0];
16 p->position[2] = c;
/external/skia/src/sksl/ast/
H A DSkSLASTPositionNode.h17 * An AST node with an associated position in the source.
20 ASTPositionNode(Position position) argument
21 : fPosition(position) {}
H A DSkSLASTBreakStatement.h19 ASTBreakStatement(Position position) argument
20 : INHERITED(position, kBreak_Kind) {}
H A DSkSLASTContinueStatement.h19 ASTContinueStatement(Position position) argument
20 : INHERITED(position, kContinue_Kind) {}
H A DSkSLASTDiscardStatement.h19 ASTDiscardStatement(Position position) argument
20 : INHERITED(position, kDiscard_Kind) {}
/external/guava/guava/src/com/google/common/collect/
H A DAbstractIndexedListIterator.java29 * position. It does not support {@link #remove}, {@link #set}, or {@link #add}.
37 private int position; field in class:AbstractIndexedListIterator
47 * position is 0. That is, the first call to {@link #next()} will return the
59 * initial position. That is, the first call to {@link #nextIndex()} will
60 * return {@code position}, and the first call to {@link #next()} will return
62 * retrieve the preceding {@code position} elements.
64 * @throws IndexOutOfBoundsException if {@code position} is negative or is
68 protected AbstractIndexedListIterator(int size, int position) { argument
69 checkPositionIndex(position, size);
71 this.position
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DBitWriterBuffer.java9 int position = 0; field in class:BitWriterBuffer
13 this.initialPos = buffer.position();
20 int left = 8 - position % 8;
22 int current = (buffer.get(initialPos + position / 8));
25 buffer.put(initialPos + position / 8, (byte) (current > 127 ? current - 256 : current));
26 position += numBits;
32 buffer.position(initialPos + position / 8 + ((position % 8 > 0) ? 1 : 0));
H A DBitReaderBuffer.java9 int position; field in class:BitReaderBuffer
13 initialPos = buffer.position();
17 byte b = buffer.get(initialPos + position / 8);
19 int left = 8 - position % 8;
22 rc = (v << (position % 8) & 0xFF) >> ((position % 8) + (left - i));
23 position += i;
31 buffer.position(initialPos + (int) Math.ceil((double) position / 8));
36 return position;
[all...]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/reader/
H A DReaderException.java24 private final int position; field in class:ReaderException
26 public ReaderException(String name, int position, char character, String message) { argument
30 this.position = position;
42 return position;
49 + "\nin \"" + name + "\", position " + position;
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_cliptest_tmp.h54 float *position = out->data[pos]; local
61 float *clipvertex = position;
68 out->pre_clip_pos[i] = position[i];
74 if (-0.50 * position[0] + position[3] < 0) mask |= (1<<0);
75 if ( 0.50 * position[0] + position[3] < 0) mask |= (1<<1);
76 if (-0.50 * position[1] + position[3] < 0) mask |= (1<<2);
77 if ( 0.50 * position[
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
H A DMemoryDataStore.java26 private int position = offset;
28 growBufferIfNeeded(position);
29 buf[position++] = (byte)b;
33 growBufferIfNeeded(position + b.length);
34 System.arraycopy(b, 0, buf, position, b.length);
35 position += b.length;
39 growBufferIfNeeded(position + len);
40 System.arraycopy(b, off, buf, position, len);
41 position += len;
55 private int position
[all...]
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10tri/
H A Dd3d10tri.hlsl29 float4 position : POSITION;
35 float4 position : SV_POSITION;
42 result.position = input.position;
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tri/
H A Dd3d11tri.hlsl29 float4 position : POSITION;
35 float4 position : SV_POSITION;
42 result.position = input.position;
/external/protobuf/csharp/src/Google.Protobuf/
H A DCodedOutputStream.cs71 private int position; field in class:Google.Protobuf.CodedOutputStream
93 this.position = offset;
102 this.position = 0;
150 /// Returns the current position in the stream, or the position in the output buffer
158 return output.Position + position;
160 return position;
187 if (limit - position >= 4)
189 buffer[position++] = rawBytes[0];
190 buffer[position
[all...]
/external/skia/src/sksl/ir/
H A DSkSLBreakStatement.h20 BreakStatement(Position position) argument
21 : INHERITED(position, kBreak_Kind) {}
H A DSkSLContinueStatement.h20 ContinueStatement(Position position) argument
21 : INHERITED(position, kContinue_Kind) {}
H A DSkSLDiscardStatement.h20 DiscardStatement(Position position) argument
21 : INHERITED(position, kDiscard_Kind) {}
H A DSkSLIRNode.h20 IRNode(Position position) argument
21 : fPosition(position) {}
/external/bison/examples/calc++/
H A Dposition.hh34 ** \file ../../../../examples/calc++/position.hh
35 ** Define the yy::position class.
56 #line 57 "../../../../examples/calc++/position.hh"
57 /// Abstract a position.
58 class position class in namespace:yy
62 /// Construct a position.
63 explicit position (std::string* f = YY_NULL, function in class:yy::position
99 /// File name to which this position refers.
107 /// Add and assign a position.
108 inline position
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DSkippingCipher.java18 * Reset the cipher and then skip forward to a given position.
20 * @param position the number of bytes in to set the cipher state to.
21 * @return the byte position moved to.
23 long seekTo(long position); argument
26 * Return the current "position" of the cipher
28 * @return the current byte position.
/external/clang/test/PCH/
H A Dobjcxx-ivar-class.h9 S position; variable
11 @property(assign, nonatomic) S position; variable
15 @synthesize position; variable
/external/skia/src/sksl/
H A DSkSLErrorReporter.h22 void error(Position position, const char* msg) { argument
23 this->error(position, SkString(msg));
26 virtual void error(Position position, SkString msg) = 0;
/external/jsilver/src/com/google/streamhtmlparser/util/
H A DJavascriptTokenBuffer.java148 * @param position The index into the buffer
152 public char getChar(int position) { argument
153 assert(position < 0); // Developer error if it triggers.
155 int absolutePosition = getAbsolutePosition(position);
164 * Sets the given {@code input} at the given {@code position} of the buffer.
171 * @param position The index at which to set the character
175 public boolean setChar(int position, char input) { argument
176 assert(position < 0); // Developer error if it triggers.
178 int absolutePosition = getAbsolutePosition(position);
199 int position;
245 getAbsolutePosition(int position) argument
[all...]
/external/webrtc/webrtc/common_audio/vad/
H A Dvad_sp.c64 int position = -1; local
94 // |smallest_values|. If so, find the |position| where to insert the new value
100 position = 0;
102 position = 1;
105 position = 2;
107 position = 3;
111 position = 4;
113 position = 5;
116 position = 6;
118 position
[all...]
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DOpenSSLBIOSink.java30 private int position; field in class:OpenSSLBIOSink
43 return buffer.size() - position;
48 position = 0;
53 position += maxLength;
54 if (position == buffer.size()) {
68 public int position() { method in class:OpenSSLBIOSink
69 return position;

Completed in 3789 milliseconds

1234567891011>>