Searched refs:memory (Results 1 - 25 of 1625) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/masmx64/
H A Dinffasx64.asm390 ; : "memory", "%rax", "%rbx", "%rcx", "%rdx", "%rsi", "%rdi",
/external/zlib/src/contrib/pascal/
H A Dexample.pas543 EXIT_ERR('Out of memory');
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dfilter_functions.c11 #include <memory.h>
H A Dlattice.c21 #include <memory.h>
H A Dpitch_estimator.c14 #include <memory.h>
H A Dpitch_filter.c14 #include <memory.h>
/external/webrtc/src/system_wrappers/source/
H A Daligned_malloc.cc14 #include <memory.h>
34 // Ok reference on memory alignment:
35 // http://stackoverflow.com/questions/227897/solve-the-memory-alignment-in-c-interview-question-that-stumped-me
39 // TODO (hellner) better to create just one memory block and
67 // The memory is aligned towards the lowest address that so only
80 // in the same memory block.
92 // it's possible to reclaim all memory.
/external/valgrind/main/perf/
H A Dtinycc.c370 #define SHF_ALLOC (1 << 1) /* Occupies memory during execution */
543 Elf32_Word p_memsz; /* Segment size in memory */
556 Elf64_Xword p_memsz; /* Segment size in memory */
1225 #define OEX_SMM 0x20000 /* Force sequential memory mode? */
2026 #define TCC_OUTPUT_MEMORY 0 /* output will be ran in memory (no
2383 /* compile with built-in memory and bounds checker */
5522 int is_memory; /* true if memory operand */
5718 /* constant memory reference */
6296 /* convert constants to memory references */
6314 the memory referenc
[all...]
/external/webp/src/dec/
H A Dio.c322 const size_t work_size = 2 * out_width; // scratch memory for luma rescaler
331 p->memory = WebPSafeCalloc(1ULL, tmp_size);
332 if (p->memory == NULL) {
333 return 0; // memory error
335 work = (int32_t*)p->memory;
497 const size_t work_size = 2 * out_width; // scratch memory for one rescaler
509 p->memory = WebPSafeCalloc(1ULL, total_size);
510 if (p->memory == NULL) {
511 return 0; // memory error
513 work = (int32_t*)p->memory;
[all...]
H A Dvp8l.c398 uint8_t* memory = (uint8_t*)WebPSafeCalloc(memory_size, sizeof(*memory)); local
399 if (memory == NULL) {
404 dec->rescaler_memory = memory;
406 dec->rescaler = (WebPRescaler*)memory;
407 memory += sizeof(*dec->rescaler);
408 work = (int32_t*)memory;
409 memory += work_size * sizeof(*work);
410 scaled_data = (uint32_t*)memory;
H A Dwebpi.h40 void* memory; // overall scratch memory for the output work. member in struct:WebPDecParams
87 // Internal functions regarding WebPDecBuffer memory (in buffer.c).
92 // memory and setting up the stride information. Validate the parameters. Return
93 // an error code in case of problem (no memory, or invalid stride / size /
107 // memory (still held by 'src').
/external/webp/src/enc/
H A Dhistogram.c92 uint8_t* const memory = (uint8_t*)WebPSafeMalloc(total_size, sizeof(*memory)); local
93 if (memory == NULL) return NULL;
94 histo = (VP8LHistogram*)memory;
96 histo->literal_ = (uint32_t*)(memory + sizeof(VP8LHistogram));
107 uint8_t* memory = (uint8_t*)WebPSafeMalloc(total_size, sizeof(*memory)); local
108 if (memory == NULL) return NULL;
110 set = (VP8LHistogramSet*)memory;
111 memory
[all...]
H A Dpicture.c66 void* memory; local
78 memory = WebPSafeMalloc(argb_size, sizeof(*picture->argb));
79 if (memory == NULL) {
83 picture->memory_argb_ = memory;
84 picture->argb = (uint32_t*)memory;
177 // WebPMemoryWriter: Write-to-memory
/external/valgrind/main/drd/tests/
H A Dannotate_rwlock.c23 has built-in functions for atomic memory access.
H A Datomic_var.c7 * Note: for the i386 and x86_64 memory models, thread 2 must print y = 1.
9 * the PPC memory model allows different CPU's to observe stores to variables
23 has built-in functions for atomic memory access.
H A Dcircular_buffer.c23 has built-in functions for atomic memory access.
/external/valgrind/main/exp-bbv/tests/ppc32-linux/
H A Dll.S52 # saves one instruction on any future load from memory
/external/valgrind/main/helgrind/tests/
H A Dannotate_rwlock.c33 has built-in functions for atomic memory access.
/external/valgrind/main/include/vki/
H A Dvki-xen.h83 #include <vki/vki-xen-memory.h>
/external/tremolo/Tremolo/
H A Dos.h71 # include <memory.h>
/external/tcpdump/
H A Dconfigure605 # include <memory.h>
4162 for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
H A Dprint-beep.c24 #include <memory.h>
/external/stlport/src/
H A Dallocators.cpp25 #include <memory>
57 // memory leaks when run with debug CRT libraries.
124 // malloc_alloc out-of-memory handling
184 * We can only do cleanup of the node allocator memory pool if we are
187 * allocator instances might exchange memory blocks making the implementation
255 // Header of blocks of memory that have been allocated as part of
258 char* _M_end; // pointer to end of free memory
274 // Amount of total allocated memory
282 // List of blocks of free memory
285 // Start of the current free memory buffe
[all...]
H A Ddll_main.cpp41 #include <memory>
/external/stlport/src/c_locale_win32/
H A Dc_locale_win32.c24 # include <memory.h>

Completed in 991 milliseconds

1234567891011>>