OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:valloc
(Results
1 - 25
of
134
) sorted by null
1
2
3
4
5
6
/external/valgrind/main/memcheck/tests/
memalign_test.c
16
a[i] =
valloc
(11111 * (i+1));
17
/* check
valloc
really is returning page-aligned memory */
/external/valgrind/main/massif/tests/
filter_stderr
14
perl -n -e 'print if !/^Massif: malloc_zone_(malloc|calloc|realloc|memalign|
valloc
)$/'
realloc.stderr.exp
13
Massif:
valloc
deep-B.stderr.exp
13
Massif:
valloc
deep-C.stderr.exp
13
Massif:
valloc
/external/clang/test/Analysis/
unix-fns.c
16
void *
valloc
(size_t);
128
char *foo =
valloc
(0); // expected-warning{{Call to '
valloc
' has an allocation size of 0 bytes}}
134
char *foo =
valloc
(sz); // no-warning
malloc-interprocedural.c
7
void *
valloc
(size_t);
/frameworks/rs/
rsAdapter.cpp
79
void rsi_Adapter1DBindAllocation(Context *rsc, RsAdapter1D va, RsAllocation
valloc
) {
81
Allocation * alloc = static_cast<Allocation *>(
valloc
);
197
void rsi_Adapter2DBindAllocation(Context *rsc, RsAdapter2D va, RsAllocation
valloc
) {
199
Allocation * alloc = static_cast<Allocation *>(
valloc
);
rsAllocation.cpp
689
int32_t rsi_AllocationGetSurfaceTextureID(Context *rsc, RsAllocation
valloc
) {
690
Allocation *alloc = static_cast<Allocation *>(
valloc
);
694
void rsi_AllocationGetSurfaceTextureID2(Context *rsc, RsAllocation
valloc
, void *vst, size_t len) {
695
Allocation *alloc = static_cast<Allocation *>(
valloc
);
699
void rsi_AllocationSetSurface(Context *rsc, RsAllocation
valloc
, RsNativeWindow sur) {
700
Allocation *alloc = static_cast<Allocation *>(
valloc
);
704
void rsi_AllocationIoSend(Context *rsc, RsAllocation
valloc
) {
705
Allocation *alloc = static_cast<Allocation *>(
valloc
);
709
void rsi_AllocationIoReceive(Context *rsc, RsAllocation
valloc
) {
710
Allocation *alloc = static_cast<Allocation *>(
valloc
);
[
all
...]
/external/e2fsprogs/e2fsck/
mtrace.h
74
extern __ptr_t
valloc
__P ((size_t __size));
173
/* List of blocks allocated with `memalign' (or `
valloc
'). */
/external/valgrind/unittest/
posix_tests.cc
256
int *
VALLOC
;
274
(*
VALLOC
)++;
292
VALLOC
= (int*)
valloc
(sizeof(int));
293
PVALLOC = (int*)
valloc
(sizeof(int)); // TODO: pvalloc breaks helgrind.
309
ANNOTATE_EXPECT_RACE(
VALLOC
, "real race on a
valloc
-ed object");
328
free(
VALLOC
);
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
malloc.h
75
extern void *
valloc
__MALLOC_P ((size_t __size))
78
/* Equivalent to
valloc
(minimum-page-that-holds(n)), that is, round up
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
malloc.h
75
extern void *
valloc
__MALLOC_P ((size_t __size))
78
/* Equivalent to
valloc
(minimum-page-that-holds(n)), that is, round up
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
malloc.h
75
extern void *
valloc
__MALLOC_P ((size_t __size))
78
/* Equivalent to
valloc
(minimum-page-that-holds(n)), that is, round up
/bionic/libc/include/
malloc.h
42
extern void*
valloc
(size_t bytesize);
/development/ndk/platforms/android-3/include/
malloc.h
42
extern void*
valloc
(size_t bytesize);
/external/compiler-rt/lib/asan/
asan_malloc_linux.cc
122
INTERCEPTOR(void*,
valloc
, size_t size) {
/external/qemu/
oslib-posix.c
55
ptr = qemu_oom_check(
valloc
(size));
/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/
malloc.h
42
extern void*
valloc
(size_t bytesize);
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/
malloc.h
42
extern void*
valloc
(size_t bytesize);
/prebuilts/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
malloc.h
42
extern void*
valloc
(size_t bytesize);
/prebuilts/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
malloc.h
42
extern void*
valloc
(size_t bytesize);
/prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
malloc.h
42
extern void*
valloc
(size_t bytesize);
/prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
malloc.h
42
extern void*
valloc
(size_t bytesize);
/prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
malloc.h
42
extern void*
valloc
(size_t bytesize);
Completed in 539 milliseconds
1
2
3
4
5
6