/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | IntArrayListTest.java | 68 list.addInt(2); in testMakeImmutable() 69 list.addInt(4); in testMakeImmutable() 70 list.addInt(6); in testMakeImmutable() 71 list.addInt(8); in testMakeImmutable() 148 list.addInt(2); in testSize() 149 list.addInt(4); in testSize() 150 list.addInt(6); in testSize() 151 list.addInt(8); in testSize() 162 list.addInt(2); in testSet() 163 list.addInt(4); in testSet() [all …]
|
/external/skqp/src/core/ |
D | SkPictureRecord.cpp | 89 this->addInt(flags); in onDoSaveBehind() 129 this->addInt(flatFlags); in recordSaveLayer() 143 this->addInt(rec.fSaveLayerFlags); in recordSaveLayer() 325 this->addInt(prevOffset); in recordRestoreOffsetPlaceholder() 345 this->addInt(ClipParams_pack(op, doAA)); in recordClipRect() 367 this->addInt(ClipParams_pack(op, doAA)); in recordClipRRect() 388 this->addInt(pathID); in recordClipPath() 389 this->addInt(ClipParams_pack(op, doAA)); in recordClipPath() 410 this->addInt(ClipParams_pack(op, false)); in recordClipRegion() 432 this->addInt(mode); in onDrawPoints() [all …]
|
D | SkPathRef.cpp | 293 ptCount = safe.addInt(ptCount, 1); in deduce_pts_conics() 299 ptCount = safe.addInt(ptCount, 2); in deduce_pts_conics() 302 ptCount = safe.addInt(ptCount, 3); in deduce_pts_conics() 610 fVerbCnt = safe.addInt(fVerbCnt, numVbs); in growForRepeatedVerb() 611 fPointCnt = safe.addInt(fPointCnt, pCnt); in growForRepeatedVerb() 664 int newPointCnt = safe.addInt(fPointCnt, pCnt); in growForVerb() 665 int newVerbCnt = safe.addInt(fVerbCnt, 1); in growForVerb()
|
D | SkRegion_path.cpp | 134 maxTransitions = safe.addInt(maxTransitions, 2); in init() 138 size_t count = safe.mul(safe.addInt(maxHeight, 1), safe.addInt(3, maxTransitions)); in init()
|
D | SkSafeMath.h | 39 int addInt(int a, int b) { in addInt() function
|
D | SkImageInfo.cpp | 52 size_t bytes = safe.add(safe.mul(safe.addInt(this->height(), -1), rowBytes), in computeByteSize()
|
D | SkRegion.cpp | 1185 sum = safeMath.addInt(sum, ySpanCount); in validate_run_count() 1186 sum = safeMath.addInt(sum, ySpanCount); in validate_run_count() 1187 sum = safeMath.addInt(sum, ySpanCount); in validate_run_count() 1188 sum = safeMath.addInt(sum, intervalCount); in validate_run_count() 1189 sum = safeMath.addInt(sum, intervalCount); in validate_run_count()
|
D | SkPictureRecord.h | 119 void addInt(int value) { in addInt() function
|
/external/skia/src/core/ |
D | SkPictureRecord.cpp | 89 this->addInt(flags); in onDoSaveBehind() 129 this->addInt(flatFlags); in recordSaveLayer() 143 this->addInt(rec.fSaveLayerFlags); in recordSaveLayer() 325 this->addInt(prevOffset); in recordRestoreOffsetPlaceholder() 345 this->addInt(ClipParams_pack(op, doAA)); in recordClipRect() 367 this->addInt(ClipParams_pack(op, doAA)); in recordClipRRect() 388 this->addInt(pathID); in recordClipPath() 389 this->addInt(ClipParams_pack(op, doAA)); in recordClipPath() 410 this->addInt(ClipParams_pack(op, false)); in recordClipRegion() 441 this->addInt(mode); in onDrawPoints() [all …]
|
D | SkPathRef.cpp | 298 ptCount = safe.addInt(ptCount, 1); in deduce_pts_conics() 304 ptCount = safe.addInt(ptCount, 2); in deduce_pts_conics() 307 ptCount = safe.addInt(ptCount, 3); in deduce_pts_conics() 615 fVerbCnt = safe.addInt(fVerbCnt, numVbs); in growForRepeatedVerb() 616 fPointCnt = safe.addInt(fPointCnt, pCnt); in growForRepeatedVerb() 669 int newPointCnt = safe.addInt(fPointCnt, pCnt); in growForVerb() 670 int newVerbCnt = safe.addInt(fVerbCnt, 1); in growForVerb()
|
D | SkRegion_path.cpp | 134 maxTransitions = safe.addInt(maxTransitions, 2); in init() 138 size_t count = safe.mul(safe.addInt(maxHeight, 1), safe.addInt(3, maxTransitions)); in init()
|
D | SkSafeMath.h | 39 int addInt(int a, int b) { in addInt() function
|
D | SkImageInfo.cpp | 53 size_t bytes = safe.add(safe.mul(safe.addInt(this->height(), -1), rowBytes), in computeByteSize()
|
D | SkRegion.cpp | 1185 sum = safeMath.addInt(sum, ySpanCount); in validate_run_count() 1186 sum = safeMath.addInt(sum, ySpanCount); in validate_run_count() 1187 sum = safeMath.addInt(sum, ySpanCount); in validate_run_count() 1188 sum = safeMath.addInt(sum, intervalCount); in validate_run_count() 1189 sum = safeMath.addInt(sum, intervalCount); in validate_run_count()
|
D | SkPictureRecord.h | 119 void addInt(int value) { in addInt() function
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | IntArrayList.java | 153 addInt(index, element); in add() 160 public void addInt(int element) { in addInt() method in IntArrayList 161 addInt(size, element); in addInt() 167 private void addInt(int index, int element) { in addInt() method in IntArrayList
|
/external/flatbuffers/java/com/google/flatbuffers/ |
D | FlatBufferBuilder.java | 369 public void addInt (int x) { prep(Constants.SIZEOF_INT, 0); putInt (x); } in addInt() method in FlatBufferBuilder 686 …public void addInt (int o, int x, int d) { if(force_defaults || x != d) { addInt (x)… in addInt() method in FlatBufferBuilder 765 addInt(0); in endObject() 846 addInt(bb.capacity() - space); in finish()
|
/external/noto-fonts/emoji-compat/src/java/androidx/text/emoji/flatbuffer/ |
D | MetadataItem.java | 118 builder.addInt(0, id, 0); in addId() 147 for (int i = data.length - 1; i >= 0; i--) builder.addInt(data[i]); in createCodepointsVector()
|
D | MetadataList.java | 94 builder.addInt(0, version, 0); in addVersion()
|
/external/flatbuffers/tests/MyGame/Example/ |
D | TypeAliases.java | 82 public static void addI32(FlatBufferBuilder builder, int i32) { builder.addInt(4, i32, 0); } in addI32() 83 …public static void addU32(FlatBufferBuilder builder, long u32) { builder.addInt(5, (int)u32, (int)… in addU32()
|
D | Monster.java | 187 …esthashs32Fnv1(FlatBufferBuilder builder, int testhashs32Fnv1) { builder.addInt(16, testhashs32Fnv… in addTesthashs32Fnv1() 188 …sthashu32Fnv1(FlatBufferBuilder builder, long testhashu32Fnv1) { builder.addInt(17, (int)testhashu… in addTesthashu32Fnv1() 191 …thashs32Fnv1a(FlatBufferBuilder builder, int testhashs32Fnv1a) { builder.addInt(20, testhashs32Fnv… in addTesthashs32Fnv1a() 192 …hashu32Fnv1a(FlatBufferBuilder builder, long testhashu32Fnv1a) { builder.addInt(21, (int)testhashu… in addTesthashu32Fnv1a()
|
/external/flatbuffers/tests/union_vector/ |
D | Attacker.java | 26 …AttackDamage(FlatBufferBuilder builder, int swordAttackDamage) { builder.addInt(0, swordAttackDama… in addSwordAttackDamage()
|
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/ |
D | TableInNestedNS.java | 28 public static void addFoo(FlatBufferBuilder builder, int foo) { builder.addInt(0, foo, 0); } in addFoo()
|
/external/flatbuffers/php/ |
D | FlatbufferBuilder.php | 346 public function addInt($x) function in Google\\FlatBuffers\\FlatbufferBuilder 476 $this->addInt($x); 819 $this->addInt(0);
|
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/ |
D | AbstractHttp2Headers.java | 379 public Http2Headers addInt(CharSequence name, int value) { in addInt() method in AbstractHttp2Headers
|