/external/cronet/third_party/boringssl/src/util/fipstools/delocate/ |
D | delocate.peg.go | 356 position, tokenIndex uint32 367 position, tokenIndex = 0, 0 394 tree.Add(rule, begin, position, tokenIndex) 396 if begin != position && position > max.end { 397 max = token32{rule, begin, position} 402 if buffer[position] != endSymbol { 403 position++ 429 position0, tokenIndex0 := position, tokenIndex 431 position1 := position 434 position3, tokenIndex3 := position, tokenIndex [all …]
|
/external/boringssl/src/util/fipstools/delocate/ |
D | delocate.peg.go | 356 position, tokenIndex uint32 367 position, tokenIndex = 0, 0 394 tree.Add(rule, begin, position, tokenIndex) 396 if begin != position && position > max.end { 397 max = token32{rule, begin, position} 402 if buffer[position] != endSymbol { 403 position++ 429 position0, tokenIndex0 := position, tokenIndex 431 position1 := position 434 position3, tokenIndex3 := position, tokenIndex [all …]
|
/external/cronet/third_party/boringssl/src/util/fipstools/acvp/acvptool/ |
D | parser.peg.go | 261 position, tokenIndex uint32 266 position, tokenIndex = 0, 0 293 tree.Add(rule, begin, position, tokenIndex) 295 if begin != position && position > max.end { 296 max = token32{rule, begin, position} 301 if buffer[position] != endSymbol { 302 position++ 328 position0, tokenIndex0 := position, tokenIndex 330 position1 := position 332 position2, tokenIndex2 := position, tokenIndex [all …]
|
/external/boringssl/src/util/fipstools/acvp/acvptool/ |
D | parser.peg.go | 261 position, tokenIndex uint32 266 position, tokenIndex = 0, 0 293 tree.Add(rule, begin, position, tokenIndex) 295 if begin != position && position > max.end { 296 max = token32{rule, begin, position} 301 if buffer[position] != endSymbol { 302 position++ 328 position0, tokenIndex0 := position, tokenIndex 330 position1 := position 332 position2, tokenIndex2 := position, tokenIndex [all …]
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | ArrayDecoders.java | 81 static int decodeVarint32(byte[] data, int position, Registers registers) { in decodeVarint32() argument 82 int value = data[position++]; in decodeVarint32() 85 return position; in decodeVarint32() 87 return decodeVarint32(value, data, position, registers); in decodeVarint32() 91 static int decodeVarint32(int firstByte, byte[] data, int position, Registers registers) { in decodeVarint32() argument 93 final byte b2 = data[position++]; in decodeVarint32() 96 return position; in decodeVarint32() 100 final byte b3 = data[position++]; in decodeVarint32() 103 return position; in decodeVarint32() 107 final byte b4 = data[position++]; in decodeVarint32() [all …]
|
/external/cronet/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | ArrayDecoders.java | 80 static int decodeVarint32(byte[] data, int position, Registers registers) { in decodeVarint32() argument 81 int value = data[position++]; in decodeVarint32() 84 return position; in decodeVarint32() 86 return decodeVarint32(value, data, position, registers); in decodeVarint32() 90 static int decodeVarint32(int firstByte, byte[] data, int position, Registers registers) { in decodeVarint32() argument 92 final byte b2 = data[position++]; in decodeVarint32() 95 return position; in decodeVarint32() 99 final byte b3 = data[position++]; in decodeVarint32() 102 return position; in decodeVarint32() 106 final byte b4 = data[position++]; in decodeVarint32() [all …]
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/common/src/main/java/com/google/android/exoplayer2/util/ |
D | ParsableByteArray.java | 31 private int position; field in ParsableByteArray 100 position = 0; 120 return limit - position; in bytesLeft() 140 return position; in getPosition() 150 public void setPosition(int position) { in setPosition() argument 152 Assertions.checkArgument(position >= 0 && position <= limit); in setPosition() 153 this.position = position; in setPosition() 181 setPosition(position + bytes); in skipBytes() 205 System.arraycopy(data, position, buffer, offset, length); in readBytes() 206 position += length; in readBytes() [all …]
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/common/src/main/java/com/google/android/exoplayer2/util/ |
D | ParsableByteArray.java | 31 private int position; field in ParsableByteArray 100 position = 0; 120 return limit - position; in bytesLeft() 140 return position; in getPosition() 150 public void setPosition(int position) { in setPosition() argument 152 Assertions.checkArgument(position >= 0 && position <= limit); in setPosition() 153 this.position = position; in setPosition() 181 setPosition(position + bytes); in skipBytes() 205 System.arraycopy(data, position, buffer, offset, length); in readBytes() 206 position += length; in readBytes() [all …]
|
/external/pigweed/pw_stream/ |
D | seek_test.cc | 35 size_t position = 2; in TEST() local 36 EXPECT_EQ(OkStatus(), CalculateSeek(35, Stream::kBeginning, 100, position)); in TEST() 37 EXPECT_EQ(position, 35u); in TEST() 41 size_t position = 99; in TEST() local 42 EXPECT_EQ(OkStatus(), CalculateSeek(0, Stream::kBeginning, 100, position)); in TEST() 43 EXPECT_EQ(position, 0u); in TEST() 47 size_t position = 0; in TEST() local 48 EXPECT_EQ(OkStatus(), CalculateSeek(100, Stream::kBeginning, 100, position)); in TEST() 49 EXPECT_EQ(position, 100u); in TEST() 53 size_t position = 2; in TEST() local [all …]
|
/external/turbine/java/com/google/turbine/binder/ |
D | ConstEvaluator.java | 173 throw error(t.position(), ErrorKind.EXPRESSION_ERROR); in eval() 214 log.error(classTy.position(), ErrorKind.CANNOT_RESOLVE, flat.getFirst()); in resolveClass() 218 throw error(classTy.position(), ErrorKind.UNEXPECTED_TYPE_PARAMETER, flat.getFirst()); in resolveClass() 222 classSym = resolveNext(classTy.position(), classSym, bit); in resolveClass() 227 private ClassSymbol resolveNext(int position, ClassSymbol sym, Ident bit) { in resolveNext() argument 231 position, ErrorKind.SYMBOL_NOT_FOUND, new ClassSymbol(sym.binaryName() + '$' + bit)); in resolveNext() 283 t.position(), in resolveField() 325 private Const cast(int position, Type ty, Const value) { in cast() argument 333 throw error(position, ErrorKind.EXPRESSION_ERROR); in cast() 335 return coerce(position, (Value) value, ((Type.PrimTy) ty).primkind()); in cast() [all …]
|
/external/smali/smali/src/main/java/org/jf/smali/ |
D | LiteralTools.java | 52 int position = 0; in parseByte() local 55 if (byteChars[position] == '-') { in parseByte() 56 position++; in parseByte() 60 if (byteChars[position] == '0') { in parseByte() 61 position++; in parseByte() 62 if (position == byteChars.length) { in parseByte() 64 } else if (byteChars[position] == 'x' || byteChars[position] == 'X') { in parseByte() 66 position++; in parseByte() 67 } else if (Character.digit(byteChars[position], 8) >= 0) { in parseByte() 77 while (position < byteChars.length) { in parseByte() [all …]
|
/external/google-smali/third_party/smali/src/main/java/com/android/tools/smali/smali/ |
D | LiteralTools.java | 51 int position = 0; in parseByte() local 54 if (byteChars[position] == '-') { in parseByte() 55 position++; in parseByte() 59 if (byteChars[position] == '0') { in parseByte() 60 position++; in parseByte() 61 if (position == byteChars.length) { in parseByte() 63 } else if (byteChars[position] == 'x' || byteChars[position] == 'X') { in parseByte() 65 position++; in parseByte() 66 } else if (Character.digit(byteChars[position], 8) >= 0) { in parseByte() 76 while (position < byteChars.length) { in parseByte() [all …]
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/doc/reference/jquery/ |
D | jquery-ui.css | 19 position: absolute; 46 position: absolute; 70 position: relative; 87 position: fixed; 94 position: absolute; 107 position: absolute; 116 position: relative; 133 position: relative; 141 position: absolute; 366 .ui-icon-blank { background-position: 16px 16px; } [all …]
|
D | jquery-ui.min.css | 7 …position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3…
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/doc/reference/jquery/ |
D | jquery-ui.min.css | 7 …position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3…
|
D | jquery-ui.css | 19 position: absolute; 46 position: absolute; 70 position: relative; 87 position: fixed; 94 position: absolute; 107 position: absolute; 116 position: relative; 133 position: relative; 141 position: absolute; 366 .ui-icon-blank { background-position: 16px 16px; } [all …]
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_cliptest_tmp.h | 74 float *position = out->data[pos]; in TAG() local 93 float *clipvertex = position; in TAG() 101 out->clip_pos[i] = position[i]; in TAG() 108 if (!(-0.50 * position[0] + position[3] >= 0)) mask |= (1<<0); in TAG() 109 if (!( 0.50 * position[0] + position[3] >= 0)) mask |= (1<<1); in TAG() 110 if (!(-0.50 * position[1] + position[3] >= 0)) mask |= (1<<2); in TAG() 111 if (!( 0.50 * position[1] + position[3] >= 0)) mask |= (1<<3); in TAG() 114 if (!(-position[0] + position[3] >= 0)) mask |= (1<<0); in TAG() 115 if (!( position[0] + position[3] >= 0)) mask |= (1<<1); in TAG() 116 if (!(-position[1] + position[3] >= 0)) mask |= (1<<2); in TAG() [all …]
|
/external/javaparser/javaparser-core-testing-bdd/src/test/resources/com/github/javaparser/ |
D | position_range_scenarios.story | 1 Scenario: a position is equal to another position at the same place 2 Given the position 10, 10 3 When I compare to position 10, 10 5 And it is not before the first position 6 And it is not after the first position 8 Scenario: a position is after another position 9 Given the position 10, 10 10 When I compare to position 20, 20 11 Then it is after the first position 13 And it is not before the first position [all …]
|
/external/flatbuffers/swift/Sources/FlatBuffers/ |
D | Verifier.swift | 77 public mutating func isAligned<T>(position: Int, type: T.Type) throws { in isAligned<T>() 83 let ptr = _buffer._storage.memory.advanced(by: position) in isAligned<T>() 90 position: position, in isAligned<T>() 101 public mutating func rangeInBuffer(position: Int, size: Int) throws { in rangeInBuffer() 102 let end = UInt(clamping: (position &+ size).magnitude) in rangeInBuffer() 104 throw FlatbuffersErrors.outOfBounds(position: end, end: capacity) in rangeInBuffer() 118 public mutating func inBuffer<T>(position: Int, of type: T.Type) throws { in inBuffer<T>() 119 try isAligned(position: position, type: type) in inBuffer<T>() 120 try rangeInBuffer(position: position, size: MemoryLayout<T>.size) in inBuffer<T>() 128 public mutating func visitTable(at position: Int) throws -> TableVerifier { in visitTable() [all …]
|
/external/cronet/third_party/brotli/enc/ |
D | backward_references_inc.h | 11 size_t num_bytes, size_t position, in EXPORT_FN() 23 const size_t pos_end = position + num_bytes; in EXPORT_FN() 25 position + num_bytes - FN(StoreLookahead)() + 1 : position; in EXPORT_FN() 30 size_t apply_random_heuristics = position + random_heuristics_window_size; in EXPORT_FN() 38 while (position + FN(HashTypeLength)() < pos_end) { in EXPORT_FN() 39 size_t max_length = pos_end - position; in EXPORT_FN() 40 size_t max_distance = BROTLI_MIN(size_t, position, max_backward_limit); in EXPORT_FN() 42 position + position_offset, max_backward_limit); in EXPORT_FN() 48 p1 = position >= 1 ? in EXPORT_FN() 49 ringbuffer[(size_t)(position - 1) & ringbuffer_mask] : 0; in EXPORT_FN() [all …]
|
/external/webrtc/modules/audio_coding/neteq/ |
D | audio_vector.cc | 48 size_t position, in CopyTo() argument 52 length = std::min(length, Size() - position); in CopyTo() 53 const size_t copy_index = (begin_index_ + position) % capacity_; in CopyTo() 103 size_t position) { in PushBack() argument 104 RTC_DCHECK_LE(position, append_this.Size()); in PushBack() 105 RTC_DCHECK_LE(length, append_this.Size() - position); in PushBack() 115 (append_this.begin_index_ + position) % append_this.capacity_; in PushBack() 163 size_t position) { in InsertAt() argument 167 position = std::min(Size(), position); in InsertAt() 172 if (position <= Size() - position) { in InsertAt() [all …]
|
/external/autotest/client/site_tests/platform_PrinterPpds/ |
D | helpers.py | 12 def _read_lines_with_prefix(document, position, prefix): argument 29 while document.startswith(prefix, position): 30 position_next_line = document.find(b'\n', position + len(prefix)) 34 lines.append(document[position:position_next_line]) 35 position = position_next_line 36 return lines, position 39 def _process_PJL_headers(doc, position, out): argument 58 position_pjl = doc.find(PJL_MARKER, position, position + MARGIN) 60 out += doc[position:(position_pjl+len(PJL_MARKER))] 61 position = position_pjl + len(PJL_MARKER) [all …]
|
/external/icu/android_icu4j/libcore_bridge/src/java/com/android/i18n/timezone/internal/ |
D | NioBufferIterator.java | 32 private int position; field in NioBufferIterator 55 position = offset; in seek() 60 position += byteCount; in skip() 65 return position; in pos() 72 checkReadBounds(position, length, byteCount); in readByteArray() 73 Memory.peekByteArray(address + position, bytes, arrayOffset, byteCount); in readByteArray() 74 position += byteCount; in readByteArray() 80 checkReadBounds(position, length, 1); in readByte() 81 byte result = Memory.peekByte(address + position); in readByte() 82 ++position; in readByte() [all …]
|
/external/sl4a/ScriptingLayerForAndroid/src/org/apache/harmony/niochar/charset/additional/ |
D | IBM437.java | 82 int bStart = bb.position(); in decodeLoop() 83 int cStart = cb.position(); in decodeLoop() 94 bb.position(i); in decodeLoop() 95 cb.position(cStart); in decodeLoop() 190 int byteArrStart = bb.position(); in encodeLoop() 193 for(x = cb.position(); x < cb.position()+rem; x++) { in encodeLoop() 200 cb.position(x); bb.position(byteArrStart); in encodeLoop() 204 cb.position(x); bb.position(byteArrStart); in encodeLoop() 207 cb.position(x); bb.position(byteArrStart); in encodeLoop() 210 cb.position(x); bb.position(byteArrStart); in encodeLoop() [all …]
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_setup_tri.c | 277 struct fixed_position* position, in do_triangle_ccw() argument 297 assert(position->area > 0); in do_triangle_ccw() 327 bbox.x0 = MIN3(position->x[0], position->x[1], position->x[2]) >> FIXED_ORDER; in do_triangle_ccw() 328 bbox.x1 = (MAX3(position->x[0], position->x[1], position->x[2]) - 1) >> FIXED_ORDER; in do_triangle_ccw() 331 bbox.y0 = (MIN3(position->y[0], position->y[1], position->y[2]) + adj) >> FIXED_ORDER; in do_triangle_ccw() 332 bbox.y1 = (MAX3(position->y[0], position->y[1], position->y[2]) - 1 + adj) >> FIXED_ORDER; in do_triangle_ccw() 420 vertx = _mm_load_si128((__m128i *)position->x); /* vertex x coords */ in do_triangle_ccw() 421 verty = _mm_load_si128((__m128i *)position->y); /* vertex y coords */ in do_triangle_ccw() 537 vertx = vec_load_si128((const uint32_t *) position->x); in do_triangle_ccw() 539 verty = vec_load_si128((const uint32_t *) position->y); in do_triangle_ccw() [all …]
|