HomeSort by relevance Sort by last modified time
    Searched refs:mapping (Results 176 - 200 of 346) sorted by null

1 2 3 4 5 6 78 91011>>

  /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/tools/gennorm2/
gennorm2.cpp 232 fprintf(stderr, "gennorm2 error: parsing remove-mapping %s\n", line);
244 fprintf(stderr, "gennorm2 error: parsing mapping string from %s\n", line);
247 UnicodeString mapping(FALSE, uchars, length);
251 "gennorm2 error: round-trip mapping for more than 1 code point on %s\n",
255 builder.setRoundTripMapping((UChar32)startCP, mapping);
258 builder.setOneWayMapping(c, mapping);
  /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:__anon8681
ucol_elm.cpp 151 t->mapping = utrie_open(NULL, NULL, UCOL_ELM_TRIE_CAPACITY,
164 t->contractions = uprv_cnttab_open(t->mapping, status);
241 /* mapping */
242 if(t->mapping != NULL) {
243 /*r->mapping = ucmpe32_clone(t->mapping, status);*/
244 r->mapping = utrie_clone(NULL, t->mapping, NULL, 0);
281 r->contractions->mapping = r->mapping;
1436 UNewTrie *mapping = t->mapping; local
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
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/kernel-headers/original/linux/
fs.h 585 /* Write back some dirty pages from this mapping. */
591 int (*readpages)(struct file *filp, struct address_space *mapping,
594 int (*write_begin)(struct file *, struct address_space *mapping,
597 int (*write_end)(struct file *, struct address_space *mapping,
625 int pagecache_write_begin(struct file *, struct address_space *mapping,
629 int pagecache_write_end(struct file *, struct address_space *mapping,
655 * of struct page's "mapping" pointer be used for PAGE_MAPPING_ANON.
702 int mapping_tagged(struct address_space *mapping, int tag);
707 static inline int mapping_mapped(struct address_space *mapping)
709 return !prio_tree_empty(&mapping->i_mmap) |
    [all...]
swap.h 187 extern int remove_mapping(struct address_space *mapping, struct page *page);
329 struct address_space *mapping)
  /external/antlr/antlr-3.4/gunit-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
GUnitExecuteMojo.java 28 import org.codehaus.plexus.compiler.util.scan.mapping.SourceMapping;
29 import org.codehaus.plexus.compiler.util.scan.mapping.SuffixMapping;
349 SourceMapping mapping = new SuffixMapping( "g", Collections.EMPTY_SET ); local
351 scan.addSourceMapping( mapping );
  /external/libvorbis/doc/
04-codec.tex 104 configurations, channel mapping configurations and mode
180 multichannel audio with varying channel mapping applications. Vorbis I
181 uses a single mapping type (0), with implicit PCM channel mappings.
189 \item For each \varname{[i]} of \varname{[vorbis_mapping_count]} mapping numbers:
191 \item read the mapping type: 16 bits as unsigned integer. There's no reason to save the mapping type in Vorbis I.
192 \item If the mapping type is nonzero, the stream is undecodable
193 \item If the mapping type is zero:
204 \item if set, square polar channel mapping is in use:
238 \item save this mapping configuration in slot \varname{[i]} of the mapping configuration array \varname{[vorbis_mapping_co (…)
    [all...]
  /external/llvm/unittests/Support/
YAMLIOTest.cpp 47 static void mapping(IO &io, FooBar& fb) { function in struct:llvm::yaml::MappingTraits
57 // Test the reading of a yaml mapping
154 static void mapping(IO &io, BuiltInTypes& bt) { function in struct:llvm::yaml::MappingTraits
311 static void mapping(IO &io, ColorMap& c) { function in struct:llvm::yaml::MappingTraits
385 static void mapping(IO &io, FlagsMap& c) { function in struct:llvm::yaml::MappingTraits
468 static void mapping(IO &io, MyCustomTypeMap& s) { function in struct:llvm::yaml::MappingTraits
576 static void mapping(IO &io, NameAndNumbers& nn) { function in struct:llvm::yaml::MappingTraits
668 static void mapping(IO &io, TotalSeconds &secs) { function in struct:llvm::yaml::MappingTraits
783 static void mapping(IO &io, KindAndFlags& kf) { function in struct:llvm::yaml::MappingTraits
873 static void mapping(IO &io, FooBarMap& fb) function in struct:llvm::yaml::MappingTraits
    [all...]
  /external/tremolo/Tremolo/
codec_internal.h 156 unsigned char mapping; member in struct:__anon15865
159 /* Mapping backend generic *****************************************/
201 blocksize flag and a mapping (along with the mapping setup */
treminfo.c 296 ci->mode_param[i].mapping=(unsigned char)oggpack_read(opb,8);
297 if(ci->mode_param[i].mapping>=ci->maps)goto err_out;
  /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
nodegetbaseuri01.js 84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/infoset-mapping#Infoset2Document
nodegetbaseuri03.js 78 Check that Node.baseURI is null for a DocumentType as defined in the Infoset Mapping (Appendix C).
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/infoset-mapping#Infoset2DocumentType
nodegetbaseuri05.js 84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/infoset-mapping#Infoset2Element
nodegetbaseuri09.js 84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/infoset-mapping#Infoset2Element
nodegetbaseuri15.js 84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/infoset-mapping#Infoset2Attr
nodegetbaseuri17.js 84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/infoset-mapping#Infoset2Text
nodegetbaseuri18.js 84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/infoset-mapping#Infoset2Comment
  /external/valgrind/main/memcheck/tests/
varinfo6.stdout.exp 9 bytes: mapping 19, selectors 66, code lengths 134, codes 6465
  /external/eigen/bench/btl/data/
gnuplot_common_settings.hh 38 set mapping cartesian
  /external/stressapptest/src/
os.cc 510 // Use dynamic mapping for allocations larger than that.
515 // Do a full mapping here otherwise.
591 // Prepare the target memory. It may requre mapping in, or this may be a noop.
598 void * mapping = mmap64(NULL, length, PROT_READ | PROT_WRITE, local
602 void * mapping = mmap(NULL, length, PROT_READ | PROT_WRITE,
606 if (mapping == MAP_FAILED) {
613 return mapping;
  /external/valgrind/main/gdbserver_tests/
mcsignopass.stdoutB.exp 57 115 mapping[FILESIZE+10];

Completed in 698 milliseconds

1 2 3 4 5 6 78 91011>>