/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | pa.h | 117 return (this->numPrimsComplete < this->numPrims) ? true : false; in HasWork() 130 return this->pfnPaFunc(*this, slot, verts); in Assemble() 136 return this->pfnPaSingleFunc(*this, slot, primIndex, verts); in AssembleSingle() 141 this->pfnPaFunc = this->pfnPaNextFunc; in NextPrim() 142 this->numSimdPrims = this->nextNumSimdPrims; in NextPrim() 143 this->numPrimsComplete += this->nextNumPrimsIncrement; in NextPrim() 144 this->reset = this->nextReset; in NextPrim() 146 if (this->isStreaming) in NextPrim() 148 this->reset = false; in NextPrim() 153 if (this->numSimdPrims > 0) in NextPrim() [all …]
|
/external/flatbuffers/php/ |
D | FlatbufferBuilder.php | 94 $this->space = $initial_size; 95 $this->bb = $this->newByteBuffer($initial_size); 117 return $this->bb->capacity() - $this->space; 128 $this->bb->putByte(--$this->space, "\0"); 141 if ($size > $this->minalign) { 142 $this->minalign = $size; 145 … $align_size = ((~($this->bb->capacity() - $this->space + $additional_bytes)) + 1) & ($size - 1); 146 while ($this->space < $align_size + $size + $additional_bytes) { 147 $old_buf_size = $this->bb->capacity(); 148 $this->bb = $this->growByteBuffer($this->bb); [all …]
|
D | ByteBuffer.php | 50 $this->_buffer = str_repeat("\0", $size); 58 return strlen($this->_buffer); 66 return $this->_pos; 74 $this->_pos = $pos; 82 $this->_pos = 0; 90 return strlen($this->_buffer); 98 return substr($this->_buffer, $this->_pos); 124 $this->_buffer[$offset + $i] = chr($data >> $i * 8); 128 $this->_buffer[$offset + $count - 1 - $i] = chr($data >> $i * 8); 142 $this->assertOffsetAndLength($offset, $count); [all …]
|
/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() 209 if (LLVM_UNLIKELY(this->EndX >= this->CapacityX)) in push_back() 210 this->grow(); in push_back() 211 ::new ((void*) this->end()) T(Elt); in push_back() [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | SmallVector.h | 96 void setEnd(T *P) { this->EndX = P; } in setEnd() 115 iterator begin() { return (iterator)this->BeginX; } in begin() 117 const_iterator begin() const { return (const_iterator)this->BeginX; } in begin() 119 iterator end() { return (iterator)this->EndX; } in end() 121 const_iterator end() const { return (const_iterator)this->EndX; } in end() 124 iterator capacity_ptr() { return (iterator)this->CapacityX; } in capacity_ptr() 125 const_iterator capacity_ptr() const { return (const_iterator)this->CapacityX;} in capacity_ptr() 212 if (LLVM_UNLIKELY(this->EndX >= this->CapacityX)) in push_back() 213 this->grow(); in push_back() 214 ::new ((void*) this->end()) T(Elt); in push_back() [all …]
|
/external/curl/tests/data/ |
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 …]
|
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 …]
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | SmallVector.h | 103 void setEnd(T *P) { this->EndX = P; } in setEnd() 122 iterator begin() { return (iterator)this->BeginX; } in begin() 123 const_iterator begin() const { return (const_iterator)this->BeginX; } in begin() 124 iterator end() { return (iterator)this->EndX; } in end() 125 const_iterator end() const { return (const_iterator)this->EndX; } in end() 127 iterator capacity_ptr() { return (iterator)this->CapacityX; } in capacity_ptr() 128 const_iterator capacity_ptr() const { return (const_iterator)this->CapacityX;} in capacity_ptr() 202 size_t CurCapacity = this->capacity(); in grow() 203 size_t CurSize = this->size(); in grow() 210 this->uninitialized_copy(this->begin(), this->end(), NewElts); in grow() [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/skqp/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/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.getAnnot', 'function'); 143 expectError('this.getAnnot()'); 144 expectError('this.getAnnot(0)'); [all …]
|
/external/skqp/src/utils/ |
D | SkJSONWriter.h | 60 this->flush(); in ~SkJSONWriter() 85 SkASSERT(Scope::kObject == this->scope()); in appendName() 88 this->write(",", 1); in appendName() 90 this->separator(this->multiline()); in appendName() 91 this->write("\"", 1); in appendName() 92 this->write(name, strlen(name)); in appendName() 93 this->write("\":", 2); in appendName() 106 this->appendName(name); 107 this->beginValue(true); 108 this->write("{", 1); [all …]
|
/external/skia/src/utils/ |
D | SkJSONWriter.h | 60 this->flush(); in ~SkJSONWriter() 85 SkASSERT(Scope::kObject == this->scope()); in appendName() 88 this->write(",", 1); in appendName() 90 this->separator(this->multiline()); in appendName() 91 this->write("\"", 1); in appendName() 92 this->write(name, strlen(name)); in appendName() 93 this->write("\":", 2); in appendName() 106 this->appendName(name); 107 this->beginValue(true); 108 this->write("{", 1); [all …]
|
/external/libnetfilter_conntrack/src/conntrack/ |
D | bsf.c | 74 static void show_filter(struct sock_filter *this, int from, int to, char *str) 81 char *code_str = code2str(this[i].code & 0xFFFF); 86 this[i].code & 0xFFFF, 87 this[i].jt & 0xFF, 88 this[i].jf & 0xFF, 89 this[i].k & 0xFFFFFFFF); 94 this[i].jt & 0xFF, 95 this[i].jf & 0xFF, 96 this[i].k & 0xFFFFFFFF); 102 show_filter(struct sock_filter *this, int from, int to, char *str) {} in show_filter() argument [all …]
|
D | grp_getter.c | 14 struct nfct_attr_grp_ipv4 *this = data; in get_attr_grp_orig_ipv4() local 15 this->src = ct->head.orig.src.v4; in get_attr_grp_orig_ipv4() 16 this->dst = ct->head.orig.dst.v4; in get_attr_grp_orig_ipv4() 21 struct nfct_attr_grp_ipv4 *this = data; in get_attr_grp_repl_ipv4() local 22 this->src = ct->repl.src.v4; in get_attr_grp_repl_ipv4() 23 this->dst = ct->repl.dst.v4; in get_attr_grp_repl_ipv4() 28 struct nfct_attr_grp_ipv6 *this = data; in get_attr_grp_orig_ipv6() local 29 memcpy(this->src, &ct->head.orig.src.v6, sizeof(uint32_t)*4); in get_attr_grp_orig_ipv6() 30 memcpy(this->dst, &ct->head.orig.dst.v6, sizeof(uint32_t)*4); in get_attr_grp_orig_ipv6() 35 struct nfct_attr_grp_ipv6 *this = data; in get_attr_grp_repl_ipv6() local [all …]
|
/external/flatbuffers/tests/MyGame/Example/ |
D | Monster.php | 46 $this->bb_pos = $_i; 47 $this->bb = $_bb; 48 return $this; 54 $o = $this->__offset(4); 55 return $o != 0 ? $obj->init($o + $this->bb_pos, $this->bb) : 0; 63 $o = $this->__offset(6); 64 return $o != 0 ? $this->bb->getShort($o + $this->bb_pos) : 150; 72 $o = $this->__offset(8); 73 return $o != 0 ? $this->bb->getShort($o + $this->bb_pos) : 100; 78 $o = $this->__offset(10); [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/swiftshader/third_party/llvm-subzero/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/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | TimeValue.h | 89 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); } in seconds_() 100 this->normalize(); in TimeValue() 116 this->seconds_ += that.seconds_ ; 117 this->nanos_ += that.nanos_ ; 118 this->normalize(); 119 return *this; 126 this->seconds_ -= that.seconds_ ; 127 this->nanos_ -= that.nanos_ ; 128 this->normalize(); 129 return *this; [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/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_expected_output/ |
D | com_github_javaparser_ast_visitor_GenericVisitorAdapter.txt | 6 Line 82) R result = n.getJavaDoc().accept(this, arg) ==> R 7 Line 82) n.getJavaDoc().accept(this, arg) ==> R 13 Line 91) R result = a.accept(this, arg) ==> R 14 Line 91) a.accept(this, arg) ==> R 20 Line 101) R result = member.accept(this, arg) ==> R 21 Line 101) member.accept(this, arg) ==> R 26 Line 115) R result = n.getJavaDoc().accept(this, arg) ==> R 27 Line 115) n.getJavaDoc().accept(this, arg) ==> R 33 Line 124) R result = a.accept(this, arg) ==> R 34 Line 124) a.accept(this, arg) ==> R [all …]
|