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

1 2 3 4

  /external/chromium_org/remoting/client/
key_event_mapper.cc 49 // Re-map mapped keys to the new value before passing them on.
50 std::map<uint32,uint32>::iterator mapped = local
52 if (mapped != mapped_keys.end()) {
54 new_event.set_usb_keycode(mapped->second);
  /external/elfutils/0.153/lib/
crc32_file.c 68 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, mapsize)
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
BaseCodeCursor.java 44 int mapped = baseAddressMap.get(cursor); local
45 return (mapped >= 0) ? mapped : cursor;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_state_so.c 90 void *mapped; local
104 mapped = res->data;
106 map_buffers[i] = ((char*)mapped) + offsets[i];
110 map_buffers[i] = mapped;
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
BaseCodeCursor.java 46 int mapped = baseAddressMap.get(cursor); local
47 return (mapped >= 0) ? mapped : cursor;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_so.c 90 void *mapped; local
104 mapped = res->data;
106 map_buffers[i] = ((char*)mapped) + offsets[i];
110 map_buffers[i] = mapped;
  /external/elfutils/0.153/libdwfl/
open.c 78 void *const mapped = ((*elf)->map_address == NULL ? NULL local
84 error = __libdw_gunzip (fd, offset, mapped, mapped_size, &buffer, &size);
86 error = __libdw_bunzip2 (fd, offset, mapped, mapped_size, &buffer, &size);
88 error = __libdw_unlzma (fd, offset, mapped, mapped_size, &buffer, &size);
  /libcore/luni/src/test/java/libcore/java/nio/
BufferTest.java 44 File f = File.createTempFile("mapped", "tmp");
67 // Read from mapped /dev/zero, and overwrite this array.
857 MappedByteBuffer mapped = (MappedByteBuffer) allocateMapped(1); local
858 mapped.force();
859 mapped.isLoaded();
860 mapped.load();
865 MappedByteBuffer mapped = (MappedByteBuffer) allocateMapped(1); local
866 mapped.get();
867 mapped.rewind()
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
FirstFitAllocator.java 41 /** indexed by old reg; the set of old regs we've mapped */
42 private final BitSet mapped; field in class:FirstFitAllocator
49 mapped = new BitSet(ssaMeth.getRegCount());
79 if (mapped.get(i)) {
107 if (mapped.get(j) || isDefinitionMoveParam(j)) {
126 mapped.set(j);
130 mapped.set(i);
  /external/chromium_org/gpu/command_buffer/client/
buffer_tracker.h 62 void set_mapped(bool mapped) {
63 mapped_ = mapped;
66 bool mapped() const { function in class:gpu::gles2::BufferTracker::Buffer
  /external/chromium_org/third_party/angle/src/libGLESv2/
Buffer.cpp 124 GLboolean Buffer::mapped() const function in class:gl::Buffer
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/android/
android_sw_winsys.cpp 58 void *mapped; member in struct:android_sw_displaytarget
99 assert(!adt->mapped);
112 if (adt->mapped && sw_gralloc_handle_t::validate(adt->handle) >= 0) {
113 adt->mapped = NULL;
118 if (adt->mapped) {
120 adt->mapped = NULL;
137 adt->mapped = reinterpret_cast<void *>(swhandle->base);
139 return adt->mapped;
143 if (!adt->mapped) {
146 adt->usage, 0, 0, adt->width, adt->height, &adt->mapped);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/dri/
dri_sw_winsys.c 48 void *mapped; member in struct:dri_sw_displaytarget
137 dri_sw_dt->mapped = dri_sw_dt->data;
138 return dri_sw_dt->mapped;
146 dri_sw_dt->mapped = NULL;
  /external/deqp/modules/glshared/
glsShaderConstExprTests.cpp 153 const string mapped = shaderTemplate.specialize(shaderTemplateParams); local
164 mapped)));
175 mapped)));
187 const string mapped = shaderTemplate.specialize(shaderTemplateParams); local
198 mapped)));
209 mapped)));
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
FirstFitAllocator.java 43 /** 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/mesa3d/src/gallium/winsys/sw/android/
android_sw_winsys.cpp 58 void *mapped; member in struct:android_sw_displaytarget
99 assert(!adt->mapped);
112 if (adt->mapped && sw_gralloc_handle_t::validate(adt->handle) >= 0) {
113 adt->mapped = NULL;
118 if (adt->mapped) {
120 adt->mapped = NULL;
137 adt->mapped = reinterpret_cast<void *>(swhandle->base);
139 return adt->mapped;
143 if (!adt->mapped) {
146 adt->usage, 0, 0, adt->width, adt->height, &adt->mapped);
    [all...]
  /external/mesa3d/src/gallium/winsys/sw/dri/
dri_sw_winsys.c 48 void *mapped; member in struct:dri_sw_displaytarget
137 dri_sw_dt->mapped = dri_sw_dt->data;
138 return dri_sw_dt->mapped;
146 dri_sw_dt->mapped = NULL;
  /dalvik/dexlist/
DexList.cpp 204 bool mapped = false; local
218 mapped = true;
236 if (mapped)
  /external/apache-http/src/org/apache/commons/codec/language/
Soundex.java 92 * 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
258 char last, mapped; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/fbdev/
fbdev_sw_winsys.c 49 void *mapped; member in struct:fbdev_sw_displaytarget
132 fbdt->mapped = NULL;
141 fbdt->mapped = fbdt->data;
142 return fbdt->mapped;
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/xlib/
xlib_sw_winsys.c 65 void *mapped; member in struct:xlib_displaytarget
231 xlib_dt->mapped = xlib_dt->data;
232 return xlib_dt->mapped;
241 xlib_dt->mapped = NULL;
  /external/jemalloc/include/jemalloc/internal/
stats.h 86 /* Number of bytes currently mapped. */
87 size_t mapped; member in struct:arena_stats_s
  /external/jemalloc/test/unit/
stats.c 6 size_t sz, allocated, active, mapped; local
18 assert_d_eq(mallctl("stats.mapped", &mapped, &sz, NULL, 0), expected,
26 assert_zu_le(active, mapped,
27 "active should be no larger than mapped");
104 size_t mapped; local
123 assert_d_eq(mallctl("stats.arenas.0.mapped", &mapped, &sz, NULL, 0),
  /external/mesa3d/src/gallium/winsys/sw/fbdev/
fbdev_sw_winsys.c 49 void *mapped; member in struct:fbdev_sw_displaytarget
132 fbdt->mapped = NULL;
141 fbdt->mapped = fbdt->data;
142 return fbdt->mapped;
  /external/mesa3d/src/gallium/winsys/sw/xlib/
xlib_sw_winsys.c 65 void *mapped; member in struct:xlib_displaytarget
231 xlib_dt->mapped = xlib_dt->data;
232 return xlib_dt->mapped;
241 xlib_dt->mapped = NULL;

Completed in 664 milliseconds

1 2 3 4