/external/webp/src/enc/ |
D | iterator.c | 22 static void InitLeft(VP8EncIterator* const it) { in InitLeft() argument 23 it->y_left_[-1] = it->u_left_[-1] = it->v_left_[-1] = in InitLeft() 24 (it->y_ > 0) ? 129 : 127; in InitLeft() 25 memset(it->y_left_, 129, 16); in InitLeft() 26 memset(it->u_left_, 129, 8); in InitLeft() 27 memset(it->v_left_, 129, 8); in InitLeft() 28 it->left_nz_[8] = 0; in InitLeft() 31 static void InitTop(VP8EncIterator* const it) { in InitTop() argument 32 const VP8Encoder* const enc = it->enc_; in InitTop() 38 void VP8IteratorSetRow(VP8EncIterator* const it, int y) { in VP8IteratorSetRow() argument [all …]
|
D | frame.c | 299 static void CodeResiduals(VP8BitWriter* const bw, VP8EncIterator* const it, in CodeResiduals() argument 304 const int i16 = (it->mb_->type_ == 1); in CodeResiduals() 305 const int segment = it->mb_->segment_; in CodeResiduals() 306 VP8Encoder* const enc = it->enc_; in CodeResiduals() 308 VP8IteratorNzToBytes(it); in CodeResiduals() 314 it->top_nz_[8] = it->left_nz_[8] = in CodeResiduals() 315 PutCoeffs(bw, it->top_nz_[8] + it->left_nz_[8], &res); in CodeResiduals() 324 const int ctx = it->top_nz_[x] + it->left_nz_[y]; in CodeResiduals() 326 it->top_nz_[x] = it->left_nz_[y] = PutCoeffs(bw, ctx, &res); in CodeResiduals() 336 const int ctx = it->top_nz_[4 + ch + x] + it->left_nz_[4 + ch + y]; in CodeResiduals() [all …]
|
/external/icu/icu4c/source/data/zone/ |
D | lb.txt | 271 ld{"Iresch Summerzäit"} 280 ld{"Britesch Summerzäit"} 346 ld{"Acre-Summerzäit"} 347 lg{"Acre-Zäit"} 348 ls{"Acre-Normalzäit"} 351 ls{"Afghanistan-Zäit"} 354 ls{"Zentralafrikanesch Zäit"} 357 ls{"Ostafrikanesch Zäit"} 360 ls{"Südafrikanesch Zäit"} 363 ld{"Westafrikanesch Summerzäit"} [all …]
|
/external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/spec/gl-matrix/ |
D | vec2-spec.js | 30 …it("should return a 2 element array initialized to 0s", function() { expect(result).toBeEqualish([… 35 …it("should return a 2 element array initialized to the values in vecA", function() { expect(result… 40 …it("should return a 2 element array initialized to the values passed", function() { expect(result)… 45 it("should place values into out", function() { expect(out).toBeEqualish([1, 2]); }); 46 it("should return out", function() { expect(result).toBe(out); }); 51 it("should place values into out", function() { expect(out).toBeEqualish([1, 2]); }); 52 it("should return out", function() { expect(result).toBe(out); }); 59 it("should place values into out", function() { expect(out).toBeEqualish([4, 6]); }); 60 it("should return out", function() { expect(result).toBe(out); }); 61 it("should not modify vecA", function() { expect(vecA).toBeEqualish([1, 2]); }); [all …]
|
D | vec4-spec.js | 31 …it("should return a 4 element array initialized to 0s", function() { expect(result).toBeEqualish([… 36 …it("should return a 4 element array initialized to the values in vecA", function() { expect(result… 41 …it("should return a 4 element array initialized to the values passed", function() { expect(result)… 46 it("should place values into out", function() { expect(out).toBeEqualish([1, 2, 3, 4]); }); 47 it("should return out", function() { expect(result).toBe(out); }); 52 it("should place values into out", function() { expect(out).toBeEqualish([1, 2, 3, 4]); }); 53 it("should return out", function() { expect(result).toBe(out); }); 60 … it("should place values into out", function() { expect(out).toBeEqualish([6, 8, 10, 12]); }); 61 it("should return out", function() { expect(result).toBe(out); }); 62 it("should not modify vecA", function() { expect(vecA).toBeEqualish([1, 2, 3, 4]); }); [all …]
|
D | vec3-spec.js | 33 … it("should return the rotated vector", function(){ expect(result).toBeEqualish([0, -1, 0]); }); 37 … it("should return the rotated vector", function(){ expect(result).toBeEqualish([2, 3, 0]); }); 44 … it("should return the rotated vector", function(){ expect(result).toBeEqualish([-1, 0, 0]); }); 48 … it("should return the rotated vector", function(){ expect(result).toBeEqualish([-6, 3, 10]); }); 55 … it("should return the rotated vector", function(){ expect(result).toBeEqualish([0, -1, 0]); }); 59 … it("should return the rotated vector", function(){ expect(result).toBeEqualish([0, -6, -5]); }); 70 it("should produce the input", function() { 74 it("should return out", function() { expect(result).toBe(out); }); 82 it("should rotate and translate the input", function() { 86 it("should return out", function() { expect(result).toBe(out); }); [all …]
|
D | quat-spec.js | 45 it("should return out", function() { expect(result).toBe(out); }); 46 it("should calculate proper quat", function() { 56 it("should return out", function() { expect(result).toBe(out); }); 57 it("should calculate proper quat", function() { 68 it("should calculate proper quat", function() { 78 it("should return out", function() { expect(result).toBe(out); }); 79 it("should calculate proper quat", function() { 90 it("should return out", function() { expect(result).toBe(out); }); 91 it("should transform vec accordingly", function() { 102 it("should return out", function() { expect(result).toBe(out); }); [all …]
|
D | mat4-spec.js | 52 …it("should return a 16 element array initialized to a 4x4 identity matrix", function() { expect(re… 57 …it("should return a 16 element array initialized to the values in matA", function() { expect(resul… 62 it("should place values into out", function() { expect(out).toBeEqualish(matA); }); 63 it("should return out", function() { expect(result).toBe(out); }); 68 it("should place values into out", function() { expect(result).toBeEqualish(identity); }); 69 it("should return out", function() { expect(result).toBe(out); }); 76 it("should place values into out", function() { 84 it("should return out", function() { expect(result).toBe(out); }); 85 it("should not modify matA", function() { 98 it("should place values into matA", function() { [all …]
|
D | mat3-spec.js | 55 it("should return out", function() { expect(result).toBe(out); }); 65 it("should give rotated matrix", function() { 78 it("should give rotated matrix", function() { 95 it("should return out", function() { expect(result).toBe(out); }); 97 it("should rotate a vector the same as the original quat", function() { 101 it("should rotate a vector by PI/2 radians", function() { 113 it("should return out", function() { expect(result).toBe(out); }); 115 it("should calculate proper mat3", function() { 124 it("should return out", function() { expect(result).toBe(out); }); 125 it('should place proper values in out', function() { [all …]
|
D | mat2-spec.js | 42 …it("should return a 4 element array initialized to a 2x2 identity matrix", function() { expect(res… 47 …it("should return a 4 element array initialized to the values in matA", function() { expect(result… 52 it("should place values into out", function() { expect(out).toBeEqualish(matA); }); 53 it("should return out", function() { expect(result).toBe(out); }); 58 it("should place values into out", function() { expect(result).toBeEqualish(identity); }); 59 it("should return out", function() { expect(result).toBe(out); }); 66 … it("should place values into out", function() { expect(out).toBeEqualish([1, 3, 2, 4]); }); 67 it("should return out", function() { expect(result).toBe(out); }); 68 it("should not modify matA", function() { expect(matA).toBeEqualish([1, 2, 3, 4]); }); 74 … it("should place values into matA", function() { expect(matA).toBeEqualish([1, 3, 2, 4]); }); [all …]
|
D | mat2d-spec.js | 54 …it("should return a 6 element array initialized to a 2x3 identity matrix", function() { expect(res… 59 …it("should return a 6 element array initialized to the values in matA", function() { expect(result… 64 it("should place values into out", function() { expect(out).toBeEqualish(matA); }); 65 it("should return out", function() { expect(result).toBe(out); }); 70 it("should place values into out", function() { expect(result).toBeEqualish(identity); }); 71 it("should return out", function() { expect(result).toBe(out); }); 78 …it("should place values into out", function() { expect(out).toBeEqualish([ -2, 1, 1.5, -0.5, 1, -2… 79 it("should return out", function() { expect(result).toBe(out); }); 80 it("should not modify matA", function() { expect(matA).toBeEqualish(oldA); }); 86 …it("should place values into matA", function() { expect(matA).toBeEqualish([ -2, 1, 1.5, -0.5, 1, … [all …]
|
/external/boringssl/src/crypto/asn1/ |
D | tasn_new.c | 67 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it, 69 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it); 71 static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it); 73 ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it) in ASN1_item_new() argument 76 if (ASN1_item_ex_new(&ret, it) > 0) in ASN1_item_new() 83 int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it) in ASN1_item_ex_new() argument 85 return asn1_item_ex_combine_new(pval, it, 0); in ASN1_item_ex_new() 88 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it, in asn1_item_ex_combine_new() argument 94 const ASN1_AUX *aux = it->funcs; in asn1_item_ex_combine_new() 104 if (it->sname) in asn1_item_ex_combine_new() [all …]
|
D | tasn_fre.c | 63 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine); 67 void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it) in ASN1_item_free() argument 69 asn1_item_combine_free(&val, it, 0); in ASN1_item_free() 72 void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it) in ASN1_item_ex_free() argument 74 asn1_item_combine_free(pval, it, 0); in ASN1_item_ex_free() 77 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine) in asn1_item_combine_free() argument 82 const ASN1_AUX *aux = it->funcs; in asn1_item_combine_free() 87 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval) in asn1_item_combine_free() 94 switch(it->itype) in asn1_item_combine_free() 98 if (it->templates) in asn1_item_combine_free() [all …]
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/it-IT/ |
D | it-IT_cm0_sg.txt | 1 # collection of it-IT cm0 siggen knowledge bases 5 NAME it-IT_cm0_sg_1.0.0.3-0-0 11 FST_SPHO_2 "../pkb/it-IT/it-IT_cm0_kfst_spho2.pkb" 12 DT_DUR "../pkb/it-IT/it-IT_cm0_kdt_dur.pkb" 13 DT_LFZ1 "../pkb/it-IT/it-IT_cm0_kdt_lfz1.pkb" 14 DT_LFZ2 "../pkb/it-IT/it-IT_cm0_kdt_lfz2.pkb" 15 DT_LFZ3 "../pkb/it-IT/it-IT_cm0_kdt_lfz3.pkb" 16 DT_LFZ4 "../pkb/it-IT/it-IT_cm0_kdt_lfz4.pkb" 17 DT_LFZ5 "../pkb/it-IT/it-IT_cm0_kdt_lfz5.pkb" 18 DT_MGC1 "../pkb/it-IT/it-IT_cm0_kdt_mgc1.pkb" [all …]
|
D | it-IT_ta.txt | 1 # collection of it-IT textana knowledge bases 5 NAME it-IT_ta_1.0.0.3-0-0 12 TPP_MAIN "../pkb/it-IT/it-IT_kpr.pkb" 13 TAB_GRAPHS "../pkb/it-IT/it-IT_ktab_graphs.pkb" 14 TAB_PHONES "../pkb/it-IT/it-IT_ktab_phones.pkb" 15 TAB_POS "../pkb/it-IT/it-IT_ktab_pos.pkb" 16 LEX_MAIN "../pkb/it-IT/it-IT_klex.pkb" 17 DT_POSP "../pkb/it-IT/it-IT_kdt_posp.pkb" 18 DT_POSD "../pkb/it-IT/it-IT_kdt_posd.pkb" 19 DT_G2P "../pkb/it-IT/it-IT_kdt_g2p.pkb" [all …]
|
/external/llvm/lib/Option/ |
D | ArgList.cpp | 51 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it) in getLastArgNoClaim() local 52 if ((*it)->getOption().matches(Id)) in getLastArgNoClaim() 53 return *it; in getLastArgNoClaim() 59 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it) in getLastArgNoClaim() local 60 if ((*it)->getOption().matches(Id0) || in getLastArgNoClaim() 61 (*it)->getOption().matches(Id1)) in getLastArgNoClaim() 62 return *it; in getLastArgNoClaim() 69 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it) in getLastArgNoClaim() local 70 if ((*it)->getOption().matches(Id0) || (*it)->getOption().matches(Id1) || in getLastArgNoClaim() 71 (*it)->getOption().matches(Id2)) in getLastArgNoClaim() [all …]
|
/external/llvm/lib/Support/ |
D | DAGDeltaAlgorithm.cpp | 128 for (changeset_ty::const_iterator it = S.begin(), in ExecuteOneTest() 129 ie = S.end(); it != ie; ++it) in ExecuteOneTest() 130 for (succ_iterator_ty it2 = succ_begin(*it), in ExecuteOneTest() 131 ie2 = succ_end(*it); it2 != ie2; ++it2) in ExecuteOneTest() 184 for (changeset_ty::const_iterator it = Changes.begin(), in DAGDeltaAlgorithmImpl() local 185 ie = Changes.end(); it != ie; ++it) { in DAGDeltaAlgorithmImpl() 186 Predecessors.insert(std::make_pair(*it, std::vector<change_ty>())); in DAGDeltaAlgorithmImpl() 187 Successors.insert(std::make_pair(*it, std::vector<change_ty>())); in DAGDeltaAlgorithmImpl() 189 for (std::vector<edge_ty>::const_iterator it = Dependencies.begin(), in DAGDeltaAlgorithmImpl() local 190 ie = Dependencies.end(); it != ie; ++it) { in DAGDeltaAlgorithmImpl() [all …]
|
/external/parameter-framework/parameter/ |
D | DomainConfiguration.cpp | 52 AreaConfigurationListIterator it; in ~CDomainConfiguration() local 54 for (it = _areaConfigurationList.begin(); it != _areaConfigurationList.end(); ++it) { in ~CDomainConfiguration() 56 delete *it; in ~CDomainConfiguration() 82 CXmlElement::CChildIterator it(xmlConfigurationSettingsElement); in parseSettings() local 86 while (it.next(xmlConfigurableElementSettingsElement)) { in parseSettings() 119 AreaConfigurationListIterator it; in composeSettings() local 121 …for (it = _orderedAreaConfigurationList.begin(); it != _orderedAreaConfigurationList.end(); ++it) { in composeSettings() 123 const CAreaConfiguration* pAreaConfiguration = *it; in composeSettings() 277 AreaConfigurationListIterator it; in getElementSequence() local 280 …for (it = _orderedAreaConfigurationList.begin(); it != _orderedAreaConfigurationList.end(); ++it) { in getElementSequence() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | CharsetRecog_mbcs.java | 177 abstract boolean nextChar(iteratedChar it, CharsetDetector det); in nextChar() argument 199 boolean nextChar(iteratedChar it, CharsetDetector det) { in nextChar() argument 200 it.index = it.nextIndex; in nextChar() 201 it.error = false; in nextChar() 203 firstByte = it.charValue = it.nextByte(det); in nextChar() 212 int secondByte = it.nextByte(det); in nextChar() 216 it.charValue = (firstByte << 8) | secondByte; in nextChar() 219 it.error = true; in nextChar() 262 boolean nextChar(iteratedChar it, CharsetDetector det) { in nextChar() argument 263 it.index = it.nextIndex; in nextChar() [all …]
|
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/ui/ |
D | FixedTableModelTest.java | 49 Iterator<RectF> it = model.getIterator(tableRect, 5); in testIterator() local 51 assertTrue(it.hasNext()); in testIterator() 52 RectF cellRect = it.next(); in testIterator() 54 assertTrue(it.hasNext()); in testIterator() 55 cellRect = it.next(); in testIterator() 57 assertTrue(it.hasNext()); in testIterator() 58 cellRect = it.next(); in testIterator() 60 assertTrue(it.hasNext()); in testIterator() 61 cellRect = it.next(); in testIterator() 63 assertTrue(it.hasNext()); in testIterator() [all …]
|
/external/llvm/test/MC/ARM/ |
D | v8_IT_manual.s | 5 it ge label 9 it ge label 12 it ge label 15 it ge label 19 it ge label 23 it ge label 27 it ge label 31 it ge label 35 it ge label 39 it ge label [all …]
|
/external/eigen/Eigen/src/SparseCore/ |
D | TriangularSolver.h | 40 for(typename Lhs::InnerIterator it(lhs, i); it; ++it) 42 lastVal = it.value(); 43 lastIndex = it.index(); 73 typename Lhs::InnerIterator it(lhs, i); 74 while(it && it.index()<i) 75 ++it; 78 eigen_assert(it && it.index()==i); 79 l_ii = it.value(); 80 ++it; 82 else if (it && it.index() == i) [all …]
|
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/ |
D | MockRectF.java | 31 public RectF it; field in MockRectF 40 it.left = rhs.left; in $init() 41 it.top = rhs.top; in $init() 42 it.right = rhs.right; in $init() 43 it.bottom = rhs.bottom; in $init() 48 it.left = left; in $init() 49 it.top = top; in $init() 50 it.right = right; in $init() 51 it.bottom = bottom; in $init() 61 it.left = it.left + dx; in offset() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | csrmbcs.cpp | 243 UBool CharsetRecog_sjis::nextChar(IteratedChar* it, InputText* det) const { in nextChar() argument 244 it->index = it->nextIndex; in nextChar() 245 it->error = FALSE; in nextChar() 247 int32_t firstByte = it->charValue = it->nextByte(det); in nextChar() 257 int32_t secondByte = it->nextByte(det); in nextChar() 259 it->charValue = (firstByte << 8) | secondByte; in nextChar() 265 it->error = TRUE; in nextChar() 292 UBool CharsetRecog_euc::nextChar(IteratedChar* it, InputText* det) const { in nextChar() argument 297 it->index = it->nextIndex; in nextChar() 298 it->error = FALSE; in nextChar() [all …]
|
/external/webrtc/src/system_wrappers/source/ |
D | map.cc | 76 std::map<int, MapItem*>::const_iterator it = map_.begin(); in First() local 77 if (it != map_.end()) in First() 79 return it->second; in First() 86 std::map<int, MapItem*>::const_reverse_iterator it = map_.rbegin(); in Last() local 87 if (it != map_.rend()) in Last() 89 return it->second; in Last() 100 std::map<int, MapItem*>::const_iterator it = map_.find(item->item_id_); in Next() local 101 if (it != map_.end()) in Next() 103 it++; in Next() 104 if (it != map_.end()) in Next() [all …]
|