/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | MatchStrings.java | 26 String ipa; field in MatchStrings.Info 30 public Info(String english, String ipa, String fixedIpa) { in Info() argument 32 this.ipa = ipa; in Info() 33 this.fixedIpa = fixedIpa.equals(ipa) ? ipa : fixedIpa; // make == in Info() 37 return "{" + english + "/" + ipa + (fixedIpa == ipa ? "" : "/" + fixedIpa) + "}"; in toString() 53 String ipa = parts.length > 1 ? parts[1] : ""; in MatchStrings() local 54 add(parts[0], ipa, parts.length > 2 ? parts[2] : ipa); in MatchStrings() 59 void add(String english, String ipa, String fixedIpa) { in add() argument 61 letter_correspondances.put(key, new Info(english, ipa, in add() 72 int interleaveIPA(String english, String ipa, List<Info> output) { in interleaveIPA() argument [all …]
|
D | MakeTransliterator.java | 703 String ipa = fixBadIpa.transliterate(iLine[1].trim()); in getOverrides() local 704 result.put(word, ipa); in getOverrides()
|
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/ |
D | internal_fixBadIpa.txt | 9 ọ > oɪ ;# bogus ipa 10 ạ > ɑɪ ;# bogus ipa 11 ǎ > ɑʊ ;# bogus ipa 12 W > w ; # bogus ipa 13 ü > ʊ ; # bogus ipa
|
D | und-IPA.txt | 8 # For the sounds, see http://webmasterei.com/en/tools/ipa 21 # - http://linguiste.org/phonetics/ipa/chart/keyboard/
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_target.h | 74 FixupEntry(FixupApply apply, int ipa, int reg, int loc) : in FixupEntry() 75 apply(apply), ipa(ipa), reg(reg), loc(loc) {} in FixupEntry() 80 uint32_t ipa:4; // SC mode used to identify colors member 114 bool addInterp(int ipa, int reg, FixupApply apply);
|
D | nv50_ir_emit_gk110.cpp | 2037 code[1] |= (i->ipa & 0x3) << 21; // TODO: INTERP_SAMPLEID in emitInterpMode() 2038 code[1] |= (i->ipa & 0xc) << (19 - 2); in emitInterpMode() 2044 int ipa = entry->ipa; in interpApply() local 2049 (ipa & NV50_IR_INTERP_MODE_MASK) == NV50_IR_INTERP_SC) { in interpApply() 2050 ipa = NV50_IR_INTERP_FLAT; in interpApply() 2053 (ipa & NV50_IR_INTERP_SAMPLE_MASK) == NV50_IR_INTERP_DEFAULT && in interpApply() 2054 (ipa & NV50_IR_INTERP_MODE_MASK) != NV50_IR_INTERP_FLAT) { in interpApply() 2055 ipa |= NV50_IR_INTERP_CENTROID; in interpApply() 2058 code[loc + 1] |= (ipa & 0x3) << 21; in interpApply() 2059 code[loc + 1] |= (ipa & 0xc) << (19 - 2); in interpApply() [all …]
|
D | nv50_ir.h | 882 unsigned ipa : 4; // interpolation mode variable 907 inline void setInterpolate(unsigned int mode) { ipa = mode; } in setInterpolate() 909 unsigned int getInterpMode() const { return ipa & 0x3; } in getInterpMode() 910 unsigned int getSampleMode() const { return ipa & 0xc; } in getSampleMode()
|
D | nv50_ir_emit_nvc0.cpp | 1715 code[0] |= i->ipa << 6; // TODO: INTERP_SAMPLEID in emitInterpMode() 1726 int ipa = entry->ipa; in interpApply() local 1731 (ipa & NV50_IR_INTERP_MODE_MASK) == NV50_IR_INTERP_SC) { in interpApply() 1732 ipa = NV50_IR_INTERP_FLAT; in interpApply() 1735 (ipa & NV50_IR_INTERP_SAMPLE_MASK) == NV50_IR_INTERP_DEFAULT && in interpApply() 1736 (ipa & NV50_IR_INTERP_MODE_MASK) != NV50_IR_INTERP_FLAT) { in interpApply() 1737 ipa |= NV50_IR_INTERP_CENTROID; in interpApply() 1740 code[loc + 0] |= ipa << 6; in interpApply() 1759 addInterp(i->ipa, SDATA(i->src(1)).id, interpApply); in emitINTERP() 1762 addInterp(i->ipa, 0x3f, interpApply); in emitINTERP()
|
D | nv50_ir_target.cpp | 444 CodeEmitter::addInterp(int ipa, int reg, FixupApply apply) in addInterp() argument 460 fixupInfo->entry[n] = FixupEntry(apply, ipa, reg, codeSize >> 2); in addInterp()
|
D | nv50_ir_emit_gm107.cpp | 2435 int ipa = entry->ipa; in interpApply() local 2440 (ipa & NV50_IR_INTERP_MODE_MASK) == NV50_IR_INTERP_SC) { in interpApply() 2441 ipa = NV50_IR_INTERP_FLAT; in interpApply() 2444 (ipa & NV50_IR_INTERP_SAMPLE_MASK) == NV50_IR_INTERP_DEFAULT && in interpApply() 2445 (ipa & NV50_IR_INTERP_MODE_MASK) != NV50_IR_INTERP_FLAT) { in interpApply() 2446 ipa |= NV50_IR_INTERP_CENTROID; in interpApply() 2449 code[loc + 1] |= (ipa & 0x3) << 0x16; in interpApply() 2450 code[loc + 1] |= (ipa & 0xc) << (0x14 - 2); in interpApply() 2493 addInterp(insn->ipa, insn->getSrc(1)->reg.data.id, interpApply); in emitIPA() 2498 addInterp(insn->ipa, 0xff, interpApply); in emitIPA()
|
D | nv50_ir_emit_nv50.cpp | 887 int ipa = entry->ipa; in interpApply() local 891 if ((ipa & NV50_IR_INTERP_SAMPLE_MASK) == NV50_IR_INTERP_DEFAULT && in interpApply() 892 (ipa & NV50_IR_INTERP_MODE_MASK) != NV50_IR_INTERP_FLAT) { in interpApply() 937 addInterp(i->ipa, i->encSize, interpApply); in emitINTERP()
|
D | nv50_ir.cpp | 570 ipa = 0; in init() 757 i->ipa = ipa; in clone()
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/ |
D | available_events | 704 ipa:intr_to_poll 705 ipa:poll_to_intr 706 ipa:idle_sleep_enter 707 ipa:idle_sleep_exit 708 ipa:rmnet_ipa_netifni 709 ipa:rmnet_ipa_netifrx 710 ipa:rmnet_ipa_netif_rcv_skb 711 ipa:intr_to_poll3 712 ipa:poll_to_intr3 713 ipa:idle_sleep_enter3 [all …]
|
/external/clang/docs/analyzer/ |
D | IPA.txt | 5 inlining. The major one is -analyzer-config ipa: 7 -analyzer-config ipa=none - All inlining is disabled. This is the only mode 10 -analyzer-config ipa=basic-inlining - Turns on inlining for C functions, C++ 15 -analyzer-config ipa=inlining - Turns on inlining when we can confidently find 21 -analyzer-config ipa=dynamic - Inline instance methods for which the type is 25 -analyzer-config ipa=dynamic-bifurcate - Same as -analyzer-config ipa=dynamic, 30 Currently, -analyzer-config ipa=dynamic-bifurcate is the default mode. 32 While -analyzer-config ipa determines in general how aggressively the analyzer 55 inlined under -analyzer-config ipa=none or -analyzer-config ipa=basic-inlining, 263 The -analyzer-config ipa option has five different modes: none, basic-inlining, [all …]
|
/external/llvm/tools/llvm-config/ |
D | LibraryDependencies.inc | 54 { "ipa", "libLLVMipa.a", 1, { "analysis", "core", "support" } }, 55 …{ "ipo", "libLLVMipo.a", 1, { "analysis", "core", "ipa", "instcombine", "scalaropts", "support", "… 60 …{ "lto", "libLLVMLTO.a", 1, { "bitreader", "bitwriter", "core", "ipa", "ipo", "instcombine", "link… 79 …{ "scalaropts", "libLLVMScalarOpts.a", 1, { "analysis", "core", "ipa", "instcombine", "support", "… 84 …{ "transformutils", "libLLVMTransformUtils.a", 1, { "analysis", "core", "ipa", "support", "target"…
|
/external/swiftshader/third_party/LLVM/unittests/VMCore/ |
D | Makefile | 12 LINK_COMPONENTS := core support target ipa
|
/external/swiftshader/third_party/LLVM/unittests/Analysis/ |
D | Makefile | 12 LINK_COMPONENTS := core support target analysis ipa
|
/external/clang/test/Analysis/inlining/ |
D | test_objc_inlining_option.m | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-config ipa=dynamic-bifurcate -analyzer…
|
D | ObjCImproperDynamictallyDetectableCast.m | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,debug.ExprInspection -analyzer-config ipa=dynami…
|
D | retain-count-self-init.m | 1 …zer-checker=core,osx.cocoa.RetainCount,osx.cocoa.SelfInit -analyzer-config ipa=dynamic-bifurcate -…
|
D | ObjCDynTypePopagation.m | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,debug.ExprInspection -analyzer-config ipa=dynami…
|
D | RetainCountExamples.m | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,osx.cocoa.RetainCount -analyzer-config ipa=dynam…
|
D | DynDispatchBifurcate.m | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,osx -analyzer-config ipa=dynamic-bifurcate -veri…
|
/external/grpc-grpc/ |
D | .gitignore | 90 *.ipa
|
/external/clang/test/Analysis/ |
D | refcnt_naming.m | 1 …e -analyzer-checker=core,osx.cocoa.RetainCount,alpha.core -analyzer-config ipa=none -analyzer-stor…
|