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

  /frameworks/base/libs/hwui/hwui/
Bitmap.h 44 typedef void (*FreeFunc)(void* addr, void* context);
62 Bitmap(void* address, void* context, FreeFunc freeFunc,
116 FreeFunc freeFunc;
Bitmap.cpp 182 Bitmap::Bitmap(void* address, void* context, FreeFunc freeFunc,
189 mPixelStorage.external.freeFunc = freeFunc;
222 mPixelStorage.external.freeFunc(mPixelStorage.external.address,
  /system/keymaster/
openssl_utils.h 44 template <typename T, void (*FreeFunc)(T*)> struct OpenSslObjectDeleter {
45 void operator()(T* p) { FreeFunc(p); }
  /external/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/
result_of.pass.cpp 21 typedef short (*FreeFunc)(long);
22 operator FreeFunc() const;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.trans/meta.trans.other/
result_of.pass.cpp 21 typedef short (*FreeFunc)(long);
22 operator FreeFunc() const;
  /system/security/keystore/
blob.cpp 35 template <typename T, void (*FreeFunc)(T*)> struct OpenSslObjectDeleter {
36 void operator()(T* p) { FreeFunc(p); }
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Instructions.cpp 476 Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, NULL);
482 Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore);
486 Result = CallInst::Create(FreeFunc, PtrCast, "");
489 if (Function *F = dyn_cast<Function>(FreeFunc))
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp 586 Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, nullptr);
592 Result = CallInst::Create(FreeFunc, PtrCast, Bundles, "", InsertBefore);
596 Result = CallInst::Create(FreeFunc, PtrCast, Bundles, "");
599 if (Function *F = dyn_cast<Function>(FreeFunc))
    [all...]

Completed in 621 milliseconds