HomeSort by relevance Sort by last modified time
    Searched defs:mapped (Results 26 - 50 of 87) sorted by null

12 3 4

  /external/chromium_org/third_party/icu/source/test/intltest/
testidn.cpp 286 int32_t mapped = 0; local
305 mapped++;
317 test.logln("Number of Mapped code points : %i \n",mapped);
318 test.logln("Number of Mapped with NFKC code points : %i \n",mappedWithNorm);
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLCreateNullInterface.cpp 38 void setMapped(bool mapped) { fMapped = mapped; }
39 bool mapped() const { return fMapped; } function in class:__anon19162::GrBufferObj
49 // is mapped.
204 SkASSERT(!buffer->mapped());
224 SkASSERT(!buffer->mapped());
250 SkASSERT(buffer->mapped());
274 if (buffer->mapped()) {
  /external/icu/icu4c/source/test/intltest/
testidn.cpp 288 int32_t mapped = 0; local
307 mapped++;
319 test.logln("Number of Mapped code points : %i \n",mapped);
320 test.logln("Number of Mapped with NFKC code points : %i \n",mappedWithNorm);
  /external/jemalloc/include/jemalloc/internal/
ctl.h 54 size_t mapped; member in struct:ctl_stats_s
  /external/pdfium/core/src/fpdfdoc/
doc_tagged.cpp 217 CFX_ByteString mapped = pTree->m_pRoleMap->GetString(m_Type); local
218 if (!mapped.IsEmpty()) {
219 m_Type = mapped;
  /external/skia/src/gpu/gl/
GrGLCreateNullInterface.cpp 38 void setMapped(bool mapped) { fMapped = mapped; }
39 bool mapped() const { return fMapped; } function in class:__anon34414::GrBufferObj
49 // is mapped.
204 SkASSERT(!buffer->mapped());
224 SkASSERT(!buffer->mapped());
250 SkASSERT(buffer->mapped());
274 if (buffer->mapped()) {
  /external/chromium_org/base/process/
process_metrics.h 50 // priv: Pages mapped only by this process.
55 // priv: Pages mapped only by this process.
77 // mapped: These pages are mapped into the view of a section (backed by
79 // image: These pages are mapped into the view of an image section (backed by
82 CommittedKBytes() : priv(0), mapped(0), image(0) {}
84 size_t mapped; member in struct:base::CommittedKBytes
  /external/chromium_org/ppapi/tests/
test_file_io.cc 1152 char* mapped = reinterpret_cast<char*>( local
1168 char* mapped = reinterpret_cast<char*>( local
1185 char* mapped = reinterpret_cast<char*>( local
1228 char* mapped = reinterpret_cast<char*>( local
1244 char* mapped = reinterpret_cast<char*>( local
1261 char* mapped = reinterpret_cast<char*>( local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
extent.c 1126 * May: map unmapped, unmap mapped, or remap mapped blocks.
1149 int mapped = 1; /* logical is mapped? */ local
1216 mapped = 0;
1271 if (mapped && (new_uninit == extent_uninit) &&
1279 if (!mapped) {
    [all...]
  /external/iputils/
tracepath6.c 70 int mapped; variable
504 mapped = 1;
546 if (!mapped)
  /external/jemalloc/src/
stats.c 210 size_t page, pactive, pdirty, mapped; local
268 CTL_I_GET("stats.arenas.0.mapped", &mapped, size_t);
269 malloc_cprintf(write_cb, cbopaque, "mapped: %12zu\n", mapped);
467 size_t allocated, active, mapped; local
474 CTL_GET("stats.mapped", &mapped, size_t);
476 "Allocated: %zu, active: %zu, mapped: %zu\n",
477 allocated, active, mapped);
    [all...]
  /frameworks/native/cmds/servicemanager/
binder.c 91 void *mapped; member in struct:binder_state
120 bs->mapped = mmap(NULL, mapsize, PROT_READ, MAP_PRIVATE, bs->fd, 0);
121 if (bs->mapped == MAP_FAILED) {
138 munmap(bs->mapped, bs->mapsize);
  /external/chromium_org/v8/src/arm64/
ic-arm64.cc 353 // Check if element is in the range of mapped arguments. If not, jump
534 MemOperand mapped = local
538 Operand mapped_offset = mapped.OffsetAsOperand();
539 __ Str(value, mapped);
540 __ Add(x10, mapped.base(), mapped_offset);
542 __ RecordWrite(mapped.base(), x10, x11, kLRHasNotBeenSaved, kDontSaveFPRegs);
    [all...]
  /external/guava/guava-tests/test/com/google/common/net/
InetAddressesTest.java 362 * from an "IPv4 mapped" IPv6 address. Our String-based method can
367 InetAddress mapped = InetAddresses.forString(mappedStr); local
368 assertFalse(mapped instanceof Inet6Address);
369 assertEquals(InetAddress.getByName("192.168.0.1"), mapped);
374 mapped = InetAddresses.forString(mappedStr);
375 assertFalse(mapped instanceof Inet6Address);
376 assertEquals(InetAddress.getByName("192.168.0.1"), mapped);
380 mapped = InetAddresses.forString(mappedStr);
381 assertFalse(mapped instanceof Inet6Address);
382 assertEquals(InetAddress.getByName("1.2.3.4"), mapped);
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Database.java 956 String mapped = (String) mapLibraryName.invoke(null, args); typedefs
957 System.load(path + java.io.File.separator + mapped);
  /external/llvm/lib/Transforms/Instrumentation/
DebugIR.cpp 347 Value *mapped = VMap->lookup(V); local
348 if (mapped && LineTable.getLine(mapped, Line))
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
FileChannelTest.java 1723 MappedByteBuffer mapped = readWriteFileChannel.map(MapMode.READ_ONLY, local
1734 MappedByteBuffer mapped = readWriteFileChannel.map(MapMode.PRIVATE, 0, local
1746 MappedByteBuffer mapped = null; local
1778 MappedByteBuffer mapped = readOnlyFileChannel.map(MapMode.READ_ONLY, local
1790 MappedByteBuffer mapped = readWriteFileChannel.map(MapMode.PRIVATE, 0, local
1814 MappedByteBuffer mapped = readWriteFileChannel.map(MapMode.PRIVATE, 10, local
1825 MappedByteBuffer mapped = null; local
1854 MappedByteBuffer mapped = readWriteFileChannel.map(MapMode.READ_WRITE, local
1893 MappedByteBuffer mapped = readOnlyFileChannel.map(MapMode.READ_ONLY, local
    [all...]
  /bionic/libc/kernel/uapi/drm/
exynos_drm.h 40 uint64_t mapped; member in struct:drm_exynos_gem_mmap
  /dalvik/dexdump/
DexDump.cpp 1782 bool mapped = false; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_state.c 1915 uint32_t *mapped; local
    [all...]
  /external/kernel-headers/original/uapi/drm/
exynos_drm.h 54 * @size: memory size to be mapped.
55 * @mapped: having user virtual address mmaped.
64 uint64_t mapped; member in struct:drm_exynos_gem_mmap
  /external/llvm/lib/CodeGen/
MachineVerifier.cpp 797 bool mapped = !LiveInts->isNotInMIMap(MI); local
799 if (mapped)
802 if (mapped)
805 if (!mapped)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_state.c 1915 uint32_t *mapped; local
    [all...]
  /external/chromium_org/v8/src/
unicode.cc 156 uchar mapped = mapping.chars[length]; local
157 if (mapped == MultiCharacterSpecialCase<kW>::kEndOfEncoding) break;
159 result[length] = mapped + (key - entry);
161 result[length] = mapped;
    [all...]
  /frameworks/base/core/java/android/view/
ViewDebug.java 1249 final IntToString mapped = mapping[j]; local
1359 final IntToString mapped = indexMapping[k]; local
1370 final IntToString mapped = mapping[k]; local
    [all...]

Completed in 1156 milliseconds

12 3 4