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

1 2

  /external/llvm/tools/lto/
lto.cpp 137 void lto_codegen_dispose(lto_code_gen_t cg) {
138 delete cg;
144 bool lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod) {
145 return cg->addModule(mod, sLastErrorString);
151 bool lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model debug) {
152 return cg->setDebugInfo(debug, sLastErrorString);
157 bool lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model model) {
158 return cg->setCodePICModel(model, sLastErrorString);
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/skia/gm/
gammatext.cpp 45 CGContextRef cg = CGBitmapContextCreate(bm.getPixels(), bm.width(), bm.height(), local
49 CGContextSetAllowsFontSubpixelQuantization(cg, false);
50 CGContextSetShouldSubpixelQuantizeFonts(cg, false);
52 return cg;
66 static void cgSetPaintForText(CGContextRef cg, const SkPaint& paint) {
74 CGContextSetRGBFillColor(cg, rgba[0], rgba[1], rgba[2], rgba[3]);
76 CGContextSetTextDrawingMode(cg, kCGTextFill);
77 CGContextSetFont(cg, typefaceToCGFont(paint.getTypeface()));
78 CGContextSetFontSize(cg, SkScalarToFloat(paint.getTextSize()));
80 CGContextSetAllowsFontSubpixelPositioning(cg, paint.isSubpixelText())
144 CGContextRef cg = makeCG(canvas->getDevice()->accessBitmap(false)); local
    [all...]
  /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...]
  /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/webkit/Source/WebCore/platform/graphics/win/
WebLayer.cpp 131 GraphicsContext cg(context);
132 cg.setFillColor(Color::black, ColorSpaceDeviceRGB);
133 cg.drawText(font, TextRun(text), IntPoint(aBounds.origin.x + 5, aBounds.origin.y + 17));
  /external/llvm/include/llvm/Transforms/Utils/
Cloning.h 168 explicit InlineFunctionInfo(CallGraph *cg = 0, const TargetData *td = 0)
169 : CG(cg), TD(td) {}
171 /// CG - If non-null, InlineFunction will update the callgraph to reflect the
173 CallGraph *CG;
181 /// inlined from the callee. This is only filled in if CG is non-null.
  /external/skia/src/ports/
SkImageDecoder_CG.cpp 82 CGContextRef cg = CGBitmapContextCreate(bm->getPixels(), width, height, local
84 CGContextDrawImage(cg, CGRectMake(0, 0, width, height), image);
85 CGContextRelease(cg);
  /external/valgrind/main/
Android.mk 362 cachegrind/cg-arch.c \
363 cachegrind/cg-arm.c \
365 cachegrind/cg-ppc32.c \
366 cachegrind/cg-ppc64.c \
367 cachegrind/cg-s390x.c \
368 cachegrind/cg-x86-amd64.c
408 cachegrind/cg-arch.c \
409 cachegrind/cg-arm.c \
410 cachegrind/cg-ppc32.c \
411 cachegrind/cg-ppc64.c
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Color.java 132 final float cg = (V - g) / vtemp; local
136 H = cb - cg;
140 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);
  /external/mdnsresponder/mDNSCore/
mDNS.c 324 CacheGroup *cg; local
325 for (cg = m->rrcache_hash[slot]; cg; cg=cg->next)
326 if (cg->namehash == namehash && SameDomainName(cg->name, name))
328 return(cg);
2580 const CacheGroup *const cg = CacheGroupForName(m, slot, q->qnamehash, &q->qname); local
2651 CacheGroup *cg; local
2672 CacheGroup *const cg = CacheGroupForName(m, HashSlot(name), namehash, name); local
2680 CacheGroup *const cg = CacheGroupForName(m, HashSlot(&q->qname), q->qnamehash, &q->qname); local
2819 const CacheGroup *const cg = CacheGroupForName(m, slot, q->qnamehash, &q->qname); local
2852 CacheGroup *cg; local
3415 CacheGroup *cg; local
3491 CacheGroup *cg = CacheGroupForName(m, slot, namehash, name); local
3788 CacheGroup *const cg = CacheGroupForName(m, slot, q->qnamehash, &q->qname); local
4137 CacheGroup *cg = (CacheGroup*)GetCacheEntity(m, mDNSNULL); local
5182 CacheGroup *cg; local
5652 CacheGroup *cg = CacheGroupForRecord(m, slot, pktrr); local
5872 CacheGroup *cg = CacheGroupForName(m, slot, pktq.qnamehash, &pktq.qname); local
6411 CacheGroup *cg = CacheGroupForName(m, slot, q->qnamehash, &q->qname); local
6551 CacheGroup *cg = CacheGroupForName(m, slot, q.qnamehash, &q.qname); local
6814 CacheGroup *cg = CacheGroupForRecord(m, slot, &m->rec.r.resrec); local
6947 const CacheGroup *cg = CacheGroupForRecord(m, slot, &r1->resrec); local
7058 CacheGroup *cg = CacheGroupForName(m, slot, q.qnamehash, &q.qname); local
8099 CacheGroup *cg; local
8542 CacheGroup *cg = CacheGroupForName(m, slot, question->qnamehash, &question->qname); local
8705 CacheGroup *const cg = CacheGroupForName(m, slot, question->qnamehash, &question->qname); local
9617 CacheGroup *cg; local
9679 CacheGroup *cg; local
10849 CacheGroup *const cg = CacheGroupForName(m, slot, q->qnamehash, &q->qname); local
10865 CacheGroup *const cg = CacheGroupForName(m, slot, q->qnamehash, &q->qname); local
11030 CacheGroup *cg; local
11446 CacheGroup *cg = m->rrcache_hash[slot]; local
    [all...]
  /external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/
WebKitSystemInterface.h 75 uint32_t wkSetFontSmoothingStyle(CGContextRef cg, bool fontAllowsSmoothing);
76 void wkRestoreFontSmoothingStyle(CGContextRef cg, uint32_t oldStyle);
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 293 unsigned cg, DomTreeNode *n,
295 CurrentGeneration(cg), ChildGeneration(cg), Node(n),
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
BinaryDictInputOutput.java     [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCALayerWinInternal.cpp 130 GraphicsContext cg(context);
131 cg.setFillColor(Color::black, ColorSpaceDeviceRGB);
132 cg.drawText(font, TextRun(text), IntPoint(aBounds.origin.x + 5, aBounds.origin.y + 17));
447 // Flip Y to compensate for the flipping that happens during render to match the CG context coordinate space
  /external/mdnsresponder/mDNSPosix/
Identify.c 363 CacheGroup *cg; local
365 FORALL_CACHERECORDS(slot, cg, rr) mDNS_PurgeCacheResourceRecord(m, rr);
  /external/valgrind/main/coregrind/m_dispatch/
dispatch-s390x-linux.S 184 cg %r2, 0(%r8,%r7) /* next guest address == .guest ? */
  /external/grub/stage2/
fs.h 63 * The beginning of cylinder group cg in fs, is given by
64 * the ``cgbase(fs, cg)'' macro.
108 * thus changes to (struct cg) must keep its size within MINBSIZE.
153 mach_daddr_t fs_dblkno; /* offset of first data after cg */
215 int fs_cgrotor; /* last cg searched */
274 struct cg struct
276 int xxx1; /* struct cg *cg_link; */
280 short cg_ncyl; /* number of cyl's this cg */
281 short cg_niblk; /* number of inode blocks this cg */
282 int cg_ndblk; /* number of data blocks this cg */
    [all...]
  /external/mksh/src/
check.pl 804 local($ce, $cg);
819 $cg = substr($got, $i, 1);
820 last if $ce ne $cg;
829 . &format_char($cg) . "'";
    [all...]
  /external/oprofile/libpp/
format_output.cpp 933 xml_cg_formatter(callgraph_container const & cg, symbol_collection & s,
936 xml_formatter(0, s, cg.extra_found_images, sf),
937 callgraph(cg)

Completed in 8986 milliseconds

1 2