HomeSort by relevance Sort by last modified time
    Searched defs:free (Results 126 - 150 of 442) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/valgrind/coregrind/m_demangle/
vg_libciface.h 13 This program is free software; you can redistribute it and/or
15 published by the Free Software Foundation; either version 2 of the
24 along with this program; if not, write to the Free Software
49 #define free(_pt) VG_(arena_free) (VG_AR_DEMANGLE,(_pt)) macro
114 free ((void*) (P))
  /external/valgrind/coregrind/m_gdbserver/
server.h 4 Free Software Foundation, Inc.
9 This program is free software; you can redistribute it and/or modify
11 the Free Software Foundation; either version 2 of the License, or
20 along with this program; if not, write to the Free Software
169 #define free(b) VG_(free) (b) macro
  /external/valgrind/drd/tests/
circular_buffer.c 29 #define FREE_SEMAPHORE_NAME "cb-free-semaphore"
37 /* Counting semaphore representing the number of free elements. */
38 sem_t* free; member in struct:__anon42616
86 free(p);
93 b->free = create_semaphore(FREE_SEMAPHORE_NAME, BUFFER_MAX);
122 sem_post(b->free);
128 sem_wait(b->free);
151 destroy_semaphore(FREE_SEMAPHORE_NAME, b->free);
unit_bitmap.c 29 void VG_(free)(void* p) function
30 { return free(p); }
  /external/webrtc/webrtc/base/
stream_unittest.cc 320 size_t free; local
321 EXPECT_TRUE(buff.GetWriteBuffer(&free) != NULL);
322 EXPECT_EQ(0U, free);
  /frameworks/av/media/libeffects/testlibs/
AudioEqualizer.cpp 77 void AudioEqualizer::free() { function in class:android::AudioEqualizer
78 ALOGV("AudioEqualizer::free()");
80 ::free(mpMem);
  /frameworks/av/media/libmediaextractor/
MediaBufferGroup.cpp 161 auto free = mInternal->mBuffers.end(); local
170 smallest = size; // always free the smallest buf
171 free = it;
176 && (free != mInternal->mBuffers.end()
178 // We alloc before we free so failure leaves group unchanged.
188 if (free != mInternal->mBuffers.end()) {
190 requestedSize, (*free)->size());
191 (*free)->setObserver(nullptr);
192 (*free)->release();
193 *free = buffer; // in-place replac
    [all...]
  /frameworks/base/libs/hwui/font/
CacheTexture.cpp 92 // If this doesn't hold, we have a use-after-free below.
344 uint32_t free = 0; local
348 free += bpp * cacheBlock->mWidth * cacheBlock->mHeight;
351 return free;
  /frameworks/native/cmds/installd/tests/
installd_cache_test.cpp 99 static int64_t free() { function in namespace:android::installd
166 service->freeCache(testUuid, free() + kKbInBytes, 0,
172 service->freeCache(testUuid, free() + kKbInBytes, 0,
222 service->freeCache(testUuid, free() + kKbInBytes, 0,
267 service->freeCache(testUuid, free() + kKbInBytes, 0,
288 service->freeCache(testUuid, free() + kKbInBytes, 0,
  /hardware/intel/common/libwsbm/src/
wsbm_driver.h 8 * Permission is hereby granted, free of charge, to any person obtaining a
93 void (*free) (struct _ValidateNode *); member in struct:_WsbmVNodeFuncs
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
pcm_rate.h 15 * This library is free software; you can redistribute it and/or modify
17 * published by the Free Software Foundation; either version 2.1 of
26 * License along with this library; if not, write to the Free Software
69 * free the converter; optional
71 void (*free)(void *obj); member in struct:snd_pcm_rate_ops
134 void (*free)(void *obj); member in struct:snd_pcm_rate_old_ops
  /prebuilts/go/darwin-x86/src/runtime/
netpoll.go 53 // in a lock-free way by all operations.
108 throw("runtime: blocked write on free polldesc")
111 throw("runtime: blocked read on free polldesc")
139 pollcache.free(pd)
142 func (c *pollCache) free(pd *pollDesc) { func
  /prebuilts/go/linux-x86/src/runtime/
netpoll.go 53 // in a lock-free way by all operations.
108 throw("runtime: blocked write on free polldesc")
111 throw("runtime: blocked read on free polldesc")
139 pollcache.free(pd)
142 func (c *pollCache) free(pd *pollDesc) { func
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
noembed.h 73 #ifdef free
74 #undef free macro
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftsystem.h 164 * free ::
175 FT_Free_Func free; member in struct:FT_MemoryRec_
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
Tween.java 794 public void free() { method in class:Tween
795 pool.free(this);
  /cts/tests/core/runner/src/com/android/cts/runner/
CtsTestRunListener.java 57 * Finally, we add a means to free memory allocated by a TestCase after its
119 long free = runtime.freeMemory(); local
120 long used = total - free;
124 Log.d(TAG, "Free memory : " + free);
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3baserecognizer.h 352 /** Pointer to a function that knows how to free the resources of a base recognizer.
354 void (*free) (struct ANTLR3_BASE_RECOGNIZER_struct * recognizer); member in struct:ANTLR3_BASE_RECOGNIZER_struct
antlr3basetreeadaptor.h 144 void (*free) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor); member in struct:ANTLR3_BASE_TREE_ADAPTOR_struct
antlr3commontreenodestream.h 119 void (*free) (struct ANTLR3_TREE_NODE_STREAM_struct * tns); member in struct:ANTLR3_TREE_NODE_STREAM_struct
299 void (*free) (struct ANTLR3_COMMON_TREE_NODE_STREAM_struct * ctns); member in struct:ANTLR3_COMMON_TREE_NODE_STREAM_struct
304 /// closed it will not free the root tree as this tree always
antlr3debugeventlistener.h 386 /// Free up the resources allocated to this structure
388 void (*free) (pANTLR3_DEBUG_EVENT_LISTENER delboy); member in struct:ANTLR3_DEBUG_EVENT_LISTENER_struct
antlr3tokenstream.h 180 /** Function that knows how to free the memory for an ANTLR3_TOKEN_STREAM
182 void (*free) (struct ANTLR3_TOKEN_STREAM_struct * tokenStream); member in struct:ANTLR3_TOKEN_STREAM_struct
285 * but that does not free up any resources, such as the token factory
293 /** Function that knows how to free an ANTLR3_COMMON_TOKEN_STREAM
295 void (*free) (struct ANTLR3_COMMON_TOKEN_STREAM_struct * tokenStream); member in struct:ANTLR3_COMMON_TOKEN_STREAM_struct
  /external/clang/lib/Headers/
__clang_cuda_runtime_wrapper.h 3 * Permission is hereby granted, free of charge, to any person obtaining a copy
240 // malloc/free/printf calls to work without relying on
243 __device__ void free(void *) __attribute((nothrow));
262 // We also need device-side std::malloc and std::free.
264 __device__ static inline void free(void *__ptr) { ::free(__ptr); } function in namespace:std
  /external/clang/test/SemaTemplate/
alias-templates.cpp 33 void free(inner_ptr&&);
49 ~thing() { traits.free(static_cast<inner_ptr&&>(val)); }
61 template<> void traits<thing<bool>>::free(bool&) {} function in class:X::traits
  /external/deqp/external/vulkancts/framework/vulkan/
vkAllocationCallbackUtil.cpp 92 reinterpret_cast<AllocationCallbacks*>(pUserData)->free(pMem);
157 AllocationCallbackRecord AllocationCallbackRecord::free (void* mem) function in class:vk::AllocationCallbackRecord
162 record.data.free.mem = mem;
212 void ChainedAllocator::free (void* mem) function in class:vk::ChainedAllocator
257 void AllocationCallbackRecorder::free (void* mem) function in class:vk::AllocationCallbackRecorder
259 ChainedAllocator::free(mem);
261 m_records.append(AllocationCallbackRecord::free(mem));
513 if (record.data.free.mem != DE_NULL) // Freeing null pointer is valid and ignored
515 if (de::contains(ptrToSlotIndex, record.data.free.mem))
517 const size_t slotNdx = ptrToSlotIndex[record.data.free.mem]
    [all...]

Completed in 420 milliseconds

1 2 3 4 56 7 8 91011>>