/external/llvm/include/llvm/ADT/ |
D | SmallVector.h | 95 void setEnd(T *P) { this->EndX = P; } in setEnd() 113 iterator begin() { return (iterator)this->BeginX; } in begin() 115 const_iterator begin() const { return (const_iterator)this->BeginX; } in begin() 117 iterator end() { return (iterator)this->EndX; } in end() 119 const_iterator end() const { return (const_iterator)this->EndX; } in end() 121 iterator capacity_ptr() { return (iterator)this->CapacityX; } in capacity_ptr() 122 const_iterator capacity_ptr() const { return (const_iterator)this->CapacityX;} in capacity_ptr() 230 if (LLVM_UNLIKELY(this->EndX >= this->CapacityX)) in push_back() 231 this->grow(); in push_back() 232 ::new ((void*) this->end()) T(Elt); in push_back() [all …]
|
D | APSInt.h | 49 return *this; 55 return *this; 102 *this = urem(RHS); 104 *this = srem(RHS); 105 return *this; 110 *this = udiv(RHS); 112 *this = sdiv(RHS); 113 return *this; 128 *this = *this >> Amt; 129 return *this; [all …]
|
/external/curl/tests/data/ |
D | test1060 | 16 # this is returned first since we get no proxy-auth 23 And you should ignore this data. aaaaaaaaaaaaaaaa 24 And you should ignore this data. aaaaaaaaaaaaaaaa 25 And you should ignore this data. aaaaaaaaaaaaaaaa 26 And you should ignore this data. aaaaaaaaaaaaaaaa 27 And you should ignore this data. aaaaaaaaaaaaaaaa 28 And you should ignore this data. aaaaaaaaaaaaaaaa 29 And you should ignore this data. aaaaaaaaaaaaaaaa 30 And you should ignore this data. aaaaaaaaaaaaaaaa 31 And you should ignore this data. aaaaaaaaaaaaaaaa [all …]
|
D | test1061 | 17 # this is returned first since we get no proxy-auth 25 And you should ignore this data. aaaaaaaaaaaaaaaa 26 And you should ignore this data. aaaaaaaaaaaaaaaa 27 And you should ignore this data. aaaaaaaaaaaaaaaa 28 And you should ignore this data. aaaaaaaaaaaaaaaa 29 And you should ignore this data. aaaaaaaaaaaaaaaa 30 And you should ignore this data. aaaaaaaaaaaaaaaa 31 And you should ignore this data. aaaaaaaaaaaaaaaa 32 And you should ignore this data. aaaaaaaaaaaaaaaa 33 And you should ignore this data. aaaaaaaaaaaaaaaa [all …]
|
/external/skia/src/opts/ |
D | Sk4px_none.h | 38 inline void Sk4px::store4(SkPMColor px[4]) const { memcpy(px, this, 16); } in store4() 39 inline void Sk4px::store2(SkPMColor px[2]) const { memcpy(px, this, 8); } in store2() 40 inline void Sk4px::store1(SkPMColor px[1]) const { memcpy(px, this, 4); } in store1() 43 return Sk16h((*this)[ 0], (*this)[ 1], (*this)[ 2], (*this)[ 3], in widenLo() 44 (*this)[ 4], (*this)[ 5], (*this)[ 6], (*this)[ 7], in widenLo() 45 (*this)[ 8], (*this)[ 9], (*this)[10], (*this)[11], in widenLo() 46 (*this)[12], (*this)[13], (*this)[14], (*this)[15]); in widenLo() 49 inline Sk4px::Wide Sk4px::widenHi() const { return this->widenLo() << 8; } in widenHi() 51 inline Sk4px::Wide Sk4px::widenLoHi() const { return this->widenLo() + this->widenHi(); } in widenLoHi() 54 return this->widenLo() * Sk4px(other).widenLo(); in mulWiden() [all …]
|
/external/svox/pico/lib/ |
D | picoctrl.c | 93 static pico_status_t ctrlInitialize(register picodata_ProcessingUnit this, picoos_int32 resetMode) { in ctrlInitialize() argument 98 if (NULL == this || NULL == this->subObj) { in ctrlInitialize() 101 ctrl = (ctrl_subobj_t *) this->subObj; in ctrlInitialize() 116 …picoos_emRaiseException(this->common->em,status,NULL,(picoos_char*)"problem (re-)initializing the … in ctrlInitialize() 133 static picodata_step_result_t ctrlStep(register picodata_ProcessingUnit this, in ctrlStep() argument 140 register ctrl_subobj_t * ctrl = (ctrl_subobj_t *) this->subObj; in ctrlStep() 236 static pico_status_t ctrlTerminate(register picodata_ProcessingUnit this) { in ctrlTerminate() argument 240 if (NULL == this || NULL == this->subObj) { in ctrlTerminate() 243 ctrl = (ctrl_subobj_t *) this->subObj; in ctrlTerminate() 262 static pico_status_t ctrlSubObjDeallocate(register picodata_ProcessingUnit this, in ctrlSubObjDeallocate() argument [all …]
|
D | picorsrc.c | 88 picoos_int16 picoctrl_isValidResourceHandle(picorsrc_Resource this) in picoctrl_isValidResourceHandle() argument 90 return (this != NULL) && CHECK_MAGIC_NUMBER(this); in picoctrl_isValidResourceHandle() 96 picorsrc_Resource this = picoos_allocate(mm, sizeof(*this)); in picorsrc_newResource() local 97 if (NULL != this) { in picorsrc_newResource() 98 SET_MAGIC_NUMBER(this); in picorsrc_newResource() 100 this->name[0] = NULLC; in picorsrc_newResource() 102 this->next = NULL; in picorsrc_newResource() 103 this->type = PICORSRC_TYPE_NULL; in picorsrc_newResource() 104 this->lockCount = 0; in picorsrc_newResource() 105 this->file = NULL; in picorsrc_newResource() [all …]
|
D | picoktab.c | 65 static pico_status_t ktabIdsInitialize(register picoknow_KnowledgeBase this, in ktabIdsInitialize() argument 72 if (NULL == this || NULL == this->subObj) { in ktabIdsInitialize() 76 ids = (picoktab_FixedIds) this->subObj; in ktabIdsInitialize() 84 static pico_status_t ktabIdsSubObjDeallocate(register picoknow_KnowledgeBase this, in ktabIdsSubObjDeallocate() argument 87 if (NULL != this) { in ktabIdsSubObjDeallocate() 88 picoos_deallocate(mm, (void *) &this->subObj); in ktabIdsSubObjDeallocate() 93 pico_status_t picoktab_specializeIdsKnowledgeBase(picoknow_KnowledgeBase this, in picoktab_specializeIdsKnowledgeBase() argument 96 if (NULL == this) { in picoktab_specializeIdsKnowledgeBase() 100 this->subDeallocate = ktabIdsSubObjDeallocate; in picoktab_specializeIdsKnowledgeBase() 101 this->subObj = picoos_allocate(common->mm, sizeof(picoktab_fixed_ids_t)); in picoktab_specializeIdsKnowledgeBase() [all …]
|
D | picokpdf.c | 92 static pico_status_t kpdfDURInitialize(register picoknow_KnowledgeBase this, in kpdfDURInitialize() argument 97 if (NULL == this || NULL == this->subObj) { in kpdfDURInitialize() 101 pdfdur = (picokpdf_pdfdur_t *)this->subObj; in kpdfDURInitialize() 105 pdfdur->numframes = ((picoos_uint16)(this->base[pos+1])) << 8 | in kpdfDURInitialize() 106 this->base[pos]; in kpdfDURInitialize() 108 pdfdur->vecsize = this->base[pos++]; in kpdfDURInitialize() 109 pdfdur->sampperframe = this->base[pos++]; in kpdfDURInitialize() 110 pdfdur->phonquantlen = this->base[pos++]; in kpdfDURInitialize() 111 pdfdur->phonquant = &(this->base[pos]); in kpdfDURInitialize() 113 pdfdur->statequantlen = this->base[pos++]; in kpdfDURInitialize() [all …]
|
D | picoktab.h | 64 pico_status_t picoktab_specializeIdsKnowledgeBase(picoknow_KnowledgeBase this, 67 picoktab_FixedIds picoktab_getFixedIds(picoknow_KnowledgeBase this); 77 pico_status_t picoktab_specializeGraphsKnowledgeBase(picoknow_KnowledgeBase this, 81 picoktab_Graphs picoktab_getGraphs(picoknow_KnowledgeBase this); 86 picoos_uint32 picoktab_graphOffset(const picoktab_Graphs this, 92 picoos_uint8 picoktab_hasVowellikeProp(const picoktab_Graphs this, 98 picoos_bool picoktab_getIntPropTokenType(const picoktab_Graphs this, 101 picoos_bool picoktab_getIntPropTokenSubType(const picoktab_Graphs this, 104 picoos_bool picoktab_getIntPropValue(const picoktab_Graphs this, 107 picoos_bool picoktab_getStrPropLowercase(const picoktab_Graphs this, [all …]
|
D | picodata.c | 51 typedef pico_status_t (* picodata_cbPutItemMethod) (register picodata_CharBuffer this, 55 typedef pico_status_t (* picodata_cbGetItemMethod) (register picodata_CharBuffer this, 59 typedef pico_status_t (* picodata_cbSubResetMethod) (register picodata_CharBuffer this); 60 typedef pico_status_t (* picodata_cbSubDeallocateMethod) (register picodata_CharBuffer this, picoos… 81 static pico_status_t data_cbPutItem(register picodata_CharBuffer this, 85 static pico_status_t data_cbGetItem(register picodata_CharBuffer this, 89 pico_status_t picodata_cbReset(register picodata_CharBuffer this) in picodata_cbReset() argument 91 this->rear = 0; in picodata_cbReset() 92 this->front = 0; in picodata_cbReset() 93 this->len = 0; in picodata_cbReset() [all …]
|
D | picoknow.c | 46 picoknow_KnowledgeBase this; in picoknow_newKnowledgeBase() local 49 this = picoos_allocate(mm,sizeof(*this)); in picoknow_newKnowledgeBase() 50 if (NULL != this) { in picoknow_newKnowledgeBase() 51 …BG_TRACE(("allocated KnowledgeBase at address %i with size %i",(picoos_uint32)this,sizeof(*this))); in picoknow_newKnowledgeBase() 53 this->next = NULL; in picoknow_newKnowledgeBase() 54 this->id = PICOKNOW_KBID_NULL; in picoknow_newKnowledgeBase() 55 this->base = NULL; in picoknow_newKnowledgeBase() 56 this->size = 0; in picoknow_newKnowledgeBase() 57 this->subObj = NULL; in picoknow_newKnowledgeBase() 58 this->subDeallocate = NULL; in picoknow_newKnowledgeBase() [all …]
|
D | picoklex.c | 148 static pico_status_t klexInitialize(register picoknow_KnowledgeBase this, in klexInitialize() argument 158 if (NULL == this || NULL == this->subObj) { in klexInitialize() 162 klex = (klex_subobj_t *) this->subObj; in klexInitialize() 164 if (PICO_OK == picoos_read_mem_pi_uint16(this->base, &curpos, in klexInitialize() 168 klex->searchind = this->base + curpos; in klexInitialize() 172 klex->lexblocks = this->base + PICOKLEX_LEX_NRBLOCKS_SIZE + in klexInitialize() 182 static pico_status_t klexSubObjDeallocate(register picoknow_KnowledgeBase this, in klexSubObjDeallocate() argument 185 if (NULL != this) { in klexSubObjDeallocate() 186 picoos_deallocate(mm, (void *) &this->subObj); in klexSubObjDeallocate() 196 pico_status_t picoklex_specializeLexKnowledgeBase(picoknow_KnowledgeBase this, in picoklex_specializeLexKnowledgeBase() argument [all …]
|
D | picokdbg.c | 73 static pico_status_t kdbgInitialize(register picoknow_KnowledgeBase this, in kdbgInitialize() argument 79 if (NULL == this || NULL == this->subObj) { in kdbgInitialize() 83 kdbg = (kdbg_subobj_t *)this->subObj; in kdbgInitialize() 84 kdbg->phonesyms = this->base; in kdbgInitialize() 89 static pico_status_t kdbgSubObjDeallocate(register picoknow_KnowledgeBase this, in kdbgSubObjDeallocate() argument 91 if (NULL != this) { in kdbgSubObjDeallocate() 92 picoos_deallocate(mm, (void *) &this->subObj); in kdbgSubObjDeallocate() 98 pico_status_t picokdbg_specializeDbgKnowledgeBase(picoknow_KnowledgeBase this, in picokdbg_specializeDbgKnowledgeBase() argument 100 if (NULL == this) { in picokdbg_specializeDbgKnowledgeBase() 104 this->subDeallocate = kdbgSubObjDeallocate; in picokdbg_specializeDbgKnowledgeBase() [all …]
|
D | picowa.c | 81 static pico_status_t waInitialize(register picodata_ProcessingUnit this, picoos_int32 resetMode) { in waInitialize() argument 90 if (NULL == this || NULL == this->subObj) { in waInitialize() 91 return (picodata_step_result_t) picoos_emRaiseException(this->common->em, in waInitialize() 94 wa = (wa_subobj_t *) this->subObj; in waInitialize() 106 wa->lex = picoklex_getLex(this->voice->kbArray[PICOKNOW_KBID_LEX_MAIN]); in waInitialize() 108 return picoos_emRaiseException(this->common->em, PICO_EXC_KB_MISSING, in waInitialize() 116 ulex = picoklex_getLex(this->voice->kbArray[ulexKbIds[i]]); in waInitialize() 125 picoktab_getPos(this->voice->kbArray[PICOKNOW_KBID_TAB_POS]); in waInitialize() 127 return picoos_emRaiseException(this->common->em, PICO_EXC_KB_MISSING, in waInitialize() 133 wa->dtposp = picokdt_getDtPosP(this->voice->kbArray[PICOKNOW_KBID_DT_POSP]); in waInitialize() [all …]
|
/external/pdfium/testing/resources/javascript/ |
D | document_props_expected.txt | 2 Alert: this.ADBE is undefined undefined 3 Alert: this.author is string Joe Random Author 4 Alert: this.baseURL is string 5 Alert: this.bookmarkRoot is undefined undefined 6 Alert: this.calculate is boolean true 7 Alert: this.Collab is undefined undefined 8 Alert: this.creationDate is string 9 Alert: this.creator is string Joe Random Creator 10 Alert: this.delay is boolean false 11 Alert: this.dirty is boolean false [all …]
|
D | document_methods_expected.txt | 2 Alert: PASS: typeof this.addAnnot = function 3 Alert: PASS: this.addAnnot() = undefined 4 Alert: PASS: this.addAnnot(1, 2, "clams", [1, 2, 3]) = undefined 5 Alert: PASS: typeof this.addField = function 6 Alert: PASS: this.addField() = undefined 7 Alert: PASS: this.addField(1, 2, "clams", [1, 2, 3]) = undefined 8 Alert: PASS: typeof this.addLink = function 9 Alert: PASS: this.addLink() = undefined 10 Alert: PASS: this.addLink(1, 2, "clams", [1, 2, 3]) = undefined 11 Alert: PASS: typeof this.closeDoc = function [all …]
|
D | document_methods.in | 116 expect('typeof this.addIcon', 'function'); 119 expectError('this.addIcon()'); 120 expectError('this.addIcon(1)'); 121 expectError('this.addIcon(1, 2, 3)'); 124 expectError('this.addIcon("myicon", 3)'); 125 expectError('this.addIcon("myicon", undefined)'); 132 expect('typeof this.calculateNow', 'function'); 140 expect('typeof this.getField', 'function'); 143 expectError('this.getField()'); 150 expect('typeof this.getIcon', 'function'); [all …]
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
D | simd_mat4.inl | 26 assert(i < this->length()); 28 return this->Data[i]; 36 assert(i < this->length()); 38 return this->Data[i]; 47 this->Data[0] = fvec4SIMD(1.0f, 0, 0, 0); 48 this->Data[1] = fvec4SIMD(0, 1.0f, 0, 0); 49 this->Data[2] = fvec4SIMD(0, 0, 1.0f, 0); 50 this->Data[3] = fvec4SIMD(0, 0, 0, 1.0f); 56 this->Data[0] = fvec4SIMD(s, 0, 0, 0); 57 this->Data[1] = fvec4SIMD(0, s, 0, 0); [all …]
|
/external/clang/include/clang/AST/ |
D | ASTVector.h | 38 void setEnd(T *P) { this->End = P; } in setEnd() 67 return *this; 158 if (End < this->capacity_ptr()) { in push_back() 169 if (unsigned(this->capacity_ptr()-Begin) < N) in reserve() 175 size_t capacity() const { return this->capacity_ptr() - Begin; } in capacity() 187 if (NumInputs > size_type(this->capacity_ptr()-this->end())) in append() 188 this->grow(C, this->size()+NumInputs); in append() 193 std::uninitialized_copy(in_start, in_end, this->end()); in append() 194 this->setEnd(this->end() + NumInputs); in append() 201 if (NumInputs > size_type(this->capacity_ptr()-this->end())) in append() [all …]
|
/external/v8/test/webkit/ |
D | dfg-convert-this-dom-window-expected.txt | 8 # notice, this list of conditions and the following disclaimer. 10 # notice, this list of conditions and the following disclaimer in the 24 …n.prototype.call in the DFG, but more precisely, that we give the correct this object in case it i… 30 PASS myFunction('arg1') is [this, "myFunction", "arg1"] 32 PASS myFunction.call() is [this, "myFunction", undefined] 33 PASS myFunction.call(null) is [this, "myFunction", undefined] 34 PASS myFunction.call(undefined) is [this, "myFunction", undefined] 36 PASS myFunction.aliasedCall() is [this, "myFunction", undefined] 37 PASS myFunction.aliasedCall(null) is [this, "myFunction", undefined] 38 PASS myFunction.aliasedCall(undefined) is [this, "myFunction", undefined] [all …]
|
/external/llvm/include/llvm/Support/ |
D | TimeValue.h | 101 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); } in seconds_() 112 this->normalize(); in TimeValue() 128 this->seconds_ += that.seconds_ ; 129 this->nanos_ += that.nanos_ ; 130 this->normalize(); 131 return *this; 138 this->seconds_ -= that.seconds_ ; 139 this->nanos_ -= that.nanos_ ; 140 this->normalize(); 141 return *this; [all …]
|
/external/vulkan-validation-layers/libs/glm/detail/ |
D | type_mat4x2.inl | 6 /// of this software and associated documentation files (the "Software"), to deal 12 /// The above copyright notice and this permission notice shall be included in 48 assert(i < this->length()); 49 return this->value[i]; 59 assert(i < this->length()); 60 return this->value[i]; 71 this->value[0] = col_type(One, Zero); 72 this->value[1] = col_type(Zero, One); 73 this->value[2] = col_type(Zero, Zero); 74 this->value[3] = col_type(Zero, Zero); [all …]
|
/external/llvm/test/Transforms/DeadArgElim/ |
D | returned.ll | 8 define internal %Ty* @test1(%Ty* %this) { 9 ret %Ty* %this 15 define internal %Ty* @test2(%Ty* returned %this) { 16 ret %Ty* %this 19 ; dummy to keep 'this' alive 23 ; CHECK-LABEL: define internal void @test3(%Ty* %this) 25 define internal %Ty* @test3(%Ty* %this) { 26 store volatile %Ty* %this, %Ty** @dummy 27 ret %Ty* %this 31 ; CHECK-LABEL: define internal %Ty* @test4(%Ty* returned %this) [all …]
|
/external/webrtc/webrtc/modules/audio_processing/beamformer/ |
D | complex_matrix.h | 38 complex<T>* const data = this->data(); in PointwiseConjugate() 39 size_t size = this->num_rows() * this->num_columns(); in PointwiseConjugate() 44 return *this; in PointwiseConjugate() 48 this->CopyFrom(operand); in PointwiseConjugate() 53 this->CopyDataToScratch(); in ConjugateTranspose() 54 size_t num_rows = this->num_rows(); in ConjugateTranspose() 55 this->SetNumRows(this->num_columns()); in ConjugateTranspose() 56 this->SetNumColumns(num_rows); in ConjugateTranspose() 57 this->Resize(); in ConjugateTranspose() 58 return ConjugateTranspose(this->scratch_elements()); in ConjugateTranspose() [all …]
|