HomeSort by relevance Sort by last modified time
    Searched refs:mapping (Results 76 - 100 of 199) sorted by null

1 2 34 5 6 7 8

  /external/icu4c/test/intltest/
nptrans.h 37 Transliterator *mapping; member in class:NamePrepTransform
69 * Map every character in input stream with mapping character
70 * in the mapping table and populate the output stream.
71 * For any individual character the mapping table may specify
  /external/kernel-headers/original/asm-arm/
cacheflush.h 192 * These are private to the dma-mapping API. Do not use directly.
218 * These are private to the dma-mapping API. Do not use directly.
332 * the dcache entries associated with the kernel mapping.
340 #define flush_dcache_mmap_lock(mapping) \
341 write_lock_irq(&(mapping)->tree_lock)
342 #define flush_dcache_mmap_unlock(mapping) \
343 write_unlock_irq(&(mapping)->tree_lock)
  /external/kernel-headers/original/asm-x86/
swiotlb.h 4 #include <asm/dma-mapping.h>
  /external/kernel-headers/original/linux/
mm.h 185 * mapping from the currently active vm_flags protection bits (the
233 unsigned long private; /* Mapping-private opaque data:
240 struct address_space *mapping; /* If low bit clear, points to member in struct:page::__anon7267::__anon7268
252 pgoff_t index; /* Our offset within mapping. */
285 * - cache mapping (page->mapping)
287 * - page mapped in a task's page tables, each mapping
365 * A page may belong to an inode's memory mapping. In this case,
366 * page->mapping is the pointer to the inode, and page->index is the
380 * There is also a per-mapping radix tree mapping index to the pag
573 struct address_space *mapping = page->mapping; local
    [all...]
fs.h 359 /* Write back some dirty pages from this mapping. */
365 int (*readpages)(struct file *filp, struct address_space *mapping,
409 * of struct page's "mapping" pointer be used for PAGE_MAPPING_ANON.
464 int mapping_tagged(struct address_space *mapping, int tag);
469 static inline int mapping_mapped(struct address_space *mapping)
471 return !prio_tree_empty(&mapping->i_mmap) ||
472 !list_empty(&mapping->i_mmap_nonlinear);
481 static inline int mapping_writably_mapped(struct address_space *mapping)
483 return mapping->i_mmap_writable != 0;
    [all...]
swap.h 187 extern int remove_mapping(struct address_space *mapping, struct page *page);
329 struct address_space *mapping)
  /external/webkit/Source/WebKit2/WebProcess/WebPage/ca/win/
LayerTreeHostCAWin.cpp 181 HANDLE mapping = WKCACFImageCopyFileMapping(image, &fileMappingSize); local
182 if (!mapping)
185 RefPtr<SharedMemory> sharedMemory = SharedMemory::adopt(mapping, fileMappingSize, SharedMemory::ReadWrite);
187 ::CloseHandle(mapping);
  /external/icu4c/common/
normalizer2impl.cpp 526 const uint16_t *mapping=getMapping(norm16); local
527 uint16_t firstUnit=*mapping++;
532 leadCC=(uint8_t)(*mapping++>>8);
536 return buffer.append((const UChar *)mapping, length, leadCC, trailCC, errorCode);
560 const uint16_t *mapping=getMapping(norm16); local
561 uint16_t firstUnit=*mapping++;
564 ++mapping;
566 return (const UChar *)mapping;
608 const uint16_t *mapping=getMapping(norm16); local
609 uint16_t firstUnit=*mapping++
1319 const uint16_t *mapping=getMapping(norm16); local
1352 const uint16_t *mapping=getMapping(norm16); local
1477 const uint16_t *mapping=getMapping(norm16); local
1823 const uint16_t *mapping=getMapping(norm16_2); local
    [all...]
  /external/mesa3d/docs/
MESA_texture_signed_rgba.spec 91 however -128 and -127 both map to -1.0. Mapping -128 to -1.0
104 This is the same mapping as OpenGL 3.1 uses.
106 The above mapping should be considered the reference, but there
108 cannot do this. Particulary the mapping given in NV_texture_shader or
109 the standard OpenGL byte/float mapping is considered acceptable too, as
110 might be a mapping which represents -1.0 by -128, 0.0 by 0 and 1.0 by
114 converting to GL_FLOAT (using the standard OpenGL float/byte mapping)
115 and converting back (using the mapping described here).
  /external/icu4c/tools/gennorm2/
n2builder.cpp 103 // Requires hasMapping() and well-formed mapping.
106 if(!mapping->isEmpty() && mapping->length()==U16_LENGTH(c=mapping->char32At(0))) {
123 UnicodeString *mapping; member in struct:Norm
124 UChar32 mappingCP; // >=0 if mapping to 1 code point
174 delete norms[i].mapping;
230 "not permitted to override mapping for U+%04lX from phase %d\n",
234 delete p->mapping;
235 p->mapping=NULL
    [all...]
gennorm2.cpp 226 fprintf(stderr, "gennorm2 error: parsing remove-mapping %s\n", line);
238 fprintf(stderr, "gennorm2 error: parsing mapping string from %s\n", line);
241 UnicodeString mapping(FALSE, uchars, length);
245 "gennorm2 error: round-trip mapping for more than 1 code point on %s\n",
249 builder.setRoundTripMapping((UChar32)startCP, mapping);
252 builder.setOneWayMapping(c, mapping);
  /cts/tools/signature-tools/src/signature/compare/model/subst/
ClassProjection.java 44 Map<ITypeVariableDefinition, ITypeReference> mapping) {
46 this.substitutions = mapping;
  /external/icu4c/data/mappings/
ucmcore.mk 6 # without any mapping tables:
  /external/webkit/Source/WebCore/inspector/front-end/
SourceFile.js 255 function didFormatContent(formattedText, mapping)
257 this._mapping = new WebInspector.FormattedSourceMapping(this._scripts, text, formattedText, mapping);
296 WebInspector.FormattedSourceMapping = function(scripts, originalText, formattedText, mapping)
301 this._mapping = mapping;
DebuggerPresentationModel.js 247 function didRequestSourceMapping(mapping)
251 presentationMessage.lineNumber = mapping.scriptLocationToSourceLine({lineNumber:message.line - 1, columnNumber:0});
268 function didRequestSourceMapping(mapping)
270 var location = mapping.sourceLineToScriptLocation(lineNumber);
322 function didRequestSourceMapping(mapping)
324 var location = mapping.sourceLineToScriptLocation(breakpoint.lineNumber);
420 function didRequestSourceMapping(mapping)
424 breakpoint.lineNumber = mapping.scriptLocationToSourceLine(breakpoint.location);
713 function didRequestSourceMapping(mapping)
715 callback(this._sourceFile.id, mapping.scriptLocationToSourceLine(this._callFrame.location))
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
TransparencyWin.cpp 250 AffineTransform mapping;
251 mapping.translate(-m_transformedSourceRect.x(), -m_transformedSourceRect.y());
253 // Compute the inverse mapping from the canvas space to the
255 mapping *= m_orgTransform.inverse();
257 compositeToCopy(*m_destContext, *m_drawContext, mapping);
  /hardware/ti/omap3/dspbridge/inc/
host_os.h 24 *! 08-Mar-2004 sb Added cacheflush.h to support Dynamic Memory Mapping feature
73 #include <linux/dma-mapping.h>
  /hardware/ti/omap3/dspbridge/libbridge/inc/
host_os.h 24 *! 08-Mar-2004 sb Added cacheflush.h to support Dynamic Memory Mapping feature
69 #include <linux/dma-mapping.h>
  /external/icu4c/i18n/
ucol_cnt.cpp 49 /*uprv_cnttab_open(CompactEIntArray *mapping, UErrorCode *status) {*/
50 uprv_cnttab_open(UNewTrie *mapping, UErrorCode *status) {
59 tbl->mapping = mapping;
217 /*CE = ucmpe32_get(table->mapping, i);*/
218 CE = utrie_get32(table->mapping, i, NULL);
221 /*ucmpe32_set(table->mapping, i, CE);*/
222 utrie_set32(table->mapping, i, CE);
274 r->mapping = t->mapping;
    [all...]
ucol_elm.h 39 /* This is the maximum trie capacity for the mapping trie.
101 /*CompactEIntArray *mapping; */
102 UNewTrie *mapping; member in struct:__anon6275
ucol_elm.cpp 149 t->mapping = utrie_open(NULL, NULL, UCOL_ELM_TRIE_CAPACITY,
162 t->contractions = uprv_cnttab_open(t->mapping, status);
239 /* mapping */
240 if(t->mapping != NULL) {
241 /*r->mapping = ucmpe32_clone(t->mapping, status);*/
242 r->mapping = utrie_clone(NULL, t->mapping, NULL, 0);
279 r->contractions->mapping = r->mapping;
1427 UNewTrie *mapping = t->mapping; local
    [all...]
  /frameworks/base/core/java/android/view/
ViewDebug.java 173 * A mapping can be defined to map int values to specific strings. For
175 * actually mean VISIBLE, INVISIBLE and GONE. A mapping can be used to see
179 * @ViewDebug.ExportedProperty(mapping = {
191 IntToString[] mapping() default { };
194 * A mapping can be defined to map array indices to specific strings.
195 * A mapping can be used to see human readable values for the indices
210 * @see #mapping()
215 * A flags mapping can be defined to map flags encoded in an integer to
216 * specific strings. A mapping can be used to see human readable values
263 * Defines a mapping from an int value to a String. Such a mapping can be use
1489 final IntToString[] mapping = property.mapping(); local
1562 final IntToString[] mapping = property.mapping(); local
1641 final IntToString[] mapping = property.mapping(); local
    [all...]
  /external/tremolo/Tremolo/
codec_internal.h 156 unsigned char mapping; member in struct:__anon11736
159 /* Mapping backend generic *****************************************/
201 blocksize flag and a mapping (along with the mapping setup */
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodegetbaseuri19.js 85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/infoset-mapping#Infoset2DocumentType
86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/infoset-mapping#Infoset2EntityReference
  /external/valgrind/main/memcheck/tests/
varinfo6.stdout.exp 9 bytes: mapping 19, selectors 66, code lengths 134, codes 6465

Completed in 1125 milliseconds

1 2 34 5 6 7 8