/external/llvm/test/Analysis/BasicAA/ |
D | sequential-gep.ll | 5 define void @t1([8 x i32]* %p, i32 %addend, i32* %q) { 7 %add = add nsw nuw i32 %addend, %knownnonzero 8 %gep1 = getelementptr [8 x i32], [8 x i32]* %p, i32 2, i32 %addend 15 define void @t2([8 x i32]* %p, i32 %addend, i32* %q) { 17 %add = add nsw nuw i32 %addend, %knownnonzero 18 %gep1 = getelementptr [8 x i32], [8 x i32]* %p, i32 1, i32 %addend 25 define void @t3([8 x i32]* %p, i32 %addend, i32* %q) { 27 %add = add nsw nuw i32 %addend, %knownnonzero 35 define void @t4([8 x i32]* %p, i32 %addend, i32* %q) { 37 %add = add nsw nuw i32 %addend, %knownnonzero [all …]
|
/external/pthreadpool/examples/ |
D | addition.c | 9 double *addend; member 14 context->sum[i] = context->augend[i] + context->addend[i]; in add_arrays() 21 double addend[ARRAY_SIZE] = { 0.25, -1.75, 0.0, 0.5 }; in main() local 30 struct array_addition_context context = { augend, addend, sum }; in main() 43 addend[0], addend[1], addend[2], addend[3]); in main()
|
/external/google-breakpad/src/common/ |
D | test_assembler.cc | 67 Label Label::operator+(uint64_t addend) const { in operator +() 69 l.value_->Set(this->value_, addend); in operator +() 106 uint64_t addend; in IsKnownConstant() local 107 value_->Get(&base, &addend); in IsKnownConstant() 109 if (value_p) *value_p = addend; in IsKnownConstant() 129 Label::Binding::Binding(uint64_t addend) in Binding() argument 130 : base_(NULL), addend_(addend), reference_count_(1) { } in Binding() 138 void Label::Binding::Set(Binding *binding, uint64_t addend) { in Set() argument 141 assert(addend_ == addend); in Set() 145 binding->Set(NULL, addend_ - addend); in Set() [all …]
|
D | test_assembler.h | 129 Label operator+(uint64_t addend) const; 176 Binding(uint64_t addend); 201 void Get(Binding **base, uint64_t *addend);
|
/external/brotli/c/fuzz/ |
D | decode_fuzzer.c | 13 size_t addend = 0; in LLVMFuzzerTestOneInput() local 15 addend = data[size - 1] & 7; in LLVMFuzzerTestOneInput() 26 const size_t total_out_limit = (addend == 0) ? (1 << 26) : (1 << 24); in LLVMFuzzerTestOneInput() 31 if (addend == 0) in LLVMFuzzerTestOneInput() 32 addend = size; in LLVMFuzzerTestOneInput() 35 size_t next_i = i + addend; in LLVMFuzzerTestOneInput()
|
/external/cronet/third_party/brotli/fuzz/ |
D | decode_fuzzer.c | 13 size_t addend = 0; in LLVMFuzzerTestOneInput() local 15 addend = data[size - 1] & 7; in LLVMFuzzerTestOneInput() 26 const size_t total_out_limit = (addend == 0) ? (1 << 26) : (1 << 24); in LLVMFuzzerTestOneInput() 31 if (addend == 0) in LLVMFuzzerTestOneInput() 32 addend = size; in LLVMFuzzerTestOneInput() 35 size_t next_i = i + addend; in LLVMFuzzerTestOneInput()
|
/external/pthreadpool/ |
D | README.md | 26 context->sum[i] = context->augend[i] + context->addend[i]; 33 double addend[ARRAY_SIZE] = { 0.25, -1.75, 0.0, 0.5 }; 42 struct array_addition_context context = { augend, addend, sum }; 55 addend[0], addend[1], addend[2], addend[3]);
|
/external/jemalloc_new/src/ |
D | nstime.c | 52 nstime_add(nstime_t *time, const nstime_t *addend) { in nstime_add() argument 53 assert(UINT64_MAX - time->ns >= addend->ns); in nstime_add() 55 time->ns += addend->ns; in nstime_add() 59 nstime_iadd(nstime_t *time, uint64_t addend) { in nstime_iadd() argument 60 assert(UINT64_MAX - time->ns >= addend); in nstime_iadd() 62 time->ns += addend; in nstime_iadd()
|
/external/llvm/test/CodeGen/ARM/ |
D | fast-isel-static.ll | 6 define void @myadd(float* %sum, float* %addend) nounwind { 9 %addend.addr = alloca float*, align 4 11 store float* %addend, float** %addend.addr, align 4 14 %tmp2 = load float*, float** %addend.addr, align 4
|
/external/llvm/test/Transforms/LoopStrengthReduce/ |
D | sext-ind-var.ll | 33 %addend = load float, float* %ptr, align 4 34 %nextsum = fadd float %sum, %addend 66 %addend = load float, float* %ptr, align 4 67 %nextsum = fadd float %sum, %addend 98 %addend = load float, float* %ptr, align 4 99 %nextsum = fadd float %sum, %addend 132 %addend = load float, float* %ptr, align 4 133 %nextsum = fadd float %sum, %addend
|
/external/grpc-grpc/test/core/gpr/ |
D | time_test.cc | 185 gpr_timespec addend[3]; in test_sticky_infinities() local 188 addend[0] = gpr_inf_future(GPR_TIMESPAN); in test_sticky_infinities() 189 addend[1] = gpr_inf_past(GPR_TIMESPAN); in test_sticky_infinities() 190 addend[2] = gpr_time_0(GPR_TIMESPAN); in test_sticky_infinities() 194 for (j = 0; j != sizeof(addend) / sizeof(addend[0]); j++) { in test_sticky_infinities() 195 gpr_timespec x = gpr_time_add(infinity[i], addend[j]); in test_sticky_infinities() 197 x = gpr_time_sub(infinity[i], addend[j]); in test_sticky_infinities()
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | tiled_dot_emitter.cc | 234 llvm::Value* rhs, llvm::Value* addend, in ColumnMajorMatrixVectorProductEmitter() argument 240 addend_(addend), in ColumnMajorMatrixVectorProductEmitter() 247 CHECK(!has_addend() || addend != nullptr); in ColumnMajorMatrixVectorProductEmitter() 462 llvm::Value* rhs, llvm::Value* addend, in RowMajorMatrixVectorProductEmitter() argument 467 addend_(addend), in RowMajorMatrixVectorProductEmitter() 474 CHECK(!has_addend() || addend != nullptr); in RowMajorMatrixVectorProductEmitter() 971 llvm::Value* lhs, llvm::Value* rhs, llvm::Value* addend, in GetGemvBuffersWithCanonicalType() argument 984 llvm::Type* addend_type = addend ? addend->getType() : nullptr; in GetGemvBuffersWithCanonicalType() 992 addend ? b->CreateBitCast(addend, GetPointerToElementType(addend_type)) in GetGemvBuffersWithCanonicalType() 1004 llvm::Value* rhs, llvm::Value* addend, in EmitRowMajorGemv() argument [all …]
|
D | tiled_dot_emitter.h | 30 llvm::Value* rhs, llvm::Value* addend, 37 llvm::Value* addend, llvm::Value* result,
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldImpl.h | 154 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend) in RelocationEntry() argument 155 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry() 158 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument 160 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry() 164 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument 166 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry() 169 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument 173 Addend(SectionAOffset - SectionBOffset + addend), IsPCRel(IsPCRel), in RelocationEntry() 179 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument 184 Addend(SectionAOffset - SectionBOffset + addend), IsPCRel(IsPCRel), in RelocationEntry()
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | cudnn_fused_conv_rewriter.cc | 241 HloInstruction* addend = nullptr; in FuseBiasOrSideInput() local 246 m::Op(&addend)); in FuseBiasOrSideInput() 283 addend->opcode() == HloOpcode::kBroadcast && in FuseBiasOrSideInput() 284 addend->dimensions().size() == 1 && in FuseBiasOrSideInput() 285 addend->dimensions(0) == in FuseBiasOrSideInput() 287 IsLosslesslyConvertibleTo(addend, bias_ty); in FuseBiasOrSideInput() 289 bool addend_may_be_rank0_bias = addend->opcode() == HloOpcode::kBroadcast && in FuseBiasOrSideInput() 290 addend->dimensions().empty() && in FuseBiasOrSideInput() 291 IsLosslesslyConvertibleTo(addend, bias_ty); in FuseBiasOrSideInput() 296 new_operands[2] = MakeConvertToHlo(addend->mutable_operand(0), bias_ty, in FuseBiasOrSideInput() [all …]
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldImpl.h | 152 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend) in RelocationEntry() argument 153 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry() 156 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument 158 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry() 161 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument 163 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry() 166 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument 170 Addend(SectionAOffset - SectionBOffset + addend), IsPCRel(IsPCRel), in RelocationEntry()
|
/external/llvm/test/CodeGen/Thumb2/ |
D | thumb2-uxt_rot.ll | 42 %addend = zext i8 %X.trunc to i32 44 %sum = add i32 %A, %addend 53 %addend = zext i16 %X.trunc to i32 55 %sum = add i32 %A, %addend
|
D | thumb2-sxt_rot.ll | 38 %addend = sext i16 %X.trunc to i32 40 %sum = add i32 %A, %addend
|
/external/tensorflow/tensorflow/lite/delegates/gpu/gl/kernels/ |
D | add_test.cc | 35 TensorRef<BHWC> augend, addend, output; in TEST() local 40 addend.type = DataType::FLOAT32; in TEST() 41 addend.ref = 1; in TEST() 42 addend.shape = BHWC(1, 2, 2, 1); in TEST() 50 {augend, addend}, {output}); in TEST()
|
/external/clang/test/CodeGen/ |
D | cleanup-stack.c | 6 int addend; member 10 *p->var += p->addend; in f0()
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/tests/ |
D | cpu_infeed_test.cc | 139 auto addend = Reduce(infeed, ConstantR0<float>(&builder, 0.0f), in TEST_F() local 141 Add(prev, addend); in TEST_F() 228 auto addend = in TEST_F() local 231 auto result = Add(GetTupleElement(prev, 0), addend); in TEST_F()
|
/external/caliper/caliper/src/main/java/com/google/caliper/util/ |
D | ShortDuration.java | 121 public abstract ShortDuration plus(ShortDuration addend); in plus() argument 168 @Override public ShortDuration plus(ShortDuration addend) { 169 return addend; 219 @Override public ShortDuration plus(ShortDuration addend) { in plus() argument 220 return new PositiveShortDuration(picos + addend.picos); in plus()
|
/external/jemalloc_new/include/jemalloc/internal/ |
D | nstime.h | 20 void nstime_add(nstime_t *time, const nstime_t *addend); 21 void nstime_iadd(nstime_t *time, uint64_t addend);
|
/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/ |
D | ir_array.cc | 437 llvm::Value* addend = in Linearize() local 440 addend = builder->CreateZExtOrTrunc(addend, index_type_); in Linearize() 441 logical_linear_index = builder->CreateAdd(logical_linear_index, addend, "", in Linearize() 457 llvm::Value* addend = builder->CreateMul((*this)[i], multiplier, "", in Linearize() local 459 addend = builder->CreateZExtOrTrunc(addend, index_type_); in Linearize() 460 logical_linear_index = builder->CreateAdd(logical_linear_index, addend, "", in Linearize()
|
/external/guava/android/guava-tests/test/com/google/common/util/concurrent/ |
D | AtomicLongMapTest.java | 199 long addend = random.nextInt(MAX_ADDEND); in testAddAndGet() local 202 long result = map.addAndGet(key, addend); in testAddAndGet() 204 assertEquals(before + addend, after); in testAddAndGet() 206 addend = after; in testAddAndGet() 234 long addend = random.nextInt(MAX_ADDEND); in testGetAndAdd() local 237 long result = map.getAndAdd(key, addend); in testGetAndAdd() 239 assertEquals(before + addend, after); in testGetAndAdd() 241 addend = after; in testGetAndAdd()
|