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

1 23 4 5 6 7 8 910

  /external/grub/netboot/
smc9000.c 13 * 4608 byte packet memory. ( for the 91C92/4. Others have more )
66 * 3. reset the memory management unit
209 /* now, try to allocate the memory */
214 /* wait for the memory allocation to finnish */
225 /* We've got the memory */
228 printf("SMC9000: Memory allocation timed out, resetting MMU.\n");
237 printf("SMC9000: Memory allocation failed. \n");
388 int memory; local
441 /* get the memory information */
443 memory = ( inw(smc9000_base + MCR) >> 9 ) & 0x7; /* multiplier *
    [all...]
  /external/markdown/
test-markdown.py 48 def memory(since=0.0): function
49 '''Return memory usage in bytes.
56 '''Return resident memory usage in bytes.
110 <td>Memory</td>
188 mem = memory()
192 construction_mem = memory(mem)
244 mem = memory()
249 conversion_mem = memory(mem)
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
PoolAlloc.cpp 33 // Release the allocated memory for this thread.
91 // be obtained to allocate memory.
225 // much memory the caller asked for. allocationSize is the total
244 unsigned char* memory = reinterpret_cast<unsigned char *>(inUseList) + currentPageOffset; local
248 return initializeAllocation(inUseList, memory, numBytes);
257 tHeader* memory = reinterpret_cast<tHeader*>(::new char[numBytesToAlloc]); local
258 if (memory == 0)
262 new(memory) tHeader(inUseList, (numBytesToAlloc + pageSize - 1) / pageSize);
263 inUseList = memory;
268 return reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(memory) + headerSkip)
274 tHeader* memory; local
    [all...]
  /system/core/libcorkscrew/arch-mips/
backtrace-mips.c 64 uintptr_t rewind_pc_arch(const memory_t* memory, uintptr_t pc) {
72 static ssize_t unwind_backtrace_common(const memory_t* memory,
80 uintptr_t pc = index ? rewind_pc_arch(memory, state->pc) : state->pc;
98 if (!try_get_word(memory, addr, &op))
129 if (!try_get_word(memory, state->sp + ra_offset, &next_ra))
170 memory_t memory; local
171 init_memory(&memory, map_info_list);
172 return unwind_backtrace_common(&memory, map_info_list,
193 memory_t memory; local
194 init_memory_ptrace(&memory, tid)
    [all...]
  /system/core/sh/
redir.c 103 * stdout, is saved in memory.
114 char memory[10]; /* file descriptors to write to memory */ local
117 memory[i] = 0;
118 memory[1] = flags & REDIR_BACKQ;
143 openredirect(n, memory, flags);
165 openredirect(n, memory, flags);
167 if (memory[1])
169 if (memory[2])
175 openredirect(union node *redir, char memory[10], int flags
    [all...]
  /external/chromium/base/
shared_memory_unittest.cc 7 #include "base/memory/scoped_ptr.h"
22 // Each thread will open the shared memory. Each thread will take a different 4
24 // Verify that each thread's value in the shared memory is always correct.
31 SharedMemory memory; local
32 memory.Delete(s_test_name_);
39 SharedMemory memory; local
40 bool rv = memory.CreateNamed(s_test_name_, true, kDataSize);
42 rv = memory.Map(kDataSize);
44 int *ptr = static_cast<int*>(memory.memory()) + id_
334 SharedMemory memory; local
342 SharedMemory memory; local
    [all...]
  /external/e2fsprogs/intl/
relocatable.c 115 char *memory; local
119 memory = (char *) xmalloc (orig_prefix_len + 1 + curr_prefix_len + 1);
121 if (memory != NULL)
124 memcpy (memory, orig_prefix_arg, orig_prefix_len + 1);
125 orig_prefix = memory;
126 memory += orig_prefix_len + 1;
127 memcpy (memory, curr_prefix_arg, curr_prefix_len + 1);
128 curr_prefix = memory;
134 /* Don't worry about wasted memory here - this function is usually only
vasnprintf.c 1 /* vsprintf with automatic memory allocation.
188 CHAR_T *memory; \
197 memory = (CHAR_T *) malloc (memory_size); \
199 memory = (CHAR_T *) realloc (result, memory_size); \
200 if (memory == NULL) \
203 memcpy (memory, result, length * sizeof (CHAR_T)); \
204 result = memory; \
492 /* Overflow, would lead to out of memory. */
496 /* Out of memory. */
854 /* Shrink the allocated memory if possible. *
855 CHAR_T *memory; local
    [all...]
  /external/elfutils/libebl/
eblgstrtab.c 87 char memory[0]; member in struct:memoryblock
94 struct memoryblock *memory; member in struct:Ebl_GStrtab
149 newmem->next = st->memory;
150 st->memory = newmem;
151 st->backp = newmem->memory;
152 st->left = len - offsetof (struct memoryblock, memory);
159 struct memoryblock *mb = st->memory;
184 /* Make sure there is enough room in the memory block. */
264 /* Allocate memory for the new string and its associated information. */
282 /* We have an exact match with a substring. Free the memory
    [all...]
  /external/freetype/src/base/
ftbitmap.c 45 FT_Memory memory = library->memory; local
98 ft_bitmap_assure_buffer( FT_Memory memory,
141 /* if no need to allocate memory */
282 error = ft_bitmap_assure_buffer( library->memory, bitmap, xstr, ystr );
381 FT_Memory memory; local
387 memory = library->memory;
649 FT_Memory memory; local
658 memory = library->memory
    [all...]
ftrfork.c 160 FT_Memory memory = library->memory; local
353 raccess_make_file_name( FT_Memory memory,
476 FT_Memory memory; local
481 memory = library->memory;
482 newpath = raccess_make_file_name( memory, base_file_name, "._" );
509 FT_Memory memory; local
515 memory = library->memory;
545 FT_Memory memory; local
577 FT_Memory memory; local
604 FT_Memory memory; local
631 FT_Memory memory; local
662 FT_Memory memory; local
    [all...]
  /external/freetype/src/cache/
ftccache.h 160 FT_Memory memory; member in struct:FTC_CacheRec_
233 /* NOTE: _nodcomp() may change the linked list to reduce memory. */ \
305 * loop to flush the cache repeatedly in case of memory overflows.
ftccmap.c 141 FT_Memory memory = cache->memory; local
157 FT_Memory memory = cache->memory; local
  /external/freetype/src/cff/
cffgload.h 45 /* memory :: The current memory object. */
83 FT_Memory memory; member in struct:CFF_Builder_
cffparse.c 721 FT_Memory memory = library->memory; local
735 FT_Memory memory = library->memory; local
  /external/freetype/src/pfr/
pfrload.c 352 FT_Memory memory = phy_font->memory; local
453 FT_Memory memory = phy_font->memory; local
481 FT_Memory memory = phy_font->memory; local
525 FT_Memory memory = phy_font->memory; local
631 FT_Memory memory,
669 FT_Memory memory )
718 FT_Memory memory = stream->memory; local
    [all...]
  /external/freetype/src/pshinter/
pshglob.c 601 FT_Memory memory; local
604 memory = globals->memory;
623 psh_globals_new( FT_Memory memory,
637 globals->memory = memory;
pshglob.h 137 FT_Memory memory; member in struct:PSH_GlobalsRec_
pshrec.h 133 FT_Memory memory; member in struct:PS_HintsRec_
146 FT_Memory memory );
  /external/freetype/src/sfnt/
sfobjs.c 51 FT_Memory memory )
82 FT_Memory memory )
111 FT_Memory memory );
139 FT_Memory memory = face->root.memory; local
282 result = convert( rec, memory );
348 FT_Memory memory = stream->memory; local
921 FT_Memory memory = face->root.stream->memory; local
1071 FT_Memory memory; local
    [all...]
ttload.c 325 FT_Memory memory = stream->memory; local
430 /* Loads any font table into client memory. */
742 FT_Memory memory = stream->memory; local
870 FT_Memory memory = face->root.driver->root.memory; local
1213 FT_Memory memory = stream->memory; local
    [all...]
  /external/freetype/src/truetype/
ttobjs.c 75 FT_Memory memory = zone->memory; local
78 if ( memory )
88 zone->memory = NULL;
102 /* memory :: A handle to the current memory object. */
115 tt_glyphzone_new( FT_Memory memory,
124 zone->memory = memory;
654 FT_Memory memory; local
879 FT_Memory memory = face->root.memory; local
924 FT_Memory memory = face->root.memory; local
    [all...]
  /external/libxml2/
threads.c 452 "xmlGlobalInitMutexLock: out of memory\n");
558 * global state. It is is used here to reclaim memory resources.
565 /* free any memory allocated in the thread's xmlLastError */
587 "xmlGetGlobalState: out of memory\n");
603 void *memory; member in struct:_xmlGlobalStateCleanupHelperParams
613 xmlFreeGlobalState(params->memory);
620 void *memory; member in struct:_xmlGlobalStateCleanupHelperParams
694 globalval = (xmlGlobalState *) (p ? p->memory : NULL);
705 "xmlGetGlobalState: out of memory\n");
709 p->memory = tsd
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsvideo.c 61 int console, memory; local
67 memory = open(PS2_DEV_MEM, O_RDWR, 0);
68 if ( memory >= 0 ) {
69 close(memory);
71 return((console >= 0) && (memory >= 0));
483 /* Memory map the DMA area for block memory transfer */
531 /* Set up the memory for screen update DMA commands */
565 /* We lie here - the screen memory isn't really the visible
566 display memory and still requires an update, but thi
    [all...]
  /external/webkit/Source/WebCore/page/
Console.cpp 344 MemoryInfo* Console::memory() const function in class:WebCore::Console

Completed in 1170 milliseconds

1 23 4 5 6 7 8 910