HomeSort by relevance Sort by last modified time
    Searched defs:memory (Results 76 - 100 of 228) sorted by null

1 2 34 5 6 7 8 910

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/sound/
ainstr_simple.h 78 unsigned int memory; /* begin of waveform in onboard memory */ member in struct:__anon26081::__anon26082
79 unsigned char *ptr; /* pointer to waveform in system memory */
ainstr_gf1.h 58 unsigned int memory; /* begin of waveform in onboard memory */ member in struct:gf1_wave::__anon26074
59 unsigned char *ptr; /* pointer to waveform in system memory */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/sound/
ainstr_simple.h 78 unsigned int memory; /* begin of waveform in onboard memory */ member in struct:__anon27671::__anon27672
79 unsigned char *ptr; /* pointer to waveform in system memory */
ainstr_gf1.h 58 unsigned int memory; /* begin of waveform in onboard memory */ member in struct:gf1_wave::__anon27664
59 unsigned char *ptr; /* pointer to waveform in system memory */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
ainstr_simple.h 81 unsigned int memory; /* begin of waveform in onboard memory */ member in struct:simple_instrument::__anon28445
82 unsigned char *ptr; /* pointer to waveform in system memory */
ainstr_gf1.h 61 unsigned int memory; /* begin of waveform in onboard memory */ member in struct:gf1_wave::__anon28443
62 unsigned char *ptr; /* pointer to waveform in system memory */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/sound/
ainstr_simple.h 78 unsigned int memory; /* begin of waveform in onboard memory */ member in struct:__anon29186::__anon29187
79 unsigned char *ptr; /* pointer to waveform in system memory */
ainstr_gf1.h 58 unsigned int memory; /* begin of waveform in onboard memory */ member in struct:gf1_wave::__anon29179
59 unsigned char *ptr; /* pointer to waveform in system memory */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
ainstr_simple.h 81 unsigned int memory; /* begin of waveform in onboard memory */ member in struct:simple_instrument::__anon29959
82 unsigned char *ptr; /* pointer to waveform in system memory */
ainstr_gf1.h 61 unsigned int memory; /* begin of waveform in onboard memory */ member in struct:gf1_wave::__anon29957
62 unsigned char *ptr; /* pointer to waveform in system memory */
  /system/core/libcorkscrew/
backtrace.c 69 memory_t memory; member in struct:__anon43929
80 add_backtrace_entry(rewind_pc_arch(&state->memory, pc), state->backtrace,
98 init_memory(&state.memory, milist);
  /external/freetype/src/cff/
cffload.c 231 FT_Memory memory = stream->memory; local
306 FT_Memory memory = stream->memory; local
323 FT_Memory memory = stream->memory; local
388 FT_Memory memory = idx->stream->memory; local
540 /* this index was completely loaded in memory, that's easy */
586 FT_Memory memory = idx->stream->memory local
842 FT_Memory memory = stream->memory; local
861 FT_Memory memory = stream->memory; local
1438 FT_Memory memory = stream->memory; local
1630 FT_Memory memory = font->memory; local
    [all...]
cffobjs.c 167 FT_Memory memory = cffsize->face->memory; local
176 error = funcs->create( cffsize->face->memory, &priv,
187 error = funcs->create( cffsize->face->memory, &priv,
381 cff_strcpy( FT_Memory memory,
580 FT_Memory memory = cffface->memory; local
827 style_name = cff_strcpy( memory, fullp );
845 cffface->family_name = cff_strcpy( memory, cid_font_name );
852 cffface->style_name = cff_strcpy( memory, (char *)"Regular" )
1032 FT_Memory memory; local
    [all...]
  /external/freetype/src/psaux/
psobjs.c 62 /* memory :: The memory object to use for all subsequent */
71 FT_Memory memory )
76 table->memory = memory;
119 FT_Memory memory = table->memory; local
151 /* Adds an object to a PS_Table, possibly growing its memory block. */
159 /* object :: The address of the object to copy in memory. */
236 /* This function does NOT release the heap's memory block. It is up *
242 FT_Memory memory = table->memory; local
266 FT_Memory memory = table->memory; local
1132 FT_Memory memory = parser->memory; local
    [all...]
  /external/freetype/src/pshinter/
pshrec.c 51 FT_Memory memory )
63 FT_Memory memory )
83 FT_Memory memory,
96 error = ps_hint_table_ensure( table, count, memory );
125 FT_Memory memory )
138 FT_Memory memory )
187 FT_Memory memory )
198 error = ps_mask_ensure( mask, idx + 1, memory );
216 FT_Memory memory )
223 ps_mask_done( mask, memory );
788 FT_Memory memory = hints->memory; local
864 FT_Memory memory = hints->memory; local
903 FT_Memory memory = hints->memory; local
964 FT_Memory memory = hints->memory; local
1006 FT_Memory memory = hints->memory; local
1051 FT_Memory memory = hints->memory; local
1096 FT_Memory memory = hints->memory; local
    [all...]
  /external/freetype/src/sfnt/
ttsbit.c 25 * Alas, the memory-optimized sbit loader can't be used when implementing
279 FT_Memory memory = stream->memory; local
340 FT_Memory memory = stream->memory; local
422 FT_Memory memory = stream->memory; local
615 FT_Memory memory = face->root.memory; local
1257 FT_Memory memory = stream->memory; local
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
Types.h 26 void* memory = GlobalPoolAllocator.allocate(sizeof(TTypeList)); local
27 return new(memory) TTypeList;
34 // could be used, but also trying to avoid lots of memory management overhead.
  /external/webp/src/enc/
histogram.c 61 uint8_t* memory = (uint8_t*)WebPSafeMalloc(total_size, sizeof(*memory)); local
62 if (memory == NULL) return NULL;
64 set = (VP8LHistogramSet*)memory;
65 memory += sizeof(*set);
66 set->histograms = (VP8LHistogram**)memory;
67 memory += size * sizeof(*set->histograms);
68 bulk = (VP8LHistogram*)memory;
  /frameworks/native/libs/binder/
MemoryDealer.cpp 220 // might kick out the memory region that's allocated and/or written
241 sp<IMemory> memory; local
244 memory = new Allocation(this, heap(), offset, size);
246 return memory;
269 // align all the memory blocks on a cache-line boundary
  /hardware/samsung_slsi/exynos5/include/
ExynosJpegApi.h 77 enum v4l2_memory memory; member in struct:ExynosJpegBase::BUF_INFO
  /system/core/libcorkscrew/arch-arm/
backtrace-arm.c 121 static uintptr_t get_exception_handler(const memory_t* memory,
131 if (memory->tid < 0) {
156 if (!try_get_word(memory, entry, &entry_prel_pc)) {
168 if (!try_get_word(memory, next_entry, &next_entry_prel_pc)) {
181 if (!try_get_word(memory, entry_handler_ptr, &entry_handler)) {
210 static bool try_next_byte(const memory_t* memory, byte_stream_t* stream, uint8_t* out_value) {
214 if (!try_get_word(memory, stream->ptr, &stream->word)) {
244 static bool try_pop_registers(const memory_t* memory, unwind_state_t* state, uint32_t mask) {
250 if (!try_get_word(memory, sp, &value)) {
279 static bool execute_personality_routine(const memory_t* memory,
579 memory_t memory; local
597 memory_t memory; local
    [all...]
  /external/freetype/src/autofit/
afhints.c 28 FT_Memory memory,
72 FT_Memory memory,
509 FT_Memory memory )
512 hints->memory = memory;
519 if ( hints && hints->memory )
521 FT_Memory memory = hints->memory; local
551 hints->memory = NULL;
581 FT_Memory memory = hints->memory local
    [all...]
afhints.h 333 FT_Memory memory; member in struct:AF_GlyphHintsRec_
404 FT_Memory memory,
411 FT_Memory memory,
416 FT_Memory memory );
  /external/freetype/src/base/
ftdbgmem.c 5 /* Memory debugger (body). */
33 * memory, however.
42 FT_DumpMemory( FT_Memory memory );
54 * site. This is useful to know where memory operations happen the
79 * We don't need a resizable array for the memory sources, because
86 * memory block. If KEEPALIVE is defined, blocks that are freed by
89 * at the price of large memory footprint during execution.
133 FT_Memory memory; member in struct:FT_MemTableRec_
229 FT_Memory memory = table->memory; local
245 FT_Memory memory = table->memory; local
    [all...]
  /external/freetype/src/truetype/
ttgxvar.c 132 FT_Memory memory = stream->memory; local
217 FT_Memory memory = stream->memory; local
283 FT_Memory memory = stream->memory; local
375 FT_Memory memory = stream->memory; local
620 FT_Memory memory = face->root.memory; local
863 FT_Memory memory = face->root.memory; local
1002 FT_Memory memory = face->root.memory; local
1122 FT_Memory memory = stream->memory; local
1326 FT_Memory memory = stream->memory; local
    [all...]

Completed in 543 milliseconds

1 2 34 5 6 7 8 910