Searched refs:mapped (Results 1 - 25 of 61) sorted by relevance

123

/external/elfutils/lib/
H A Dcrc32_file.c68 void *mapped = mmap (NULL, mapsize, PROT_READ, MAP_PRIVATE, fd, 0); local
69 if (mapped == MAP_FAILED && errno == ENOMEM)
74 && (mapped = mmap (NULL, mapsize, PROT_READ, MAP_PRIVATE,
78 if (mapped != MAP_FAILED)
84 *resp = crc32 (crc, mapped, st.st_size);
85 munmap (mapped, mapsize);
88 crc = crc32 (crc, mapped, mapsize);
91 } while (mmap (mapped, mapsize, PROT_READ, MAP_FIXED|MAP_PRIVATE,
92 fd, off) == mapped);
93 munmap (mapped, mapsiz
[all...]
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DBaseCodeCursor.java46 int mapped = baseAddressMap.get(cursor);
47 return (mapped >= 0) ? mapped : cursor;
/external/apache-http/src/org/apache/commons/codec/language/
H A DSoundex.java92 * Every letter of the alphabet is "mapped" to a numerical value. This char array holds the values to which each
93 * letter is mapped. This implementation contains a default map for US_ENGLISH
111 * Every letter of the alphabet is "mapped" to a numerical value. This char array holds the values to which each
112 * letter is mapped. This implementation contains a default map for US_ENGLISH
132 * if a character is not mapped
148 * if a character is not mapped
165 * if the character is not mapped
209 * Thrown if <code>ch</code> is not mapped.
214 throw new IllegalArgumentException("The character is not mapped: " + ch);
247 * if a character is not mapped
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepot.h29 uptr mapped; member in struct:__sanitizer::StackDepotStats
H A Dsanitizer_stackdepot.cc102 stats.mapped += allocsz;
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
H A DFirstFitAllocator.java43 /** indexed by old reg; the set of old regs we've mapped */
44 private final BitSet mapped; field in class:FirstFitAllocator
51 mapped = new BitSet(ssaMeth.getRegCount());
81 if (mapped.get(i)) {
109 if (mapped.get(j) || isDefinitionMoveParam(j)) {
128 mapped.set(j);
132 mapped.set(i);
/external/skia/src/gpu/gl/
H A DGrGLIndexBuffer.cpp95 GrGLint mapped;
97 GR_GL_BUFFER_MAPPED, &mapped));
98 GrAssert(!!mapped == !!fLockPtr);
H A DGrGLVertexBuffer.cpp91 GrGLint mapped;
94 GR_GL_BUFFER_MAPPED, &mapped));
95 GrAssert(!!mapped == !!fLockPtr);
/external/webkit/Source/JavaScriptCore/wtf/
H A DRefPtrHashMap.h40 static void translate(ValueType& location, RawKeyType key, const MappedType& mapped) argument
43 location.second = mapped;
209 HashMap<RefPtr<T>, U, V, W, X>::inlineAdd(const KeyType& key, const MappedType& mapped) argument
212 return m_impl.template add<KeyType, MappedType, TranslatorType>(key, mapped);
217 HashMap<RefPtr<T>, U, V, W, X>::inlineAdd(RawKeyType key, const MappedType& mapped) argument
219 return m_impl.template add<RawKeyType, MappedType, RawKeyTranslator>(key, mapped);
224 HashMap<RefPtr<T>, U, V, W, X>::set(const KeyType& key, const MappedType& mapped) argument
226 pair<iterator, bool> result = inlineAdd(key, mapped);
228 // add call above didn't change anything, so set the mapped value
229 result.first->second = mapped;
236 set(RawKeyType key, const MappedType& mapped) argument
248 add(const KeyType& key, const MappedType& mapped) argument
255 add(RawKeyType key, const MappedType& mapped) argument
[all...]
H A DHashMap.h123 static void translate(ValueType& location, const KeyType& key, const MappedType& mapped) argument
126 location.second = mapped;
137 static void translate(ValueType& location, const T& key, const MappedType& mapped, unsigned hashCode) argument
140 location.second = mapped;
239 HashMap<T, U, V, W, X>::inlineAdd(const KeyType& key, const MappedType& mapped) argument
242 return m_impl.template add<KeyType, MappedType, TranslatorType>(key, mapped);
247 HashMap<T, U, V, W, X>::set(const KeyType& key, const MappedType& mapped) argument
249 pair<iterator, bool> result = inlineAdd(key, mapped);
251 // add call above didn't change anything, so set the mapped value
252 result.first->second = mapped;
268 add(const KeyType& key, const MappedType& mapped) argument
[all...]
/external/valgrind/main/memcheck/tests/
H A Dsupp_unknown.stderr.exp3 Access not within mapped region at address 0x........
H A Dbadjump.stderr.exp9 Access not within mapped region at address 0x........
/external/valgrind/main/none/tests/linux/
H A Dblockfault.stderr.exp4 Access not within mapped region at address 0x........
/external/guava/guava-tests/test/com/google/common/net/
H A DInetAddressesTest.java362 * from an "IPv4 mapped" IPv6 address. Our String-based method can
367 InetAddress mapped = InetAddresses.forString(mappedStr);
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/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
H A DFileChannelTest.java1721 // close channel has no effect on map if mapped
1723 MappedByteBuffer mapped = readWriteFileChannel.map(MapMode.READ_ONLY,
1727 assertEquals(CONTENT_LENGTH, mapped.limit());
1734 MappedByteBuffer mapped = readWriteFileChannel.map(MapMode.PRIVATE, 0,
1737 mapped.put(TEST_BYTES);
1738 assertEquals(CONTENT_LENGTH, mapped.limit());
1739 assertEquals("test".length(), mapped.position());
1746 MappedByteBuffer mapped = null;
1749 mapped = readOnlyFileChannel.map(MapMode.READ_ONLY, 0, CONTENT_LENGTH);
1751 mapped
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_stats.cc65 Printf("Stats: StackDepot: %zd ids; %zdM mapped\n",
66 stack_depot_stats->n_uniq_ids, stack_depot_stats->mapped >> 20);
/external/openfst/src/lib/
H A Dutil.cc24 #include <fst/mapped-file.h>
H A Dmapped-file.cc17 #include <fst/mapped-file.h>
/external/icu4c/test/intltest/
H A Dtestidn.cpp287 int32_t mapped = 0; local
306 mapped++;
318 test.logln("Number of Mapped code points : %i \n",mapped);
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DInstrumentedPlatformCanvas.h155 SkRect mapped; local
156 matrix.mapRect(&mapped, rect);
157 return mapped.contains(canvasRect);
/external/llvm/test/MC/Mips/
H A Dmips64-register-names.s3 # Check that the register names are mapped to their correct numbers for n64
/external/chromium/base/
H A Dprocess_util.h489 // priv: Pages mapped only by this process
506 // mapped: These pages are mapped into the view of a section (backed by
508 // image: These pages are mapped into the view of an image section (backed by
511 CommittedKBytes() : priv(0), mapped(0), image(0) {}
513 size_t mapped; member in struct:base::CommittedKBytes
/external/chromium/chrome/browser/
H A Dprocess_info_snapshot_mac.cc432 usage->mapped = 0;
438 usage->mapped = 0;
/external/skia/src/effects/gradients/
H A DSkGradientShader.cpp396 uint16_t* mapped = fCache16Storage; // storage for mapped data
400 mapped[i] = linear[index];
401 mapped[i + kCache16Count] = linear[index + kCache16Count];
443 SkPMColor* mapped = (SkPMColor*)newPR->getAddr(); // storage for mapped data
447 mapped[i] = linear[index];
448 mapped[i + kCache32Count] = linear[index + kCache32Count];
/external/javasqlite/src/main/java/SQLite/
H A DDatabase.java956 String mapped = (String) mapLibraryName.invoke(null, args);
957 System.load(path + java.io.File.separator + mapped);

Completed in 662 milliseconds

123