HomeSort by relevance Sort by last modified time
    Searched full:space (Results 76 - 100 of 3731) sorted by null

1 2 34 5 6 7 8 91011>>

  /ndk/build/platforms/android-3/arch-arm/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
53 size_t hblkhd; /* space in mmapped regions */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
57 size_t fordblks; /* total free space */
58 size_t keepcost; /* releasable (via malloc_trim) space */
82 Prints on stderr the amount of space obtained from the system (both
  /ndk/build/platforms/android-4/arch-arm/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
53 size_t hblkhd; /* space in mmapped regions */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
57 size_t fordblks; /* total free space */
58 size_t keepcost; /* releasable (via malloc_trim) space */
82 Prints on stderr the amount of space obtained from the system (both
  /ndk/build/platforms/android-5/arch-arm/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
53 size_t hblkhd; /* space in mmapped regions */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
57 size_t fordblks; /* total free space */
58 size_t keepcost; /* releasable (via malloc_trim) space */
82 Prints on stderr the amount of space obtained from the system (both
  /ndk/build/platforms/android-5/arch-x86/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
53 size_t hblkhd; /* space in mmapped regions */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
57 size_t fordblks; /* total free space */
58 size_t keepcost; /* releasable (via malloc_trim) space */
82 Prints on stderr the amount of space obtained from the system (both
  /ndk/build/platforms/android-8/arch-arm/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
53 size_t hblkhd; /* space in mmapped regions */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
57 size_t fordblks; /* total free space */
58 size_t keepcost; /* releasable (via malloc_trim) space */
82 Prints on stderr the amount of space obtained from the system (both
  /ndk/build/platforms/android-8/arch-x86/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
53 size_t hblkhd; /* space in mmapped regions */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
57 size_t fordblks; /* total free space */
58 size_t keepcost; /* releasable (via malloc_trim) space */
82 Prints on stderr the amount of space obtained from the system (both
  /external/kernel-headers/original/asm-x86/
uaccess_32.h 5 * User space memory access functions
48 * Test whether a block of memory is a valid user space address.
65 * access_ok: - Checks if a user space pointer is valid
69 * @addr: User space pointer to start of block to check
74 * Checks if a pointer to a block of memory in user space is valid.
80 * checks that the pointer is in the user space range - after calling
115 * do not verify the address space, that must have been done previously
132 * get_user: - Get a simple variable from user space.
134 * @ptr: Source address, in user space.
138 * This macro copies a single simple variable from user space to kerne
    [all...]
  /system/core/sh/
memalloc.c 55 * Like malloc, but returns an error when out of space.
65 error("Out of space");
79 error("Out of space");
112 char space[MINSIZE]; member in struct:stack_block
118 char *stacknxt = stackbase.space;
139 stacknxt = sp->space;
197 * of space on top of the stack and stackblocklen returns the length of
198 * this block. Growstackblock will grow this space by at least one byte,
208 if (stacknxt == stackp->space && stackp != &stackbase) {
221 stacknxt = sp->space;
    [all...]
  /external/webkit/WebCore/platform/graphics/
SimpleFontData.cpp 93 // FIXME: is there a way we can get the space glyph from the SVGGlyphIdentifier above?
144 // Nasty hack to determine if we should round or ceil space widths.
146 // every character and the space are the same width. Otherwise we round.
153 // Force the glyph for ZERO WIDTH SPACE to have zero width, unless it is shared with SPACE.
154 // Helvetica is an example of a non-zero width ZERO WIDTH SPACE glyph.
156 // Ask for the glyph for 0 to avoid paging in ZERO WIDTH SPACE. Control characters, including 0,
157 // are mapped to the ZERO WIDTH SPACE glyph.
163 LOG_ERROR("Font maps SPACE and ZERO WIDTH SPACE to the same glyph. Glyph width not overridden.")
    [all...]
  /external/v8/src/
heap.h 43 /* array in the unused space at the end of the page. */ \
223 // semi space. The young generation consists of two semi spaces and
225 // that new space can be aligned to its size.
241 // Returns the available bytes in space w/o growing.
246 // Returns the maximum object size in paged space.
252 // Return the starting address and a mask for the new space. And-masking an
253 // address with the mask will result in the start address of the new space
282 // Uncommit unused semi space.
293 // Returns Failure::RetryAfterGC(requested_bytes, space) if the allocation
300 // Returns Failure::RetryAfterGC(requested_bytes, space) if the allocatio
    [all...]
serialize.cc 518 Address Deserializer::Allocate(int space_index, Space* space, int size) {
525 new_allocation = reinterpret_cast<NewSpace*>(space)->AllocateRaw(size);
527 new_allocation = reinterpret_cast<PagedSpace*>(space)->AllocateRaw(size);
536 LargeObjectSpace* lo_space = reinterpret_cast<LargeObjectSpace*>(space);
548 // Record all large objects in the same space.
558 // snapshot as being offset bytes back in a particular space.
559 HeapObject* Deserializer::GetAddressFromEnd(int space) {
561 ASSERT(!SpaceIsLarge(space));
563 return HeapObject::FromAddress(high_water_[space] - offset)
824 int space = source_->Get(); local
1090 int space = SpaceOfAlreadySerializedObject(heap_object); local
1146 int space = SpaceOfAlreadySerializedObject(heap_object); local
1163 int space = Serializer::SpaceOfObject(object_); local
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
fonts.conf 49 <int>0x0020</int> <!-- SPACE -->
50 <int>0x00A0</int> <!-- NO-BREAK SPACE -->
61 <int>0x1680</int> <!-- OGHAM SPACE MARK -->
67 <int>0x2002</int> <!-- EN SPACE -->
68 <int>0x2003</int> <!-- EM SPACE -->
69 <int>0x2004</int> <!-- THREE-PER-EM SPACE -->
70 <int>0x2005</int> <!-- FOUR-PER-EM SPACE -->
71 <int>0x2006</int> <!-- SIX-PER-EM SPACE -->
72 <int>0x2007</int> <!-- FIGURE SPACE -->
73 <int>0x2008</int> <!-- PUNCTUATION SPACE --
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/qt/
fonts.conf 49 <int>0x0020</int> <!-- SPACE -->
50 <int>0x00A0</int> <!-- NO-BREAK SPACE -->
61 <int>0x1680</int> <!-- OGHAM SPACE MARK -->
67 <int>0x2002</int> <!-- EN SPACE -->
68 <int>0x2003</int> <!-- EM SPACE -->
69 <int>0x2004</int> <!-- THREE-PER-EM SPACE -->
70 <int>0x2005</int> <!-- FOUR-PER-EM SPACE -->
71 <int>0x2006</int> <!-- SIX-PER-EM SPACE -->
72 <int>0x2007</int> <!-- FIGURE SPACE -->
73 <int>0x2008</int> <!-- PUNCTUATION SPACE --
    [all...]
  /dalvik/vm/interp/
Jit.h 29 #define REG_SPACE 256 /* default size of shadow space */
30 #define HEAP_SPACE JIT_MAX_TRACE_LEN /* default size of heap space */
48 void* shadowFP; /* pointer to fp in shadow space */
51 int registerSpaceSize; /* current size of register space */
52 ShadowHeap heapSpace[HEAP_SPACE]; /* copy of heap space */
54 const void* endShadowFP; /* ending fp in shadow space */
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
7.1-3.js 24 ECMA Section: 7.1 White Space
28 - in strings, white space characters are significant
31 white space characters are:
36 \u0020 space <SP> " "
45 var TITLE = "White Space";
61 // +<white space>+ should be interpreted as the unary + operator twice, not as a post or prefix increment operator
  /dalvik/libcore/dalvik/src/main/native/
org_apache_harmony_dalvik_NativeTestTarget.c 26 // This space intentionally left blank.
38 // This space intentionally left blank.
50 // This space intentionally left blank.
  /external/kernel-headers/original/linux/
ctype.h 14 #define _S 0x20 /* white space (space/lf/tab) */
16 #define _SP 0x80 /* hard space (0x20) */
  /frameworks/base/tools/localize/testdata/
pseudo.xliff 19 <source xml:space="preserve">First <g id="string:complex-quoted:0" ctype="underline">underline</g>, <g id="string:complex-quoted:1" ctype="italic">italic<g id="string:complex-quoted:2" ctype="bold">italicbold</g></g> End</source>
31 <source xml:space="preserve"> Quote</source>
33 <source xml:lang="en" xml:space="preserve"> OLD Quote</source>
xliff1.xliff 20 <source xml:space="preserve">First <g id="string:complex-quoted:0" ctype="underline">underline</g>, <g id="string:complex-quoted:1" ctype="italic">italic<g id="string:complex-quoted:2" ctype="bold">italicbold</g></g> End</source>
36 <source xml:space="preserve"> Quote</source>
39 <source xml:lang="en" xml:space="preserve"> OLD Quote</source>
  /bionic/linker/
ba.h 34 unsigned order:7; /* size of the region in ba space */
38 /* start address of the ba space */
40 /* total size of the ba space */
46 /* number of entries in the ba space */
  /dalvik/dx/tests/043-dex-two-classes/
Blort.java 19 // This space intentionally left blank.
Zorch.java 19 // This space intentionally left blank.
  /dalvik/dx/tests/089-dex-define-object/
Class.java 20 // This space intentionally left blank.
String.java 20 // This space intentionally left blank.
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/processor/
ProcessorPreserveSpace.java 32 * TransformerFactory for xsl:preserve-space markup.
34 * <!ELEMENT xsl:preserve-space EMPTY>
35 * <!ATTLIST xsl:preserve-space elements CDATA #REQUIRED>
43 * Receive notification of the start of an preserve-space element.

Completed in 146 milliseconds

1 2 34 5 6 7 8 91011>>