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

1 2 3

  /external/llvm/tools/lto/
lto.cpp 135 void lto_codegen_dispose(lto_code_gen_t cg) {
136 delete cg;
142 bool lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod) {
143 return !cg->addModule(mod, sLastErrorString);
149 bool lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model debug) {
150 cg->setDebugInfo(debug);
156 bool lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model model) {
157 cg->setCodePICModel(model);
162 void lto_codegen_set_cpu(lto_code_gen_t cg, const char *cpu) {
163 return cg->setCpu(cpu)
    [all...]
  /external/oprofile/daemon/
opd_mangling.h 23 * @param cg if this is a callgraph file
31 struct sfile * sf, int counter, int cg);
opd_mangling.c 69 mangle_filename(struct sfile * last, struct sfile const * sf, int counter, int cg)
107 if (cg) {
142 struct sfile * sf, int counter, int cg)
150 mangled = mangle_filename(last, sf, counter, cg);
159 /* locking sf will lock associated cg files too */
opd_sfile.c 301 struct cg_entry * cg; local
326 cg = list_entry(pos, struct cg_entry, hash);
327 if (sfile_equal(last, &cg->to)) {
328 file = &cg->to.files[trans->event];
333 cg = xmalloc(sizeof(struct cg_entry));
334 sfile_dup(&cg->to, last);
335 list_add(&cg->hash, &sf->cg_hash[hash]);
336 file = &cg->to.files[trans->event];
536 struct cg_entry * cg = local
538 if (free_sf || func(&cg->to, data))
    [all...]
opd_ibs.c 754 struct cg_entry * cg; local
786 cg = list_entry(pos, struct cg_entry, hash);
787 if (sfile_equal(last, &cg->to)) {
788 file = &(cg->to.ext_files[ibs_vci]);
793 cg = xmalloc(sizeof(struct cg_entry));
794 sfile_dup(&cg->to, last);
795 list_add(&cg->hash, &sf->cg_hash[hash]);
796 file = &(cg->to.ext_files[ibs_vci]);
  /external/llvm/include/llvm-c/
lto.h 212 lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod);
221 lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model);
229 lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model);
236 lto_codegen_set_cpu(lto_code_gen_t cg, const char *cpu);
244 lto_codegen_set_assembler_path(lto_code_gen_t cg, const char* path);
250 lto_codegen_set_assembler_args(lto_code_gen_t cg, const char **args,
259 lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg, const char* symbol);
267 lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path);
278 lto_codegen_compile(lto_code_gen_t cg, size_t* length);
285 lto_codegen_compile_to_file(lto_code_gen_t cg, const char** name)
    [all...]
  /external/skia/gm/
gammatext.cpp 47 CGContextRef cg = CGBitmapContextCreate(bm.getPixels(), bm.width(), bm.height(), local
51 CGContextSetAllowsFontSubpixelQuantization(cg, false);
52 CGContextSetShouldSubpixelQuantizeFonts(cg, false);
54 return cg;
68 static void cgSetPaintForText(CGContextRef cg, const SkPaint& paint) {
76 CGContextSetRGBFillColor(cg, rgba[0], rgba[1], rgba[2], rgba[3]);
78 CGContextSetTextDrawingMode(cg, kCGTextFill);
79 CGContextSetFont(cg, typefaceToCGFont(paint.getTypeface()));
80 CGContextSetFontSize(cg, SkScalarToFloat(paint.getTextSize()));
82 CGContextSetAllowsFontSubpixelPositioning(cg, paint.isSubpixelText())
146 CGContextRef cg = makeCG(canvas->getDevice()->accessBitmap(false)); local
    [all...]
  /art/compiler/dex/quick/
gen_invoke.cc 336 Mir2Lir* cg = static_cast<Mir2Lir*>(cu->cg.get()); local
346 cg->LoadConstant(cg->TargetReg(kInvokeTgt), direct_code);
349 LIR* data_target = cg->ScanLiteralPool(cg->code_literal_list_,
352 data_target = cg->AddWordData(&cg->code_literal_list_, target_method.dex_method_index);
355 LIR* load_pc_rel = cg->OpPcRelLoad(cg->TargetReg(kInvokeTgt), data_target)
439 Mir2Lir* cg = static_cast<Mir2Lir*>(cu->cg.get()); local
487 Mir2Lir* cg = static_cast<Mir2Lir*>(cu->cg.get()); local
554 Mir2Lir* cg = static_cast<Mir2Lir*>(cu->cg.get()); local
    [all...]
  /external/chromium_org/third_party/skia/src/utils/ios/
SkImageDecoder_iOS.mm 45 CGContextRef cg = CGBitmapContextCreate(bm->getPixels(), width, height,
47 CGContextDrawImage(cg, CGRectMake(0, 0, width, height), uimage.CGImage);
48 CGContextRelease(cg);
  /external/skia/src/utils/ios/
SkImageDecoder_iOS.mm 45 CGContextRef cg = CGBitmapContextCreate(bm->getPixels(), width, height,
47 CGContextDrawImage(cg, CGRectMake(0, 0, width, height), uimage.CGImage);
48 CGContextRelease(cg);
  /art/compiler/dex/
compiler_ir.h 71 cg(NULL) {}
111 UniquePtr<Backend> cg; // Target-specific codegen. member in struct:art::CompilationUnit
frontend.cc 226 cu.cg.reset(PortableCodeGenerator(&cu, cu.mir_graph.get(), &cu.arena, llvm_compilation_unit));
231 cu.cg.reset(ArmCodeGenerator(&cu, cu.mir_graph.get(), &cu.arena));
234 cu.cg.reset(MipsCodeGenerator(&cu, cu.mir_graph.get(), &cu.arena));
237 cu.cg.reset(X86CodeGenerator(&cu, cu.mir_graph.get(), &cu.arena));
246 cu.cg->Materialize();
248 result = cu.cg->GetCompiledMethod();
vreg_analysis.cc 337 Mir2Lir* cg = static_cast<Mir2Lir*>(cu_->cg.get()); local
338 if (cg != NULL) {
346 cg->IsFpReg(table[i].low_reg) ? 's' : 'r',
347 table[i].low_reg & cg->FpRegMask(),
348 cg->IsFpReg(table[i].high_reg) ? 's' : 'r',
349 table[i].high_reg & cg->FpRegMask(), table[i].s_reg_low);
  /development/ide/xcode/ports/
SkBitmap_Mac.cpp 106 void SkBitmap::drawToPort(WindowRef wind, CGContextRef cg) const {
112 if (NULL == cg) {
114 QDBeginCGContext(GetWindowPort(wind), &cg); local
133 CGContextDrawImage(cg, rect, image);
138 QDEndCGContext(GetWindowPort(wind), &cg); local
SkOSWindow_Mac.cpp 250 CGContextRef cg; local
257 &cg);
259 cg = NULL;
261 win->doPaint(cg);
  /external/llvm/include/llvm/Transforms/Utils/
Cloning.h 162 explicit InlineFunctionInfo(CallGraph *cg = 0, const DataLayout *td = 0)
163 : CG(cg), TD(td) {}
165 /// CG - If non-null, InlineFunction will update the callgraph to reflect the
167 CallGraph *CG;
175 /// inlined from the callee. This is only filled in if CG is non-null.
  /external/chromium_org/third_party/skia/src/utils/mac/
SkCreateCGImageRef.cpp 96 // here we make a ceep copy of the pixels, since CG won't take our
144 void SkCGDrawBitmap(CGContextRef cg, const SkBitmap& bm, float x, float y) {
150 CGContextSaveGState(cg);
151 CGContextTranslateCTM(cg, x, r.size.height + y);
152 CGContextScaleCTM(cg, 1, -1);
154 CGContextDrawImage(cg, r, img);
156 CGContextRestoreGState(cg);
  /external/skia/src/utils/mac/
SkCreateCGImageRef.cpp 96 // here we make a ceep copy of the pixels, since CG won't take our
144 void SkCGDrawBitmap(CGContextRef cg, const SkBitmap& bm, float x, float y) {
150 CGContextSaveGState(cg);
151 CGContextTranslateCTM(cg, x, r.size.height + y);
152 CGContextScaleCTM(cg, 1, -1);
154 CGContextDrawImage(cg, r, img);
156 CGContextRestoreGState(cg);
  /external/chromium_org/third_party/skia/src/views/mac/
SkOSWindow_Mac.cpp 172 CGContextRef cg = reinterpret_cast<CGContextRef>(ctx);
174 CGContextSaveGState(cg);
175 CGContextTranslateCTM(cg, 0, r.size.height);
176 CGContextScaleCTM(cg, 1, -1);
178 CGContextDrawImage(cg, r, img);
180 CGContextRestoreGState(cg);
390 CGContextRef cg; local
397 &cg);
399 cg = NULL;
401 win->doPaint(cg);
    [all...]
  /external/skia/src/views/mac/
SkOSWindow_Mac.cpp 172 CGContextRef cg = reinterpret_cast<CGContextRef>(ctx);
174 CGContextSaveGState(cg);
175 CGContextTranslateCTM(cg, 0, r.size.height);
176 CGContextScaleCTM(cg, 1, -1);
178 CGContextDrawImage(cg, r, img);
180 CGContextRestoreGState(cg);
390 CGContextRef cg; local
397 &cg);
399 cg = NULL;
401 win->doPaint(cg);
    [all...]
  /external/valgrind/main/
Android.mk 376 cachegrind/cg-arch.c \
377 cachegrind/cg-arm.c \
379 cachegrind/cg-ppc32.c \
380 cachegrind/cg-ppc64.c \
381 cachegrind/cg-s390x.c \
382 cachegrind/cg-x86-amd64.c
421 cachegrind/cg-arch.c \
422 cachegrind/cg-arm.c \
423 cachegrind/cg-ppc32.c \
424 cachegrind/cg-ppc64.c
    [all...]
  /external/chromium_org/third_party/skia/src/ports/
SkImageDecoder_CG.cpp 94 CGContextRef cg = CGBitmapContextCreate(bm->getPixels(), width, height, 8, bm->rowBytes(), cs, BITMAP_INFO); local
97 CGContextDrawImage(cg, CGRectMake(0, 0, width, height), image);
98 CGContextRelease(cg);
  /external/skia/src/ports/
SkImageDecoder_CG.cpp 94 CGContextRef cg = CGBitmapContextCreate(bm->getPixels(), width, height, 8, bm->rowBytes(), cs, BITMAP_INFO); local
97 CGContextDrawImage(cg, CGRectMake(0, 0, width, height), image);
98 CGContextRelease(cg);
  /frameworks/base/graphics/java/android/graphics/
Color.java 133 final float cg = (V - g) / vtemp; local
137 H = cb - cg;
141 H = 4 + cg - cr;
  /external/oprofile/pp/
opreport.cpp 73 "unxpected non empty cg file set");
448 void output_cg_symbols(callgraph_container const & cg, bool multiple_apps)
450 column_flags output_hints = cg.output_hint();
452 symbol_collection symbols = cg.get_symbols();
462 xml_out = new format_output::xml_cg_formatter(cg, symbols,
469 text_out = new format_output::cg_formatter(cg);
487 cg.extra_found_images);

Completed in 637 milliseconds

1 2 3