HomeSort by relevance Sort by last modified time
    Searched full:storeinc (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
dtoa.cpp 112 /* The following definition of Storeinc is appropriate for MIPS processors.
116 static ALWAYS_INLINE uint32_t* storeInc(uint32_t* p, uint16_t high, uint16_t low)
338 xc = storeInc(xc, z2, z);
350 xc = storeInc(xc, z, z2);
539 xc = storeInc(xc, z, y);
546 xc = storeInc(xc, z, y);
658 bx = storeInc(bx, z, y);
690 bx = storeInc(bx, z, y);
    [all...]
  /bionic/libc/stdlib/
strtod.c 222 /* The following definition of Storeinc is appropriate for MIPS processors.
224 * #define Storeinc(a,b,c) (*a++ = b << 16 | c & 0xffff)
227 #define Storeinc(a,b,c) \
231 #define Storeinc(a,b,c) \
714 Storeinc(xc, z2, z);
727 Storeinc(xc, z, z2);
979 Storeinc(xc, z, y);
989 Storeinc(xc, z, y);
    [all...]
  /external/chromium/base/third_party/dmg_fp/
dtoa.cc 325 /* The following definition of Storeinc is appropriate for MIPS processors.
327 * #define Storeinc(a,b,c) (*a++ = b << 16 | c & 0xffff)
330 #define Storeinc(a,b,c) (((unsigned short *)a)[1] = (unsigned short)b, \
333 #define Storeinc(a,b,c) (((unsigned short *)a)[0] = (unsigned short)b, \
862 Storeinc(xc, z2, z);
875 Storeinc(xc, z, z2);
1122 Storeinc(xc, z, y);
1130 Storeinc(xc, z, y);
    [all...]
  /external/chromium_org/base/third_party/dmg_fp/
dtoa.cc 331 /* The following definition of Storeinc is appropriate for MIPS processors.
333 * #define Storeinc(a,b,c) (*a++ = b << 16 | c & 0xffff)
336 #define Storeinc(a,b,c) (((unsigned short *)a)[1] = (unsigned short)b, \
339 #define Storeinc(a,b,c) (((unsigned short *)a)[0] = (unsigned short)b, \
868 Storeinc(xc, z2, z);
881 Storeinc(xc, z, z2);
1128 Storeinc(xc, z, y);
1136 Storeinc(xc, z, y);
    [all...]

Completed in 187 milliseconds