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

12 3

  /external/jemalloc/test/unit/
nstime.c 196 nstime_t addend; local
197 nstime_init2(&addend, 631152000, 0);
198 nstime_add(&nst, &addend);
  /external/jemalloc_new/test/unit/
nstime.c 218 nstime_t addend; local
219 nstime_init2(&addend, 631152000, 0);
220 nstime_add(&nst, &addend);
  /bionic/linker/
linker.cpp     [all...]
  /external/python/cpython3/Modules/_io/
fileio.c 651 size_t addend; local
658 addend = currentsize >> 3;
660 addend = 256 + currentsize;
661 if (addend < SMALLCHUNK)
663 addend = SMALLCHUNK;
664 return addend + currentsize;
    [all...]
winconsoleio.c 761 DWORD addend; local
767 addend = currentsize >> 3;
769 addend = 256 + currentsize;
770 if (addend < SMALLCHUNK)
772 addend = SMALLCHUNK;
773 return addend + currentsize;
    [all...]
  /external/python/cpython2/Lib/logging/
handlers.py 276 addend = -3600
278 addend = 3600
279 newRolloverAt += addend
341 addend = 3600
343 addend = -3600
344 timeTuple = time.localtime(t + addend)
364 addend = -3600
366 addend = 3600
367 newRolloverAt += addend
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/
AtomicLongMapTest.java 189 long addend = random.nextInt(MAX_ADDEND); local
192 long result = map.addAndGet(key, addend);
194 assertEquals(before + addend, after);
196 addend = after;
224 long addend = random.nextInt(MAX_ADDEND); local
227 long result = map.getAndAdd(key, addend);
229 assertEquals(before + addend, after);
231 addend = after;
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AtomicLongMapTest.java 204 long addend = random.nextInt(MAX_ADDEND); local
207 long result = map.addAndGet(key, addend);
209 assertEquals(before + addend, after);
211 addend = after;
239 long addend = random.nextInt(MAX_ADDEND); local
242 long result = map.getAndAdd(key, addend);
244 assertEquals(before + addend, after);
246 addend = after;
  /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
ir_array.h 101 // Returns an index that adds `addend` to the given `dim` of the object.
102 Index AddOffsetToDim(llvm::Value* addend, int64 dim,
105 multi_index[dim] = b->CreateAdd(multi_index[dim], addend);
ir_array.cc 321 llvm::Value* addend = local
324 addend = builder->CreateZExtOrTrunc(addend, index_type_);
325 logical_linear_index = builder->CreateAdd(logical_linear_index, addend, "",
kernel_tiling.cc 67 llvm::Value* addend = b->CreateMul( local
70 linear_index = b->CreateAdd(linear_index, addend, "",
  /external/python/cpython3/Lib/logging/
handlers.py 321 addend = -3600
323 addend = 3600
324 newRolloverAt += addend
385 addend = 3600
387 addend = -3600
388 timeTuple = time.localtime(t + addend)
407 addend = -3600
409 addend = 3600
410 newRolloverAt += addend
    [all...]
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
ittnotify_config.h 264 __TBB_machine_fetchadd4(volatile void* ptr, long addend) ITT_INLINE_ATTRIBUTE;
265 ITT_INLINE long __TBB_machine_fetchadd4(volatile void* ptr, long addend)
270 : "0"(addend), "m"(*(long*)ptr)
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/IntelJITEvents/
ittnotify_config.h 264 __TBB_machine_fetchadd4(volatile void* ptr, long addend) ITT_INLINE_ATTRIBUTE;
265 ITT_INLINE long __TBB_machine_fetchadd4(volatile void* ptr, long addend)
270 : "0"(addend), "m"(*(long*)ptr)
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 517 int64_t addend = 0;
522 // TODO: Read implicit addend from section data.
527 addend = ERela->r_addend;
557 fmt << Target << (addend < 0 ? "" : "+") << addend << "-P";
568 fmt << Target << (addend < 0 ? "" : "+") << addend;
581 if (addend != 0)
582 fmt << (addend < 0 ? "" : "+") << addend;
    [all...]
  /external/iproute2/tc/
f_flow.c 37 "OPS := [ or NUM | and NUM | xor NUM | rshift NUM | addend NUM ]\n"
98 static int get_addend(__u32 *addend, char *argv, __u32 keys)
129 *addend = tmp;
191 } else if (matches(*argv, "addend") == 0) {
194 fprintf(stderr, "Illegal \"addend\"\n");
330 fprintf(f, "addend 0x%x ",
  /external/u-boot/lib/efi_loader/
efi_runtime.c 77 long addend; member in struct:elf_rela
276 newaddr = rel->addend + offset - CONFIG_SYS_TEXT_BASE;
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
cpu_layout_assignment_test.cc 276 HloInstruction* addend = builder.AddInstruction( local
285 dot_shape, HloOpcode::kAdd, dot_result, addend));
288 dot_shape, HloOpcode::kAdd, addend, dot_result));
  /external/elfutils/libdwfl/
relocate.c 327 const GElf_Sxword *addend,
388 if (addsub != 0 && addend == NULL) \
421 if (addend)
423 /* For the addend form, we have the value already. */
424 value += *addend;
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nvfx_fragprog.c 483 struct nvfx_src addend = nvfx_src(nvfx_fp_imm(fpc, 0, 0, 0, 1)); local
484 addend.swz[0] = fsrc->Register.SwizzleX;
485 addend.swz[1] = fsrc->Register.SwizzleY;
486 addend.swz[2] = fsrc->Register.SwizzleZ;
487 addend.swz[3] = fsrc->Register.SwizzleW;
489 nvfx_fp_emit(fpc, arith(0, ADD, src[i].reg, NVFX_FP_MASK_ALL, tgsi_src(fpc, fsrc), addend, none));
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
APFloat.cpp 868 /* Multiply the significand of the RHS. If ADDEND is non-NULL, add it
872 APFloat::multiplySignificand(const APFloat &rhs, const APFloat *addend)
902 if (addend) {
927 APFloat extendedAddend(*addend);
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
reduce.rs 391 static void hsgCombine(Histogram *accum, const Histogram *addend) {
393 (*accum)[i] += (*addend)[i];
  /external/llvm/test/MC/Mips/
sort-relocation-table.s 6 # to evaluate them. This AHL component is an addend with the same number of
8 # sufficiently sized addend in a single relocation.
10 # The O32 ABI for example, uses REL relocations which store the addend in the
12 # so the addend is limited to 16-bit. This ABI resolves the limitation by
14 # addend between the linked relocations. The ABI mandates that such relocations
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Mips/
sort-relocation-table.s 6 # to evaluate them. This AHL component is an addend with the same number of
8 # sufficiently sized addend in a single relocation.
10 # The O32 ABI for example, uses REL relocations which store the addend in the
12 # so the addend is limited to 16-bit. This ABI resolves the limitation by
14 # addend between the linked relocations. The ABI mandates that such relocations
  /external/libunwind_llvm/src/
Unwind-EHABI.cpp 309 uint32_t addend = 0; local
316 addend |= (v & 0x7f) << shift;
324 sp += 0x204 + (addend << 2);
    [all...]

Completed in 4938 milliseconds

12 3