Home
last modified time | relevance | path

Searched refs:this (Results 1 – 25 of 13793) sorted by relevance

12345678910>>...552

/external/grpc-grpc/src/php/tests/unit_tests/
DChannelTest.php28 if (!empty($this->channel)) {
29 $this->channel->close();
35 $this->channel = new Grpc\Channel('localhost:50000',
37 $this->assertSame('Grpc\Channel', get_class($this->channel));
42 $this->channel = new Grpc\Channel('localhost:50001',
44 $state = $this->channel->getConnectivityState();
45 $this->assertEquals(0, $state);
50 $this->channel = new Grpc\Channel('localhost:50002',
52 $state = $this->channel->getConnectivityState(123);
53 $this->assertEquals(0, $state);
[all …]
DEndToEndTest.php23 $this->server = new Grpc\Server([]);
24 $this->port = $this->server->addHttp2Port('0.0.0.0:0');
25 $this->channel = new Grpc\Channel('localhost:'.$this->port, [
28 $this->server->start();
33 $this->channel->close();
34 unset($this->server);
41 $call = new Grpc\Call($this->channel,
50 $this->assertTrue($event->send_metadata);
51 $this->assertTrue($event->send_close);
53 $event = $this->server->requestCall();
[all …]
DServerTest.php24 $this->server = null;
29 unset($this->server);
34 $this->server = new Grpc\Server();
35 $this->assertNotNull($this->server);
40 $this->server = new Grpc\Server([]);
41 $this->assertNotNull($this->server);
47 $this->server = new Grpc\Server(['ip' => '127.0.0.1',
49 $this->assertNotNull($this->server);
54 $this->server = new Grpc\Server();
55 $port = $this->server->addHttp2Port('0.0.0.0:0');
[all …]
DCallCredentials2Test.php30 $this->server = new Grpc\Server();
31 $this->port = $this->server->addSecureHttp2Port('0.0.0.0:0',
33 $this->server->start();
34 $this->host_override = 'foo.test.google.fr';
35 $this->channel = new Grpc\Channel(
36 'localhost:'.$this->port,
39 'grpc.ssl_target_name_override' => $this->host_override,
40 'grpc.default_authority' => $this->host_override,
48 unset($this->channel);
49 unset($this->server);
[all …]
DCallCredentialsTest.php24 $this->credentials = Grpc\ChannelCredentials::createSsl(
26 $this->call_credentials = Grpc\CallCredentials::createFromPlugin(
27 [$this, 'callbackFunc']);
28 $this->credentials = Grpc\ChannelCredentials::createComposite(
29 $this->credentials,
30 $this->call_credentials
36 $this->server = new Grpc\Server();
37 $this->port = $this->server->addSecureHttp2Port('0.0.0.0:0',
39 $this->server->start();
40 $this->host_override = 'foo.test.google.fr';
[all …]
/external/grpc-grpc/src/php/tests/unit_tests/PersistentChannelTests/
DPersistentChannelTest.php46 $this->assertTrue(false);
50 $this->assertTrue($state == GRPC\CHANNEL_CONNECTING ||
64 $this->channel1 = new Grpc\Channel('localhost:1', ['force_new' => true]);
65 $channel1_info = $this->channel1->getChannelInfo();
66 $plist_info = $this->channel1->getPersistentList();
67 $this->assertEquals($channel1_info['target'], 'localhost:1');
68 $this->assertEquals($channel1_info['ref_count'], 1);
69 $this->assertEquals($channel1_info['connectivity_status'],
71 $this->assertEquals(count($plist_info), 0);
72 $this->channel1->close();
[all …]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dpa.h176 return (this->numPrimsComplete < this->numPrims) ? true : false; in HasWork()
201 return this->pfnPaFunc(*this, slot, verts); in Assemble()
207 return this->pfnPaFunc_simd16(*this, slot, verts); in Assemble()
214 return this->pfnPaSingleFunc(*this, slot, primIndex, verts); in AssembleSingle()
219 this->pfnPaFunc = this->pfnPaNextFunc; in NextPrim()
221 this->pfnPaFunc_simd16 = this->pfnPaNextFunc_simd16; in NextPrim()
223 this->numSimdPrims = this->nextNumSimdPrims; in NextPrim()
224 this->numPrimsComplete += this->nextNumPrimsIncrement; in NextPrim()
225 this->reset = this->nextReset; in NextPrim()
227 if (this->isStreaming) in NextPrim()
[all …]
/external/flatbuffers/php/
DFlatbufferBuilder.php94 $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 …]
/external/llvm/include/llvm/ADT/
DSmallVector.h95 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/
DSmallVector.h96 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/
Dtest106117 # 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 …]
Dtest106016 # 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-7.0/llvm/include/llvm/ADT/
DSmallVector.h69 this->Size = Size; in set_size()
89 reinterpret_cast<const char *>(this) + in getFirstEl()
129 iterator begin() { return (iterator)this->BeginX; } in begin()
131 const_iterator begin() const { return (const_iterator)this->BeginX; } in begin()
219 if (LLVM_UNLIKELY(this->size() >= this->capacity())) in push_back()
220 this->grow(); in push_back()
221 ::new ((void*) this->end()) T(Elt); in push_back()
222 this->set_size(this->size() + 1); in push_back()
226 if (LLVM_UNLIKELY(this->size() >= this->capacity())) in push_back()
227 this->grow(); in push_back()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DSmallVector.h103 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/u-boot/drivers/mtd/onenand/
Donenand_base.c152 static int onenand_block_address(struct onenand_chip *this, int block) in onenand_block_address() argument
155 if (block & this->density_mask) in onenand_block_address()
156 return ONENAND_DDP_CHIP1 | (block ^ this->density_mask); in onenand_block_address()
169 static int onenand_bufferram_address(struct onenand_chip *this, int block) in onenand_bufferram_address() argument
172 if (block & this->density_mask) in onenand_bufferram_address()
229 static unsigned int flexonenand_block(struct onenand_chip *this, loff_t addr) in flexonenand_block() argument
233 if (ONENAND_IS_DDP(this) && addr >= this->diesize[0]) { in flexonenand_block()
235 addr -= this->diesize[0]; in flexonenand_block()
238 boundary = this->boundary[die]; in flexonenand_block()
240 blk = addr >> (this->erase_shift - 1); in flexonenand_block()
[all …]
/external/pdfium/testing/resources/javascript/
Ddocument_props_expected.txt2 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 …]
Ddocument_methods_expected.txt2 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 …]
/external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/
DScenarioResultSummary.php127 return $this->qps;
140 $this->qps = $var;
142 return $this;
153 return $this->qps_per_server_core;
166 $this->qps_per_server_core = $var;
168 return $this;
179 return $this->server_system_time;
192 $this->server_system_time = $var;
194 return $this;
205 return $this->server_user_time;
[all …]
DClientConfig.php120 return $this->server_targets;
133 $this->server_targets = $arr;
135 return $this;
144 return $this->client_type;
155 $this->client_type = $var;
157 return $this;
166 return $this->security_params;
177 $this->security_params = $var;
179 return $this;
191 return $this->outstanding_rpcs_per_channel;
[all …]
DRequestParams.php94 return $this->echo_deadline;
105 $this->echo_deadline = $var;
107 return $this;
116 return $this->client_cancel_after_us;
127 $this->client_cancel_after_us = $var;
129 return $this;
138 return $this->server_cancel_after_us;
149 $this->server_cancel_after_us = $var;
151 return $this;
160 return $this->echo_metadata;
[all …]
/external/skia/src/utils/
DSkJSONWriter.h61 this->flush(); in ~SkJSONWriter()
86 SkASSERT(Scope::kObject == this->scope()); in appendName()
89 this->write(",", 1); in appendName()
91 this->separator(this->multiline()); in appendName()
92 this->write("\"", 1); in appendName()
93 this->write(name, strlen(name)); in appendName()
94 this->write("\":", 2); in appendName()
107 this->appendName(name);
108 this->beginValue(true);
109 this->write("{", 1);
[all …]
/external/skqp/src/utils/
DSkJSONWriter.h61 this->flush(); in ~SkJSONWriter()
86 SkASSERT(Scope::kObject == this->scope()); in appendName()
89 this->write(",", 1); in appendName()
91 this->separator(this->multiline()); in appendName()
92 this->write("\"", 1); in appendName()
93 this->write(name, strlen(name)); in appendName()
94 this->write("\":", 2); in appendName()
107 this->appendName(name);
108 this->beginValue(true);
109 this->write("{", 1);
[all …]
/external/grpc-grpc/src/php/tests/qps/
Dhistogram.php33 return (int)(log($value) / log($this->multiplier));
37 $this->resolution = $resolution;
38 $this->max_possible = $max_possible;
39 $this->sum = 0;
40 $this->sum_of_squares = 0;
41 $this->multiplier = 1+$resolution;
42 $this->count = 0;
43 $this->min_seen = $max_possible;
44 $this->max_seen = 0;
45 $this->buckets = array_fill(0, $this->bucket_for($max_possible)+1, 0);
[all …]
/external/skqp/src/opts/
DSk4px_none.h13 return Sk16h((*this)[ 0], (*this)[ 1], (*this)[ 2], (*this)[ 3], in widen()
14 (*this)[ 4], (*this)[ 5], (*this)[ 6], (*this)[ 7], in widen()
15 (*this)[ 8], (*this)[ 9], (*this)[10], (*this)[11], in widen()
16 (*this)[12], (*this)[13], (*this)[14], (*this)[15]); in widen()
20 return this->widen() * Sk4px(other).widen(); in mulWiden()
24 Sk4px::Wide r = (*this + other) >> 8; in addNarrowHi()
33 auto v = *this + Sk16h(128); in div255()
39 return Sk16b((*this)[ 3], (*this)[ 3], (*this)[ 3], (*this)[ 3], in alphas()
40 (*this)[ 7], (*this)[ 7], (*this)[ 7], (*this)[ 7], in alphas()
41 (*this)[11], (*this)[11], (*this)[11], (*this)[11], in alphas()
[all …]
/external/skia/src/opts/
DSk4px_none.h13 return Sk16h((*this)[ 0], (*this)[ 1], (*this)[ 2], (*this)[ 3], in widen()
14 (*this)[ 4], (*this)[ 5], (*this)[ 6], (*this)[ 7], in widen()
15 (*this)[ 8], (*this)[ 9], (*this)[10], (*this)[11], in widen()
16 (*this)[12], (*this)[13], (*this)[14], (*this)[15]); in widen()
20 return this->widen() * Sk4px(other).widen(); in mulWiden()
24 Sk4px::Wide r = (*this + other) >> 8; in addNarrowHi()
33 auto v = *this + Sk16h(128); in div255()
39 return Sk16b((*this)[ 3], (*this)[ 3], (*this)[ 3], (*this)[ 3], in alphas()
40 (*this)[ 7], (*this)[ 7], (*this)[ 7], (*this)[ 7], in alphas()
41 (*this)[11], (*this)[11], (*this)[11], (*this)[11], in alphas()
[all …]

12345678910>>...552