Searched defs:remap (Results 1 - 25 of 26) sorted by relevance

12

/external/llvm/lib/MC/MCAnalysis/
H A DMCAtom.cpp20 void MCAtom::remap(uint64_t NewBegin, uint64_t NewEnd) { function in class:MCAtom
21 Parent->remap(this, NewBegin, NewEnd);
27 remap(Begin, TruncPt);
43 remap(LBegin, LEnd);
51 remap(Begin, End + 1);
79 remap(Begin, NextInstAddress + Size - 1);
H A DMCModule.cpp53 // remap - Update the interval mapping for an atom.
54 void MCModule::remap(MCAtom *Atom, uint64_t NewBegin, uint64_t NewEnd) { function in class:MCModule
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dremap.c28 * \file remap.c
35 * remap table is in charge of mapping a static entry in mesa core to
43 #include "remap.h"
150 _mesa_warning(NULL, "failed to remap %s", name);
183 * Initialize the remap table. This is called in one_time_init().
184 * The remap table needs to be initialized before calling the
190 const struct gl_function_pool_remap *remap)
199 /* initialize the remap table */
205 ASSERT(i == remap[i].remap_index);
206 spec = _mesa_function_pool + remap[
188 _mesa_do_init_remap_table(const char *pool, int size, const struct gl_function_pool_remap *remap) argument
[all...]
/external/clang/tools/c-arcmt-test/
H A Dc-arcmt-test.c13 CXRemapping remap; local
18 remap = clang_getRemappings(path);
19 if (!remap)
22 N = clang_remap_getNumFiles(remap);
24 clang_remap_getFilenames(remap, i, &origFname, &transFname);
33 clang_remap_dispose(remap);
38 CXRemapping remap; local
43 remap = clang_getRemappingsFromFileList(files, numFiles);
44 if (!remap)
47 N = clang_remap_getNumFiles(remap);
[all...]
/external/mesa3d/src/mesa/main/
H A Dremap.c28 * \file remap.c
35 * remap table is in charge of mapping a static entry in mesa core to
43 #include "remap.h"
150 _mesa_warning(NULL, "failed to remap %s", name);
183 * Initialize the remap table. This is called in one_time_init().
184 * The remap table needs to be initialized before calling the
190 const struct gl_function_pool_remap *remap)
199 /* initialize the remap table */
205 ASSERT(i == remap[i].remap_index);
206 spec = _mesa_function_pool + remap[
188 _mesa_do_init_remap_table(const char *pool, int size, const struct gl_function_pool_remap *remap) argument
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DLocalVariablesSorter.java95 mv.visitVarInsn(opcode, remap(var, size));
99 mv.visitIincInsn(remap(var, 1), increment);
114 mv.visitLocalVariable(name, desc, signature, start, end, remap(index));
125 private int remap(final int var, final int size) { method in class:LocalVariablesSorter
145 private int remap(final int var) { method in class:LocalVariablesSorter
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DInterceptFieldTransformer.java181 Type remap = remap(type);
182 return new Signature("read" + callbackName(remap),
183 remap,
186 remap });
190 Type remap = remap(type);
191 return new Signature("write" + callbackName(remap),
192 remap,
195 remap,
199 private static Type remap(Type type) { method in class:InterceptFieldTransformer
[all...]
/external/chromium_org/chrome/browser/android/bookmarks/
H A Dpartner_bookmarks_shim.cc97 NodeRenamingMap::const_iterator remap = node_rename_remove_map_.find(key); local
98 if (remap != node_rename_remove_map_.end() && remap->second.empty())
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_emulate_branches.c282 struct remap_output_data remap; local
285 remap.Output = inst->U.I.DstReg.Index;
286 remap.Temporary = rc_find_free_temporary(s->C);
291 rc_remap_registers(inst, &remap_output_function, &remap);
297 inst_mov->U.I.DstReg.Index = remap.Output;
300 inst_mov->U.I.SrcReg[0].Index = remap.Temporary;
/external/clang/lib/ARCMigrate/
H A DFileRemapper.cpp46 llvm::sys::path::append(InfoFile, "remap");
59 "initFromDisk should be called before any remap calls");
107 remap(pairs[i].first, pairs[i].second);
159 remap(origFE, newE);
210 void FileRemapper::remap(StringRef filePath, llvm::MemoryBuffer *memBuf) { function in class:FileRemapper
211 remap(getOriginalFile(filePath), memBuf);
214 void FileRemapper::remap(const FileEntry *file, llvm::MemoryBuffer *memBuf) { function in class:FileRemapper
221 void FileRemapper::remap(const FileEntry *file, const FileEntry *newfile) { function in class:FileRemapper
H A DARCMT.cpp398 remap,
416 remap = PPOpts.RemappedFiles;
604 Remapper.remap(filePath.str(), memBuf);
397 getFileRemappings(std::vector<std::pair<std::string,std::string> > & remap, StringRef outputDir, DiagnosticConsumer *DiagClient) argument
H A DObjCMT.cpp1834 Remapper.remap(filePath.str(), memBuf);
2084 std::vector<std::pair<std::string,std::string> > &remap,
2133 remap.push_back(std::make_pair(I->first->getName(), TempFile));
2083 getFileRemappingsFromFileList( std::vector<std::pair<std::string,std::string> > &remap, ArrayRef<StringRef> remapFiles, DiagnosticConsumer *DiagClient) argument
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_emulate_branches.c282 struct remap_output_data remap; local
285 remap.Output = inst->U.I.DstReg.Index;
286 remap.Temporary = rc_find_free_temporary(s->C);
291 rc_remap_registers(inst, &remap_output_function, &remap);
297 inst_mov->U.I.DstReg.Index = remap.Output;
300 inst_mov->U.I.SrcReg[0].Index = remap.Temporary;
/external/chromium_org/cc/surfaces/
H A Dsurface_aggregator.cc122 DrawQuad::ResourceIteratorCallback remap = local
134 quad_it->IterateResources(remap);
/external/fonttools/Lib/fontTools/
H A Dsubset.py63 def remap(self, coverage_map): function
83 def subset(self, glyphs, remap=False):
91 if remap:
92 self.remap(indices)
96 def remap(self, class_map): function
126 self.Coverage.remap(indices)
185 self.Coverage.remap(indices)
223 self.Coverage.remap(indices)
228 class1_map = self.ClassDef1.subset(s.glyphs, remap=True)
229 class2_map = self.ClassDef2.subset(s.glyphs, remap
[all...]
/external/fonttools/Tools/fontTools/
H A Dsubset.py63 def remap(self, coverage_map): function
83 def subset(self, glyphs, remap=False):
91 if remap:
92 self.remap(indices)
96 def remap(self, class_map): function
126 self.Coverage.remap(indices)
185 self.Coverage.remap(indices)
223 self.Coverage.remap(indices)
228 class1_map = self.ClassDef1.subset(s.glyphs, remap=True)
229 class2_map = self.ClassDef2.subset(s.glyphs, remap
[all...]
/external/valgrind/main/VEX/priv/
H A Dhost_generic_reg_alloc2.c393 HRegRemap remap; local
1200 initHRegRemap(&remap);
1293 addToHRegRemap(&remap, vreg, rreg_state[k].rreg);
1332 addToHRegRemap(&remap, vreg, rreg_state[k].rreg);
1472 addToHRegRemap(&remap, vreg, rreg_state[spillee].rreg);
1488 (*mapRegs)( &remap, instrs_in->arr[ii], mode64 );
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dapi_exec_es1.c475 const struct gl_function_pool_remap *remap = MESA_remap_table_functions; local
489 ASSERT(i == remap[i].remap_index);
490 spec = _mesa_function_pool + remap[i].pool_index;
/external/elfutils/0.153/src/
H A Dldgeneric.c3947 size_t *remap = xmalloc (nsym_dyn * sizeof (size_t)); local
3956 remap[ndxtosym[cnt]->outdynsymidx] = cnt;
3966 qsort (remap + 1, nsym_dyn - 1, sizeof (size_t), sortfct_hashval);
3978 if (! ndxtosym[remap[cnt]]->defined
3979 || ndxtosym[remap[cnt]]->in_dso)
3985 Elf32_Word hval = gnuhashcodes[ndxtosym[remap[cnt]]->outdynsymidx];
4025 ndxtosym[remap[cnt]]->outdynsymidx = cnt;
4042 free (remap);
/external/valgrind/main/helgrind/
H A Dlibhb_core.c2548 VtsID remap; /* used only during pruning */ member in struct:__anon32853
2614 te.remap = VtsID_INVALID;
2715 new_id = old_te->remap;
2865 set, at the same time setting the .remap entries in the old
2868 .remap entries in the old table. Finally, we can delete the old
2906 tl_assert(old_te->remap == VtsID_INVALID);
2969 new_te.remap = VtsID_INVALID;
2977 old_te->remap = new_vts->id;
2982 * the old VTS table, with its .remap entries set,
2987 * the new VTS table, with all .rc == 0, all .freelink and .remap
[all...]
/external/jarjar/lib/
H A Dasm-commons-4.0.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-commons-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.objectweb.asm_3.2.0.v200909071300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/dexmaker/lib/
H A Djarjar.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/tonicsystems/ com/tonicsystems/jarjar/ com/tonicsystems/jarjar/AbstractDepHandler ...
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...

Completed in 459 milliseconds

12