Searched refs:position (Results 1 - 25 of 867) 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/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/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/icu/icu4c/source/layout/
H A DGlyphIterator.cpp20 : direction(1), position(-1), nextLimit(-1), prevLimit(-1),
40 position = glyphCount;
51 position = that.position;
70 position = that.position;
89 position = that.position;
111 position = prevLimit;
120 return glyphStorage.insertGlyphs(position, coun
[all...]
/external/ceres-solver/internal/ceres/
H A Dblock_structure.cc38 return (lhs.position < rhs.position);
H A Dblock_structure.h51 Block() : size(-1), position(-1) {}
52 Block(int size_, int position_) : size(size_), position(position_) {}
55 int position; // Position along the row/column. member in struct:ceres::internal::Block
59 Cell() : block_id(-1), position(-1) {}
61 : block_id(block_id_), position(position_) {}
66 int position; member in struct:ceres::internal::Cell
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArrayByteInput.java22 private int position; field in class:ByteArrayByteInput
29 return bytes[position++];
/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/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/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/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLBIOSink.java24 private int position; field in class:OpenSSLBIOSink
37 return buffer.size() - position;
42 position = 0;
47 position += maxLength;
48 if (position == buffer.size()) {
62 public int position() { method in class:OpenSSLBIOSink
63 return position;
/external/smali/smali/src/main/java/org/jf/smali/
H A DLiteralTools.java52 int position = 0;
55 if (byteChars[position] == '-') {
56 position++;
60 if (byteChars[position] == '0') {
61 position++;
62 if (position == byteChars.length) {
64 } else if (byteChars[position] == 'x' || byteChars[position] == 'X') {
66 position++;
67 } else if (Character.digit(byteChars[position],
[all...]
/external/libcxx/test/std/re/re.results/re.results.acc/
H A Dposition.pass.cpp14 // difference_type position(size_type sub = 0) const;
25 assert(m.position() == std::distance(s, m[0].first));
26 assert(m.position(0) == std::distance(s, m[0].first));
27 assert(m.position(1) == std::distance(s, m[1].first));
28 assert(m.position(2) == std::distance(s, m[2].first));
29 assert(m.position(3) == std::distance(s, m[3].first));
30 assert(m.position(4) == std::distance(s, m[4].first));
/external/chromium-trace/trace-viewer/tracing/tracing/ui/tracks/
H A Ddrawing_container.css11 position: relative;
18 position: absolute;
H A Dthread_track.css9 position: relative;
/external/deqp/framework/referencerenderer/
H A DrrFragmentPacket.hpp52 tcu::IVec2 position; //!< Position of (0,0) fragment. member in struct:rr::FragmentPacket
/external/jmonkeyengine/engine/src/core/com/jme3/collision/
H A DMotionAllowedListener.java40 * Check if motion allowed. Modify position and velocity vectors
43 * @param position
46 public void checkMotionAllowed(Vector3f position, Vector3f velocity); argument
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DCountingAdapter.java26 public Object getItem(int position) { argument
31 public long getItemId(int position) { argument
36 public View getView(int position, View convertView, ViewGroup parent) { argument
38 textView.setText("Item " + position);
/external/webrtc/src/common_audio/vad/
H A Dvad_sp.c63 int position = -1; local
96 // |low_value_vector|. If so, find the |position| where to insert the new
102 position = 0;
104 position = 1;
107 position = 2;
109 position = 3;
113 position = 4;
115 position = 5;
118 position = 6;
120 position
[all...]

Completed in 682 milliseconds

1234567891011>>