/external/llvm/tools/lto/ |
D | lto.cpp | 137 void lto_codegen_dispose(lto_code_gen_t cg) { in lto_codegen_dispose() argument 138 delete cg; in lto_codegen_dispose() 144 bool lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod) { in lto_codegen_add_module() argument 145 return cg->addModule(mod, sLastErrorString); in lto_codegen_add_module() 151 bool lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model debug) { in lto_codegen_set_debug_model() argument 152 return cg->setDebugInfo(debug, sLastErrorString); in lto_codegen_set_debug_model() 157 bool lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model model) { in lto_codegen_set_pic_model() argument 158 return cg->setCodePICModel(model, sLastErrorString); in lto_codegen_set_pic_model() 162 void lto_codegen_set_cpu(lto_code_gen_t cg, const char *cpu) { in lto_codegen_set_cpu() argument 163 return cg->setCpu(cpu); in lto_codegen_set_cpu() [all …]
|
/external/skia/gm/ |
D | gammatext.cpp | 45 CGContextRef cg = CGBitmapContextCreate(bm.getPixels(), bm.width(), bm.height(), in makeCG() local 49 CGContextSetAllowsFontSubpixelQuantization(cg, false); in makeCG() 50 CGContextSetShouldSubpixelQuantizeFonts(cg, false); in makeCG() 52 return cg; in makeCG() 66 static void cgSetPaintForText(CGContextRef cg, const SkPaint& paint) { in cgSetPaintForText() argument 74 CGContextSetRGBFillColor(cg, rgba[0], rgba[1], rgba[2], rgba[3]); in cgSetPaintForText() 76 CGContextSetTextDrawingMode(cg, kCGTextFill); in cgSetPaintForText() 77 CGContextSetFont(cg, typefaceToCGFont(paint.getTypeface())); in cgSetPaintForText() 78 CGContextSetFontSize(cg, SkScalarToFloat(paint.getTextSize())); in cgSetPaintForText() 80 CGContextSetAllowsFontSubpixelPositioning(cg, paint.isSubpixelText()); in cgSetPaintForText() [all …]
|
/external/llvm/include/llvm-c/ |
D | 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/valgrind/main/cachegrind/ |
D | Makefile.am | 4 docs/cg-manual.xml \ 44 cg-arch.c \ 45 cg-x86-amd64.c \ 46 cg-ppc32.c \ 47 cg-ppc64.c \ 48 cg-arm.c \ 49 cg-s390x.c
|
/external/valgrind/main/callgrind/ |
D | Makefile.am | 49 ../cachegrind/cg-arch.c \ 50 ../cachegrind/cg-x86-amd64.c \ 51 ../cachegrind/cg-ppc32.c \ 52 ../cachegrind/cg-ppc64.c \ 53 ../cachegrind/cg-arm.c \ 54 ../cachegrind/cg-s390x.c
|
/external/oprofile/daemon/ |
D | opd_sfile.c | 301 struct cg_entry * cg; in get_file() local 326 cg = list_entry(pos, struct cg_entry, hash); in get_file() 327 if (sfile_equal(last, &cg->to)) { in get_file() 328 file = &cg->to.files[trans->event]; in get_file() 333 cg = xmalloc(sizeof(struct cg_entry)); in get_file() 334 sfile_dup(&cg->to, last); in get_file() 335 list_add(&cg->hash, &sf->cg_hash[hash]); in get_file() 336 file = &cg->to.files[trans->event]; in get_file() 536 struct cg_entry * cg = in for_one_sfile() local 538 if (free_sf || func(&cg->to, data)) { in for_one_sfile() [all …]
|
D | opd_mangling.c | 69 mangle_filename(struct sfile * last, struct sfile const * sf, int counter, int cg) in mangle_filename() argument 107 if (cg) { in mangle_filename() 142 struct sfile * sf, int counter, int cg) in opd_open_sample_file() argument 150 mangled = mangle_filename(last, sf, counter, cg); in opd_open_sample_file()
|
D | opd_ibs.c | 754 struct cg_entry * cg; in ibs_sfile_get() local 786 cg = list_entry(pos, struct cg_entry, hash); in ibs_sfile_get() 787 if (sfile_equal(last, &cg->to)) { in ibs_sfile_get() 788 file = &(cg->to.ext_files[ibs_vci]); in ibs_sfile_get() 793 cg = xmalloc(sizeof(struct cg_entry)); in ibs_sfile_get() 794 sfile_dup(&cg->to, last); in ibs_sfile_get() 795 list_add(&cg->hash, &sf->cg_hash[hash]); in ibs_sfile_get() 796 file = &(cg->to.ext_files[ibs_vci]); in ibs_sfile_get()
|
D | opd_mangling.h | 31 struct sfile * sf, int counter, int cg);
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
D | WebLayer.cpp | 131 GraphicsContext cg(context); in drawInContext() local 132 cg.setFillColor(Color::black, ColorSpaceDeviceRGB); in drawInContext() 133 cg.drawText(font, TextRun(text), IntPoint(aBounds.origin.x + 5, aBounds.origin.y + 17)); in drawInContext()
|
/external/skia/src/ports/ |
D | SkImageDecoder_CG.cpp | 82 CGContextRef cg = CGBitmapContextCreate(bm->getPixels(), width, height, in onDecode() local 84 CGContextDrawImage(cg, CGRectMake(0, 0, width, height), image); in onDecode() 85 CGContextRelease(cg); in onDecode()
|
/external/llvm/include/llvm/Transforms/Utils/ |
D | Cloning.h | 168 explicit InlineFunctionInfo(CallGraph *cg = 0, const TargetData *td = 0) 169 : CG(cg), TD(td) {} in CG() argument
|
/external/mdnsresponder/mDNSCore/ |
D | mDNS.c | 324 CacheGroup *cg; in CacheGroupForName() local 325 for (cg = m->rrcache_hash[slot]; cg; cg=cg->next) in CacheGroupForName() 326 if (cg->namehash == namehash && SameDomainName(cg->name, name)) in CacheGroupForName() 328 return(cg); in CacheGroupForName() 2580 const CacheGroup *const cg = CacheGroupForName(m, slot, q->qnamehash, &q->qname); in BuildQuestion() local 2584 …for (rr = cg ? cg->members : mDNSNULL; rr; rr=rr->next) // If we have a resource record in our … in BuildQuestion() 2622 …for (rr = cg ? cg->members : mDNSNULL; rr; rr=rr->next) // For every resource record in our cac… in BuildQuestion() 2651 CacheGroup *cg; in ReconfirmAntecedents() local 2654 FORALL_CACHERECORDS(slot, cg, cr) in ReconfirmAntecedents() 2672 CacheGroup *const cg = CacheGroupForName(m, HashSlot(name), namehash, name); in CacheHasAddressTypeForName() local [all …]
|
/external/oprofile/pp/ |
D | opreport.cpp | 448 void output_cg_symbols(callgraph_container const & cg, bool multiple_apps) in output_cg_symbols() argument 450 column_flags output_hints = cg.output_hint(); in output_cg_symbols() 452 symbol_collection symbols = cg.get_symbols(); in output_cg_symbols() 462 xml_out = new format_output::xml_cg_formatter(cg, symbols, in output_cg_symbols() 469 text_out = new format_output::cg_formatter(cg); in output_cg_symbols() 487 cg.extra_found_images); in output_cg_symbols()
|
/external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/ |
D | WebKitSystemInterface.h | 75 uint32_t wkSetFontSmoothingStyle(CGContextRef cg, bool fontAllowsSmoothing); 76 void wkRestoreFontSmoothingStyle(CGContextRef cg, uint32_t oldStyle);
|
/external/llvm/test/Transforms/Inline/ |
D | gvn-inline-iteration.ll | 1 ; RUN: opt -basicaa -inline -gvn %s -S -max-cg-scc-iterations=1 | FileCheck %s
|
D | crash2.ll | 1 ; RUN: opt -inline -scalarrepl -max-cg-scc-iterations=1 %s -disable-output
|
/external/llvm/lib/Transforms/Scalar/ |
D | EarlyCSE.cpp | 293 unsigned cg, DomTreeNode *n, in StackNode() argument 295 CurrentGeneration(cg), ChildGeneration(cg), Node(n), in StackNode()
|
/external/mksh/src/ |
D | check.pl | 804 local($ce, $cg); 819 $cg = substr($got, $i, 1); 820 last if $ce ne $cg; 829 . &format_char($cg) . "'";
|
/external/webkit/Source/WebCore/platform/graphics/ca/win/ |
D | PlatformCALayerWinInternal.cpp | 130 GraphicsContext cg(context); in displayCallback() local 131 cg.setFillColor(Color::black, ColorSpaceDeviceRGB); in displayCallback() 132 cg.drawText(font, TextRun(text), IntPoint(aBounds.origin.x + 5, aBounds.origin.y + 17)); in displayCallback()
|
/external/webkit/Source/cmake/ |
D | WebKitPackaging.cmake | 115 "/cg/" "/Cg/" "cg\\\\." "Cg\\\\."
|
/external/webkit/Source/WebCore/WebCore.gyp/ |
D | WebCore.gyp | 254 # platform/graphics/cg and cocoa need to come before 256 # version of ImageBufferData.h in the cg directory and 261 '../platform/graphics/cg', 268 # platform/graphics/cg may need to stick around, though. 1253 …['exclude', '(android|brew|cairo|ca|cf|cg|curl|efl|freetype|gstreamer|gtk|haiku|linux|mac|opengl|o… 1314 # The Mac build is PLATFORM_CG too. platform/graphics/cg is the 1318 ['include', 'platform/graphics/cg/[^/]*(?<!Win)?\\.(cpp|mm?)$'], 1370 # The Mac does not use ImageSourceCG.cpp from platform/graphics/cg 1372 ['exclude', 'platform/graphics/cg/ImageSourceCG\\.cpp$'], 1373 ['exclude', 'platform/graphics/cg/PDFDocumentImage\\.cpp$'], [all …]
|
/external/llvm/test/CodeGen/CellSPU/ |
D | i64ops.ll | 6 ; RUN: grep cg %t1.s | count 4
|
/external/webkit/Source/WebKit2/win/ |
D | WebKit2Generated.make | 9 xcopy /y /d "..\Shared\API\c\cg\WKImageCG.h" "%ConfigurationBuildDir%\include\WebKit2" 10 xcopy /y /d "..\Shared\API\c\cg\WKGraphicsContextCG.h" "%ConfigurationBuildDir%\include\WebKit2" 40 xcopy /y /d "..\UIProcess\API\C\cg\WKIconDatabaseCG.h" "%ConfigurationBuildDir%\include\WebKit2"
|
/external/mdnsresponder/mDNSPosix/ |
D | Identify.c | 363 CacheGroup *cg; in main() local 365 FORALL_CACHERECORDS(slot, cg, rr) mDNS_PurgeCacheResourceRecord(m, rr); in main()
|