HomeSort by: relevance | last modified time | path
    Searched refs:add1 (Results 1 - 20 of 20) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/libgcc/config/arc/ieee-754/
gesf2.S 61 add1.f 0,r12,r0 ; check for NaN
62 add1.cc.f r12,r12,r1
67 add1.f 0,r12,r0 ; check for NaN
68 add1.cc.f r12,r12,r1
gtsf2.S 61 add1.f 0,r12,r0 ; check for NaN
62 add1.cc.f r12,r12,r1
67 add1.f 0,r12,r0 ; check for NaN
68 add1.cc.f r12,r12,r1
gedf2.S 61 add1.f 0,r12,DBL0H ; clear z; set c iff NaN
62 add1.cc.f r12,r12,DBL1H ; clear z; set c iff NaN
69 add1.f 0,r12,DBL0H
70 add1.cc.f r12,r12,DBL1H
gtdf2.S 61 add1.f 0,r12,DBL0H ; clear z; set c iff NaN
62 add1.cc.f r12,r12,DBL1H ; clear z; set c iff NaN
69 add1.f 0,r12,DBL1H
70 add1.cc.f r12,r12,DBL0H
orddf2.S 59 add1.f r12,r12,DBL0H /* clear z; set c if NaN. */
62 add1.cc.f r12,r12,DBL1H /* clear z; set c if NaN. */
ordsf2.S 59 add1.f r12,r12,r0 /* clear z; set c if NaN. */
62 add1.cc.f r12,r12,r1 /* clear z; set c if NaN. */
eqsf2.S 66 add1.f r12,r12,r0 /* set c iff NaN; also, clear z if NaN. */
eqdf2.S 71 add1.f r12,r12,DBL0H /* set c iff NaN; also, clear z if NaN. */
adddf3.S 255 add1.f 0,r8,r12
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_fixed.h 129 static inline uint_fixed_16_16_t add_fixed16(uint_fixed_16_16_t add1,
134 tmp = (u64)add1.val + add2.val;
139 static inline uint_fixed_16_16_t add_fixed16_u32(uint_fixed_16_16_t add1,
145 tmp = (u64)add1.val + tmp_add2.val;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_addrhashmap.h 278 AddBucket *add1 = (AddBucket*)InternalAlloc(newsize); local
279 internal_memset(add1, 0, newsize);
280 add1->cap = (newsize - sizeof(*add)) / sizeof(add->cells[0]) + 1;
281 add1->size = add->size;
282 internal_memcpy(add1->cells, add->cells, add->size * sizeof(add->cells[0]));
284 atomic_store(&b->add, (uptr)add1, memory_order_relaxed);
285 add = add1;
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_addrhashmap.h 315 AddBucket *add1 = (AddBucket*)InternalAlloc(newsize); variable
316 internal_memset(add1, 0, newsize);
317 add1->cap = (newsize - sizeof(*add)) / sizeof(add->cells[0]) + 1;
318 add1->size = add->size;
319 internal_memcpy(add1->cells, add->cells, add->size * sizeof(add->cells[0]));
321 atomic_store(&b->add, (uptr)add1, memory_order_relaxed);
322 add = add1;
  /src/external/gpl3/gcc.old/dist/libgcc/config/arc/ieee-754/arc600/
divsf3.S 137 add1.f r2,r3,r2
145 add1.f r2,r3,r2
154 add1.f r2,r3,r2
163 add1.f r2,r3,r2
168 add1.f r1,r3,r2
  /src/external/apache2/llvm/dist/llvm/examples/ParallelJIT/
ParallelJIT.cpp 52 // Create the add1 function entry and insert this entry into module M. The
57 Function::ExternalLinkage, "add1", M);
66 // Get pointers to the integer argument of the add1 function...
77 // Now, function add1 is ready.
97 // Get pointer to the integer argument of the add1 function...
276 // Create one thread for add1 and two threads for fib
277 struct threadParams add1 = { EE, add1F, 1000 }; local
282 int result = pthread_create( &add1Thread, nullptr, callFunc, &add1 );
310 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl;
  /src/sys/dev/marvell/
if_gfe.c 1746 uint32_t w0, add0, add1; local
1758 add1 = ((uint32_t) eaddr[2] << 0) |
1762 add1 = ((add1 & 0x00f0f0f0) >> 4) | ((add1 & 0x000f0f0f) << 4);
1763 add1 = ((add1 & 0x00cccccc) >> 2) | ((add1 & 0x00333333) << 2);
1764 add1 = ((add1 & 0x00aaaaaa) >> 1) | ((add1 & 0x00555555) << 1)
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/arc/
lib1funcs.S 115 add1.mi r0,r0,r1
134 add1.cs r0,r0,r1
473 add1.f r0,r1,r0
481 add1.f r0,r1,r0
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
getopt.d 1801 void add1() { num++; }
1810 args = ["program", "--add1", "--add2", "--add1", "--add", "5", "--add2", "--add", "10"];
1812 "add1", "Add 1 to num", &add1,
  /src/external/gpl3/gcc.old/dist/libgcc/soft-fp/
op-common.h 420 __label__ add1, add2, add3, add_done; \
450 goto add1; \
464 add1: \
  /src/sys/dev/pci/ixgbe/
ixgbe_phy.c 94 * @add1: addend 1
99 static u8 ixgbe_ones_comp_byte_add(u8 add1, u8 add2)
101 u16 sum = add1 + add2;
  /src/external/gpl2/xcvs/dist/src/
sanity.sh 18816 dotest binwrap3-sub2-add1 "grep file1.newbin sub2/CVS/Entries" \
    [all...]

Completed in 63 milliseconds