HomeSort by relevance Sort by last modified time
    Searched refs:addend (Results 1 - 25 of 70) sorted by null

1 2 3

  /development/vndk/tools/header-checker/src/repr/
ir_reader.h 67 void Merge(IRReader &&addend) {
68 MergeElements(&module_->functions_, std::move(addend.module_->functions_));
70 std::move(addend.module_->global_variables_));
72 std::move(addend.module_->record_types_));
74 std::move(addend.module_->enum_types_));
76 std::move(addend.module_->pointer_types_));
78 std::move(addend.module_->lvalue_reference_types_));
80 std::move(addend.module_->rvalue_reference_types_));
82 std::move(addend.module_->array_types_));
84 std::move(addend.module_->builtin_types_))
    [all...]
ir_reader.cpp 54 const BuiltinTypeIR *builtin_type, const IRReader &addend,
78 const TypeIR *ud_type, const IRReader &addend,
95 AbiDiffHelper diff_helper(module_->type_graph_, addend.module_->type_graph_,
116 const TypeIR *addend_node, const IRReader &addend,
139 addend_node, addend, unique_type_id, local_to_global_type_id_map);
147 const IRReader &addend,
163 // If that did not go through, look at the addend's type_map_ and get the
165 auto local_type_it = addend.module_->type_graph_.find(referenced_type_id);
166 if (local_type_it != addend.module_->type_graph_.end()) {
170 MergeType(local_type_it->second, addend, local_to_global_type_id_map)
    [all...]
  /external/clang/test/CodeGen/
cleanup-stack.c 6 int addend; member in struct:s0
10 *p->var += p->addend;
  /device/google/contexthub/firmware/os/cpu/x86/
atomic.c 19 uint32_t atomicAdd32bits(volatile uint32_t *val, uint32_t addend)
25 } while (!atomicCmpXchg32bits(val, old, old + addend));
30 uint32_t atomicAddByte(volatile uint8_t *val, uint32_t addend)
36 } while (!atomicCmpXchgByte(val, old, old + addend));
  /device/google/contexthub/firmware/os/cpu/cortexm4/
atomic.c 19 uint32_t atomicAddByte(volatile uint8_t *byte, uint32_t addend)
28 :"=r"(prevVal), "=r"(storeFailed), "=r"(tmp), "=r"(addend), "=r"(byte)
29 :"3"(addend), "4"(byte)
37 uint32_t atomicAdd32bits(volatile uint32_t *word, uint32_t addend)
46 :"=r"(prevVal), "=r"(storeFailed), "=r"(tmp), "=r"(addend), "=r"(word)
47 :"3"(addend), "4"(word)
  /external/brotli/c/fuzz/
decode_fuzzer.c 13 size_t addend = 0; local
15 addend = data[size - 1] & 7;
26 const size_t total_out_limit = (addend == 0) ? (1 << 26) : (1 << 24);
31 if (addend == 0)
32 addend = size;
33 /* Test both fast (addend == size) and slow (addend <= 7) decoding paths. */
35 size_t next_i = i + addend;
  /device/google/contexthub/firmware/os/inc/
atomic.h 34 uint32_t atomicAddByte(volatile uint8_t *byte, uint32_t addend);
35 uint32_t atomicAdd32bits(volatile uint32_t *word, uint32_t addend);
  /external/google-breakpad/src/common/
test_assembler.cc 67 Label Label::operator+(uint64_t addend) const {
69 l.value_->Set(this->value_, addend);
106 uint64_t addend; local
107 value_->Get(&base, &addend);
109 if (value_p) *value_p = addend;
129 Label::Binding::Binding(uint64_t addend)
130 : base_(NULL), addend_(addend), reference_count_(1) { }
138 void Label::Binding::Set(Binding *binding, uint64_t addend) {
141 assert(addend_ == addend);
145 binding->Set(NULL, addend_ - addend);
    [all...]
test_assembler.h 129 Label operator+(uint64_t addend) const;
176 Binding(uint64_t addend);
184 // Set this binding to be equal to BINDING + ADDEND. If BINDING is
185 // NULL, then set this binding to the known constant ADDEND.
193 // NULL, and set ADDEND to its value.
196 // chain (which will always be unconstrained), and set ADDEND to the
200 // ADDEND unchanged.
201 void Get(Binding **base, uint64_t *addend);
  /external/jemalloc_new/src/
nstime.c 52 nstime_add(nstime_t *time, const nstime_t *addend) {
53 assert(UINT64_MAX - time->ns >= addend->ns);
55 time->ns += addend->ns;
59 nstime_iadd(nstime_t *time, uint64_t addend) {
60 assert(UINT64_MAX - time->ns >= addend);
62 time->ns += addend;
  /external/jemalloc_new/include/jemalloc/internal/
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/cpu/
tiled_dot_emitter.h 32 llvm::Value* addend, llvm::Value* result,
39 llvm::Value* rhs, llvm::Value* addend,
tiled_dot_emitter.cc 233 llvm::Value* rhs, llvm::Value* addend,
239 addend_(addend),
245 CHECK(!has_addend() || addend != nullptr);
459 llvm::Value* rhs, llvm::Value* addend,
464 addend_(addend),
470 CHECK(!has_addend() || addend != nullptr);
    [all...]
  /external/grpc-grpc/test/core/gpr/
time_test.cc 185 gpr_timespec addend[3]; local
188 addend[0] = gpr_inf_future(GPR_TIMESPAN);
189 addend[1] = gpr_inf_past(GPR_TIMESPAN);
190 addend[2] = gpr_time_0(GPR_TIMESPAN);
194 for (j = 0; j != sizeof(addend) / sizeof(addend[0]); j++) {
195 gpr_timespec x = gpr_time_add(infinity[i], addend[j]);
197 x = gpr_time_sub(infinity[i], addend[j]);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 130 /// Addend - the relocation addend encoded in the instruction itself. Also
132 int64_t Addend;
155 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend)
156 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
159 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
161 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
165 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
cudnn_fused_conv_rewriter.cc 107 // Then try to match each addend with one of the three patterns: bias, conv,
118 for (auto addend : addends) {
119 if (addend) {
120 if (bias == nullptr && Match(addend, bias_pattern)) {
122 } else if (conv_instr == nullptr && Match(addend, conv_pattern)) {
124 } else if (side_input == nullptr && Match(addend, side_input_pattern)) {
  /external/jemalloc/src/
nstime.c 55 nstime_add(nstime_t *time, const nstime_t *addend)
58 assert(UINT64_MAX - time->ns >= addend->ns);
60 time->ns += addend->ns;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 130 /// Addend - the relocation addend encoded in the instruction itself. Also
132 int64_t Addend;
152 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend)
153 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
156 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
158 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
161 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
    [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 107 int64_t Addend; // Addend encoded in the instruction itself, if any.
110 RelocationEntry(StringRef t, uint64_t offset, uint32_t data, int64_t addend)
111 : Target(t), Offset(offset), Data(data), Addend(addend),
  /external/jemalloc/include/jemalloc/internal/
nstime.h 28 void nstime_add(nstime_t *time, const nstime_t *addend);
  /external/llvm/test/MC/PowerPC/
ppc64-relocs-01.s 33 # 1. A R_PPC64_ADDR64 against the .text segment plus addend (the function
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/PowerPC/
ppc64-relocs-01.s 33 # 1. A R_PPC64_ADDR64 against the .text segment plus addend (the function
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/tests/
cpu_infeed_test.cc 139 auto addend = Reduce(infeed, ConstantR0<float>(&builder, 0.0f), local
141 Add(prev, addend);
228 auto addend =
231 auto result = Add(GetTupleElement(prev, 0), addend);
  /external/caliper/caliper/src/main/java/com/google/caliper/util/
ShortDuration.java 119 * addend}.
121 public abstract ShortDuration plus(ShortDuration addend);
168 @Override public ShortDuration plus(ShortDuration addend) {
169 return addend;
219 @Override public ShortDuration plus(ShortDuration addend) {
220 return new PositiveShortDuration(picos + addend.picos);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
ELF.h 204 int64_t r_add; // explicit relocation addend
205 bool r_rela; // if true then the addend is part of the entry
206 // otherwise the addend is at the location specified
220 bool rela = true, int64_t addend = 0) :
222 r_add(addend), r_rela(rela) {}

Completed in 1052 milliseconds

1 2 3