HomeSort by relevance Sort by last modified time
    Searched refs:dstAddr (Results 1 - 13 of 13) sorted by null

  /external/deqp/framework/delibs/dethread/
deAtomic.h 36 * \param dstAddr Destination address.
39 DE_INLINE deInt32 deAtomicIncrement32 (deInt32 volatile* dstAddr)
42 return _InterlockedIncrement((long volatile*)dstAddr);
44 return __sync_add_and_fetch(dstAddr, 1);
52 * \param dstAddr Destination address.
55 DE_INLINE deInt32 deAtomicDecrement32 (deInt32 volatile* dstAddr)
58 return _InterlockedDecrement((long volatile*)dstAddr);
60 return __sync_sub_and_fetch(dstAddr, 1);
68 * \param dstAddr Destination address.
71 * \return compare value if CAS passes, *dstAddr value otherwis
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
vg_translate.h 40 void *dstAddr);
vg_translate.c 35 void *dstAddr)
41 VGint *dst = (VGint *)dstAddr;
54 VGint *dst = (VGint *)dstAddr;
67 VGint *dst = (VGint *)dstAddr;
80 VGshort *dst = (VGshort *)dstAddr;
96 VGshort *dst = (VGshort *)dstAddr;
114 VGshort *dst = (VGshort *)dstAddr;
132 VGubyte *dst = (VGubyte *)dstAddr;
143 VGint *dst = (VGint *)dstAddr;
156 VGint *dst = (VGint *)dstAddr;
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
vg_translate.h 40 void *dstAddr);
vg_translate.c 35 void *dstAddr)
41 VGint *dst = (VGint *)dstAddr;
54 VGint *dst = (VGint *)dstAddr;
67 VGint *dst = (VGint *)dstAddr;
80 VGshort *dst = (VGshort *)dstAddr;
96 VGshort *dst = (VGshort *)dstAddr;
114 VGshort *dst = (VGshort *)dstAddr;
132 VGubyte *dst = (VGubyte *)dstAddr;
143 VGint *dst = (VGint *)dstAddr;
156 VGint *dst = (VGint *)dstAddr;
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXLowerAggrCopies.cpp 34 Instruction *splitAt, Value *srcAddr, Value *dstAddr, Value *len,
46 // srcAddr and dstAddr are expected to be pointer types,
49 unsigned dstAS = dyn_cast<PointerType>(dstAddr->getType())->getAddressSpace();
53 dstAddr = builder.CreateBitCast(dstAddr, Type::getInt8PtrTy(Context, dstAS));
63 // store at dstAddr+ind
64 loop.CreateStore(val, loop.CreateGEP(dstAddr, ind), dstVolatile);
74 static void convertMemSetToLoop(Instruction *splitAt, Value *dstAddr,
84 unsigned dstAS = dyn_cast<PointerType>(dstAddr->getType())->getAddressSpace();
87 dstAddr
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
pack.h 55 GLenum dstFormat, GLenum dstType, GLvoid *dstAddr,
150 GLvoid *dstAddr);
156 GLvoid *dstAddr);
pack.c 533 GLvoid *dstAddr)
539 pack_uint_from_uint_rgba(ctx, dstAddr, dstFormat, rgba, n);
542 pack_int_from_uint_rgba(ctx, dstAddr, dstFormat, rgba, n);
545 pack_ushort_from_uint_rgba(ctx, dstAddr, dstFormat, rgba, n);
548 pack_short_from_uint_rgba(ctx, dstAddr, dstFormat, rgba, n);
551 pack_ubyte_from_uint_rgba(ctx, dstAddr, dstFormat, rgba, n);
554 pack_byte_from_uint_rgba(ctx, dstAddr, dstFormat, rgba, n);
558 GLubyte *dst = (GLubyte *) dstAddr;
570 GLubyte *dst = (GLubyte *) dstAddr;
582 GLushort *dst = (GLushort *) dstAddr;
    [all...]
  /external/mesa3d/src/mesa/main/
pack.h 55 GLenum dstFormat, GLenum dstType, GLvoid *dstAddr,
150 GLvoid *dstAddr);
156 GLvoid *dstAddr);
pack.c 533 GLvoid *dstAddr)
539 pack_uint_from_uint_rgba(ctx, dstAddr, dstFormat, rgba, n);
542 pack_int_from_uint_rgba(ctx, dstAddr, dstFormat, rgba, n);
545 pack_ushort_from_uint_rgba(ctx, dstAddr, dstFormat, rgba, n);
548 pack_short_from_uint_rgba(ctx, dstAddr, dstFormat, rgba, n);
551 pack_ubyte_from_uint_rgba(ctx, dstAddr, dstFormat, rgba, n);
554 pack_byte_from_uint_rgba(ctx, dstAddr, dstFormat, rgba, n);
558 GLubyte *dst = (GLubyte *) dstAddr;
570 GLubyte *dst = (GLubyte *) dstAddr;
582 GLushort *dst = (GLushort *) dstAddr;
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_hdmi_HdmiCecController.cpp 148 jint dstAddr = message.destination;
156 dstAddr, body);
325 jint srcAddr, jint dstAddr, jbyteArray body) {
328 message.destination = static_cast<cec_logical_address_t>(dstAddr);
  /hardware/samsung_slsi/exynos5/libcamera2/
ExynosCameraHWInterface2.cpp     [all...]
  /external/clang/lib/CodeGen/
CGBlocks.cpp     [all...]

Completed in 751 milliseconds