/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
D | RegisterSpecSet.java | 35 private final RegisterSpec[] specs; field in RegisterSpecSet 49 this.specs = new RegisterSpec[maxSize]; in RegisterSpecSet() 61 RegisterSpec[] otherSpecs = otherSet.specs; in equals() 62 int len = specs.length; in equals() 69 RegisterSpec s1 = specs[i]; in equals() 87 int len = specs.length; in hashCode() 91 RegisterSpec spec = specs[i]; in hashCode() 102 int len = specs.length; in toString() 109 RegisterSpec spec = specs[i]; in toString() 132 return specs.length; in getMaxSize() [all …]
|
D | LocalVariableInfo.java | 79 public void setStarts(int label, RegisterSpecSet specs) { in setStarts() argument 82 if (specs == null) { in setStarts() 87 blockStarts[label] = specs; in setStarts() 108 public boolean mergeStarts(int label, RegisterSpecSet specs) { in mergeStarts() argument 113 setStarts(label, specs); in mergeStarts() 119 newStart.intersect(specs, true); in mergeStarts() 121 newStart = specs.mutableCopy(); in mergeStarts()
|
/external/autotest/server/cros/dynamic_suite/ |
D | host_spec_unittest.py | 94 specs = [host_spec.HostSpec(['l1']), host_spec.HostSpec(['l2'])] 95 hosts_per_spec = {specs[0]: host_list[:1], specs[1]: host_list[1:]} 101 self.assertTrue(specs[1] in group.doomed_specs) 112 specs = [host_spec.HostSpec(['l1']), 115 hosts_per_spec = {specs[0]: host_list[:1], 116 specs[1]: host_list[1:2], 117 specs[2]: host_list[2:]} 155 specs = [host_spec.HostSpec(['l1'], ['l3']), 160 group.add_host_for_spec(specs[0], None) 161 group.add_host_for_spec(specs[1], FakeHost('h1')) [all …]
|
/external/libselinux/utils/ |
D | sefcontext_compile.c | 79 struct spec *specs = data->spec_arr; in write_binary_file() local 142 char *context = specs[i].lr.ctx_raw; in write_binary_file() 143 char *regex_str = specs[i].regex_str; in write_binary_file() 144 mode_t mode = specs[i].mode; in write_binary_file() 145 size_t prefix_len = specs[i].prefix_len; in write_binary_file() 146 int32_t stem_id = specs[i].stem_id; in write_binary_file() 147 pcre *re = specs[i].regex; in write_binary_file() 148 pcre_extra *sd = get_pcre_extra(&specs[i]); in write_binary_file() 186 to_write = specs[i].hasMetaChars; in write_binary_file() 241 struct spec *specs = data->spec_arr; in free_specs() local [all …]
|
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
D | TransliteratorIDParser.java | 151 Specs specs = parseFilterID(id, pos, true); in parseFilterID() local 152 if (specs == null) { in parseFilterID() 158 SingleID single = specsToID(specs, FORWARD); in parseFilterID() 159 single.filter = specs.filter; in parseFilterID() 698 private static SingleID specsToID(Specs specs, int dir) { in specsToID() argument 702 if (specs != null) { in specsToID() 705 if (specs.sawSource) { in specsToID() 706 buf.append(specs.source).append(TARGET_SEP); in specsToID() 708 basicPrefix = specs.source + TARGET_SEP; in specsToID() 710 buf.append(specs.target); in specsToID() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | TransliteratorIDParser.java | 152 Specs specs = parseFilterID(id, pos, true); in parseFilterID() local 153 if (specs == null) { in parseFilterID() 159 SingleID single = specsToID(specs, FORWARD); in parseFilterID() 160 single.filter = specs.filter; in parseFilterID() 699 private static SingleID specsToID(Specs specs, int dir) { in specsToID() argument 703 if (specs != null) { in specsToID() 706 if (specs.sawSource) { in specsToID() 707 buf.append(specs.source).append(TARGET_SEP); in specsToID() 709 basicPrefix = specs.source + TARGET_SEP; in specsToID() 711 buf.append(specs.target); in specsToID() [all …]
|
/external/selinux/libselinux/utils/ |
D | sefcontext_compile.c | 97 struct spec *specs = data->spec_arr; in write_binary_file() local 160 char *context = specs[i].lr.ctx_raw; in write_binary_file() 161 char *regex_str = specs[i].regex_str; in write_binary_file() 162 mode_t mode = specs[i].mode; in write_binary_file() 163 size_t prefix_len = specs[i].prefix_len; in write_binary_file() 164 int32_t stem_id = specs[i].stem_id; in write_binary_file() 165 pcre *re = specs[i].regex; in write_binary_file() 166 pcre_extra *sd = get_pcre_extra(&specs[i]); in write_binary_file() 204 to_write = specs[i].hasMetaChars; in write_binary_file() 259 struct spec *specs = data->spec_arr; in free_specs() local [all …]
|
/external/icu/icu4c/source/i18n/ |
D | tridpars.cpp | 220 Specs* specs = parseFilterID(id, pos, TRUE); in parseFilterID() local 221 if (specs == NULL) { in parseFilterID() 227 SingleID* single = specsToID(specs, FORWARD); in parseFilterID() 229 single->filter = specs->filter; in parseFilterID() 231 delete specs; in parseFilterID() 815 TransliteratorIDParser::specsToID(const Specs* specs, int32_t dir) { in specsToID() argument 819 if (specs != NULL) { in specsToID() 822 if (specs->sawSource) { in specsToID() 823 buf.append(specs->source).append(TARGET_SEP); in specsToID() 825 basicPrefix = specs->source; in specsToID() [all …]
|
/external/emma/ant/ant14/com/vladium/emma/instr/ |
D | FilterCfg.java | 45 final String [] specs = Strings.merge (new String [] {value}, COMMA_DELIMITERS, true); in setValue() local 47 for (int i = 0; i < specs.length; ++ i) in setValue() 49 final String spec = specs [i]; in setValue() 73 final String [] specs = Strings.merge (new String [] {value}, COMMA_DELIMITERS, true); in setIncludes() local 75 for (int i = 0; i < specs.length; ++ i) in setIncludes() 77 final String spec = specs [i]; in setIncludes() 95 final String [] specs = Strings.merge (new String [] {value}, COMMA_DELIMITERS, true); in setExcludes() local 97 for (int i = 0; i < specs.length; ++ i) in setExcludes() 99 final String spec = specs [i]; in setExcludes()
|
/external/emma/core/java12/com/vladium/emma/filter/ |
D | IInclExclFilter.java | 60 final String [] specs = new String [_specs.size ()]; in create() local 61 _specs.toArray (specs); in create() 63 return create (specs); in create() 67 public static IInclExclFilter create (final String [] specs) in create() argument 69 if ((specs == null) || (specs.length == 0)) in create() 75 for (int i = 0, iLimit = specs.length; i < iLimit; ++ i) in create() 77 final String spec = specs [i]; in create()
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
D | LocalVariableInfo.java | 80 public void setStarts(int index, RegisterSpecSet specs) { in setStarts() argument 83 if (specs == null) { in setStarts() 88 blockStarts[index] = specs; in setStarts() 109 public boolean mergeStarts(int index, RegisterSpecSet specs) { in mergeStarts() argument 114 setStarts(index, specs); in mergeStarts() 119 newStart.intersect(specs, true); in mergeStarts()
|
/external/autotest/frontend/client/src/autotest/common/table/ |
D | JSONObjectComparator.java | 12 public JSONObjectComparator(SortSpec[] specs) { in JSONObjectComparator() argument 13 sortSpecs = new SortSpec[specs.length]; in JSONObjectComparator() 14 System.arraycopy(specs, 0, sortSpecs, 0, specs.length); in JSONObjectComparator()
|
/external/selinux/libselinux/src/ |
D | label_db.c | 84 spec_t specs[0]; member 94 spec_t *spec = &catalog->specs[catalog->nspec]; in process_line() 182 spec = &catalog->specs[i]; in db_close() 201 spec = &catalog->specs[i]; in db_lookup() 227 total += catalog->specs[i].matches; in db_stats() 333 spec_t *spec = &catalog->specs[i]; in db_init()
|
D | label_file.c | 756 struct spec **specs; in lookup_best_match() local 766 specs = calloc(n+1, sizeof(struct spec *)); in lookup_best_match() 767 if (!specs) in lookup_best_match() 769 specs[0] = lookup_common(rec, key, type, false); in lookup_best_match() 770 if (specs[0]) { in lookup_best_match() 771 if (!specs[0]->hasMetaChars) { in lookup_best_match() 773 lr = &specs[0]->lr; in lookup_best_match() 777 prefix_len = specs[0]->prefix_len; in lookup_best_match() 780 specs[i] = lookup_common(rec, aliases[i-1], type, false); in lookup_best_match() 781 if (specs[i]) { in lookup_best_match() [all …]
|
D | label_file.h | 119 struct spec *specs; in grow_specs() local 128 specs = realloc(data->spec_arr, total_specs * sizeof(*specs)); in grow_specs() 129 if (!specs) { in grow_specs() 135 memset(&specs[data->nspec], 0, new_specs * sizeof(*specs)); in grow_specs() 137 data->spec_arr = specs; in grow_specs()
|
/external/libselinux/src/ |
D | label_file.c | 719 struct spec **specs; in lookup_best_match() local 729 specs = calloc(n+1, sizeof(struct spec *)); in lookup_best_match() 730 if (!specs) in lookup_best_match() 732 specs[0] = lookup_common(rec, key, type, false); in lookup_best_match() 733 if (specs[0]) { in lookup_best_match() 734 if (!specs[0]->hasMetaChars) { in lookup_best_match() 736 lr = &specs[0]->lr; in lookup_best_match() 740 prefix_len = specs[0]->prefix_len; in lookup_best_match() 743 specs[i] = lookup_common(rec, aliases[i-1], type, false); in lookup_best_match() 744 if (specs[i]) { in lookup_best_match() [all …]
|
D | label_file.h | 122 struct spec *specs; in grow_specs() local 131 specs = realloc(data->spec_arr, total_specs * sizeof(*specs)); in grow_specs() 132 if (!specs) { in grow_specs() 138 memset(&specs[data->nspec], 0, new_specs * sizeof(*specs)); in grow_specs() 140 data->spec_arr = specs; in grow_specs()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
D | BouncyCastleProviderConfiguration.java | 154 DHParameterSpec[] specs = (DHParameterSpec[])params; in getDHDefaultParameters() local 156 for (int i = 0; i != specs.length; i++) in getDHDefaultParameters() 158 if (specs[i].getP().bitLength() == keySize) in getDHDefaultParameters() 160 return specs[i]; in getDHDefaultParameters()
|
/external/deqp/modules/gles2/functional/ |
D | es2fBufferWriteTests.cpp | 224 …ontext& context, const char* name, const char* desc, const DataStoreSpec* specs, int numSpecs, Ver… in RecreateBufferDataStoreCase() argument 226 , m_specs (specs, specs+numSpecs) in RecreateBufferDataStoreCase() 619 std::vector<DataStoreSpec> specs; \ in init() 620 DataStoreSpecVecBuilder builder(specs); \ in init() 622 …addChild(new RecreateBufferDataStoreCase(m_context, #NAME, DESC, &specs[0], (int)specs.size(), VER… in init() 671 vector<DataStoreSpec> specs(numUploadsPerCase); in init() local 673 for (vector<DataStoreSpec>::iterator spec = specs.begin(); spec != specs.end(); spec++) in init() 680 …text, (string("random_") + de::toString(caseNdx+1)).c_str(), "", &specs[0], (int)specs.size(), ver… in init()
|
/external/deqp/modules/gles3/functional/ |
D | es3fBufferWriteTests.cpp | 224 …ontext& context, const char* name, const char* desc, const DataStoreSpec* specs, int numSpecs, Ver… in RecreateBufferDataStoreCase() argument 226 , m_specs (specs, specs+numSpecs) in RecreateBufferDataStoreCase() 611 std::vector<DataStoreSpec> specs; \ in init() 612 DataStoreSpecVecBuilder builder(specs); \ in init() 614 …addChild(new RecreateBufferDataStoreCase(m_context, #NAME, DESC, &specs[0], (int)specs.size(), VER… in init() 671 vector<DataStoreSpec> specs(numUploadsPerCase); in init() local 673 for (vector<DataStoreSpec>::iterator spec = specs.begin(); spec != specs.end(); spec++) in init() 680 …text, (string("random_") + de::toString(caseNdx+1)).c_str(), "", &specs[0], (int)specs.size(), ver… in init()
|
/external/aac/libAACenc/src/ |
D | band_nrg.cpp | 301 FIXP_DBL NrgMid, NrgSide, specm, specs; in FDKaacEnc_CalcBandNrgMSOpt() local 314 specs = specL - specR; in FDKaacEnc_CalcBandNrgMSOpt() 316 NrgSide = fPow2AddDiv2(NrgSide, specs); in FDKaacEnc_CalcBandNrgMSOpt() 323 specs = specL - specR; in FDKaacEnc_CalcBandNrgMSOpt() 325 NrgSide = fPow2AddDiv2(NrgSide, specs); in FDKaacEnc_CalcBandNrgMSOpt()
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
D | OutputFinisher.java | 116 RegisterSpecSet specs = ((LocalSnapshot) insn).getLocals(); in hasLocalInfo() local 117 int size = specs.size(); in hasLocalInfo() 119 if (hasLocalInfo(specs.get(i))) { in hasLocalInfo() 175 RegisterSpecSet specs = ((LocalSnapshot) insn).getLocals(); in addConstants() local 176 int size = specs.size(); in addConstants() 178 addConstants(result, specs.get(i)); in addConstants()
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/ |
D | FirstFitLocalCombiningAllocator.java | 241 for (ArrayList<RegisterSpec> specs : localVariables.values()) { in handleLocalAssociatedOther() 249 int sz = specs.size(); in handleLocalAssociatedOther() 251 RegisterSpec ssaSpec = specs.get(i); in handleLocalAssociatedOther() 260 if (canMapRegs(specs, ropReg)) { in handleLocalAssociatedOther() 261 done = tryMapRegs(specs, ropReg, maxCategory, true); in handleLocalAssociatedOther() 284 ArrayList<RegisterSpec> specs, int ropReg, in tryMapRegs() argument 287 for (RegisterSpec spec : specs) { in tryMapRegs() 576 private boolean canMapRegs(ArrayList<RegisterSpec> specs, int ropReg) { in canMapRegs() argument 577 for (RegisterSpec spec : specs) { in canMapRegs()
|
/external/owasp/sanitizer/lib/htmlparser-1.3/doc/ |
D | README | 4 lynx -display_charset=utf-8 -dump -nolist http://www.whatwg.org/specs/web-apps/current-work/multipa… 9 lynx -display_charset=utf-8 -dump -nolist http://www.whatwg.org/specs/web-apps/current-work/multipa…
|
/external/valgrind/coregrind/ |
D | m_redir.c | 260 Spec* specs; /* specs pulled out of seginfo */ member 325 Spec* specs, 696 newts->specs = specList; in VG_() 725 generate_and_add_actives( ts->specs, ts, in VG_() 780 Spec* specs, in generate_and_add_actives() argument 799 for (sp = specs; sp; sp = sp->next) { in generate_and_add_actives() 827 for (sp = specs; sp; sp = sp->next) { in generate_and_add_actives() 864 for (sp = specs; sp; sp = sp->next) { in generate_and_add_actives() 1127 for (sp = ts->specs; sp; sp = sp_next) { in VG_() 1228 spec->next = topSpecs->specs; in add_hardwired_spec() [all …]
|