HomeSort by relevance Sort by last modified time
    Searched refs:remap (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/clang/tools/c-arcmt-test/
c-arcmt-test.c 13 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/clang/tools/libclang/
ARCMigrate.cpp 25 struct Remap {
58 std::unique_ptr<Remap> remap(new Remap());
60 bool err = arcmt::getFileRemappings(remap->Vec, migrate_dir_path,&diagBuffer);
73 return remap.release();
80 std::unique_ptr<Remap> remap(new Remap());
86 return remap.release()
    [all...]
  /external/clang/include/clang/ARCMigrate/
FileRemapper.h 55 void remap(StringRef filePath, llvm::MemoryBuffer *memBuf);
62 void remap(const FileEntry *file, llvm::MemoryBuffer *memBuf);
63 void remap(const FileEntry *file, const FileEntry *newfile);
ARCMT.h 76 bool getFileRemappings(std::vector<std::pair<std::string,std::string> > &remap,
85 std::vector<std::pair<std::string,std::string> > &remap,
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
InterceptFieldTransformer.java 181 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,
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
LocalVariablesSorter.java 95 mv.visitVarInsn(opcode, remap(var, size));
99 mv.visitIincInsn(remap(var, 1), increment); method
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/llvm/lib/MC/MCAnalysis/
MCAtom.cpp 20 void MCAtom::remap(uint64_t NewBegin, uint64_t NewEnd) { function in class:MCAtom
21 Parent->remap(this, NewBegin, NewEnd);
27 remap(Begin, TruncPt);
42 // Remap this atom to become the lower of the two new ones.
43 remap(LBegin, LEnd);
51 remap(Begin, End + 1);
79 remap(Begin, NextInstAddress + Size - 1);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
remap.c 28 * \file remap.c
29 * Remap table management.
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);
175 /* Remap static functions which have alternative names and are in the ABI.
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 *
    [all...]
  /external/mesa3d/src/mesa/main/
remap.c 28 * \file remap.c
29 * Remap table management.
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);
175 /* Remap static functions which have alternative names and are in the ABI.
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 *
    [all...]
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 46 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
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_emulate_branches.c 282 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/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_branches.c 282 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;
  /hardware/qcom/display/msm8084/liboverlay/
overlayRotator.h 126 /* remap rot buffers */
127 bool remap(uint32_t numbufs);
183 /* remap rot buffers */
184 bool remap(uint32_t numbufs);
overlayMdpRot.cpp 184 bool MdpRot::remap(uint32_t numbufs) { function in class:overlay::MdpRot
185 // if current size changed, remap
225 if(false == remap(RotMem::ROT_NUM_BUFS)) {
226 ALOGE("%s Remap failed, not queueing", __FUNCTION__);
overlayMdssRot.cpp 139 if(false == remap(RotMem::ROT_NUM_BUFS)) {
140 ALOGE("%s Remap failed, not queuing", __FUNCTION__);
179 bool MdssRot::remap(uint32_t numbufs) { function in class:overlay::MdssRot
182 // If current size changed, remap
  /hardware/qcom/display/msm8226/liboverlay/
overlayRotator.h 126 /* remap rot buffers */
127 bool remap(uint32_t numbufs);
183 /* remap rot buffers */
184 bool remap(uint32_t numbufs);
overlayMdpRot.cpp 184 bool MdpRot::remap(uint32_t numbufs) { function in class:overlay::MdpRot
185 // if current size changed, remap
225 if(false == remap(RotMem::ROT_NUM_BUFS)) {
226 ALOGE("%s Remap failed, not queueing", __FUNCTION__);
overlayMdssRot.cpp 137 if(false == remap(RotMem::ROT_NUM_BUFS)) {
138 ALOGE("%s Remap failed, not queuing", __FUNCTION__);
177 bool MdssRot::remap(uint32_t numbufs) { function in class:overlay::MdssRot
180 // If current size changed, remap
  /hardware/qcom/display/msm8960/liboverlay/
overlayRotator.h 140 /* remap rot buffers */
141 bool remap(uint32_t numbufs);
199 /* remap rot buffers */
200 bool remap(uint32_t numbufs);
overlayMdpRot.cpp 199 bool MdpRot::remap(uint32_t numbufs) { function in class:overlay::MdpRot
200 // if current size changed, remap
238 remap(RotMem::Mem::ROT_NUM_BUFS);
overlayMdssRot.cpp 135 remap(RotMem::Mem::ROT_NUM_BUFS);
184 bool MdssRot::remap(uint32_t numbufs) { function in class:overlay::MdssRot
187 // If current size changed, remap
  /hardware/qcom/display/msm8974/liboverlay/
overlayRotator.h 140 /* remap rot buffers */
141 bool remap(uint32_t numbufs);
197 /* remap rot buffers */
198 bool remap(uint32_t numbufs);
  /external/llvm/include/llvm/MC/MCAnalysis/
MCModule.h 47 // For access to map/remap.
50 /// \brief Remap \p Atom to the given range, and update its Begin/End fields.
54 void remap(MCAtom *Atom, uint64_t NewBegin, uint64_t NewEnd);
MCAtom.h 84 /// \brief Remap the atom, using the given range, updating Begin/End.
87 void remap(uint64_t NewBegin, uint64_t NewEnd);
89 /// \brief Remap the atom to prepare for a truncation at TruncPt.
93 /// remap(Begin, TruncPt);
97 /// \brief Remap the atom to prepare for a split at SplitPt.
  /external/chromium_org/chrome/browser/android/bookmarks/
partner_bookmarks_shim.cc 97 NodeRenamingMap::const_iterator remap = node_rename_remove_map_.find(key); local
98 if (remap != node_rename_remove_map_.end() && remap->second.empty())

Completed in 578 milliseconds

1 2 3