Home
last modified time | relevance | path

Searched refs:rid (Results 1 – 25 of 351) sorted by relevance

12345678910>>...15

/external/clang/test/CodeGenOpenCL/
Dpipe_builtin.cl10 reserve_id_t rid = reserve_read_pipe(p, 2);
12 read_pipe(p, rid, 2, ptr);
14 commit_read_pipe(p, rid);
21 reserve_id_t rid = reserve_write_pipe(p, 2);
23 write_pipe(p, rid, 2, ptr);
25 commit_write_pipe(p, rid);
30 reserve_id_t rid = work_group_reserve_read_pipe(p, 2);
32 work_group_commit_read_pipe(p, rid);
37 reserve_id_t rid = work_group_reserve_write_pipe(p, 2);
39 work_group_commit_write_pipe(p, rid);
[all …]
/external/llvm-project/clang/test/CodeGenOpenCL/
Dpipe_builtin.cl15 reserve_id_t rid = reserve_read_pipe(p, 2);
17 read_pipe(p, rid, 2, ptr);
19 commit_read_pipe(p, rid);
26 reserve_id_t rid = reserve_write_pipe(p, 2);
28 write_pipe(p, rid, 2, ptr);
30 commit_write_pipe(p, rid);
35 reserve_id_t rid = work_group_reserve_read_pipe(p, 2);
37 work_group_commit_read_pipe(p, rid);
42 reserve_id_t rid = work_group_reserve_write_pipe(p, 2);
44 work_group_commit_write_pipe(p, rid);
[all …]
/external/clang/test/SemaOpenCL/
Dinvalid-pipe-builtin-cl2.0.cl5 reserve_id_t rid;
12 read_pipe(p, rid, tmp, ptr);
14 …read_pipe(p, rid, rid, ptr); // expected-error {{invalid argument type to function 'read_pipe' (…
17 …write_pipe(p, rid, tmp, ptr); // expected-error {{invalid pipe access modifier (expecting write…
26 commit_read_pipe(p, rid);
27 …commit_read_pipe(tmp, rid); // expected-error{{first argument to 'commit_read_pipe' must be a p…
34 reserve_id_t rid;
41 write_pipe(p, rid, tmp, ptr);
43 …write_pipe(p, rid, rid, ptr); // expected-error {{invalid argument type to function 'write_pipe'…
46 …read_pipe(p, rid, tmp, ptr); // expected-error {{invalid pipe access modifier (expecting read_o…
[all …]
/external/llvm-project/clang/test/SemaOpenCL/
Dinvalid-pipe-builtin-cl2.0.cl7 reserve_id_t rid;
14 read_pipe(p, rid, tmp, ptr);
16 …read_pipe(p, rid, rid, ptr); // expected-error {{invalid argument type to function 'read_pipe' (…
19 …write_pipe(p, rid, tmp, ptr); // expected-error {{invalid pipe access modifier (expecting write…
28 commit_read_pipe(p, rid);
29 …commit_read_pipe(tmp, rid); // expected-error{{first argument to 'commit_read_pipe' must be a p…
36 reserve_id_t rid;
43 write_pipe(p, rid, tmp, ptr);
45 …write_pipe(p, rid, rid, ptr); // expected-error {{invalid argument type to function 'write_pipe'…
48 …read_pipe(p, rid, tmp, ptr); // expected-error {{invalid pipe access modifier (expecting read_o…
[all …]
/external/webrtc/pc/
Dsimulcast_description.cc19 SimulcastLayer::SimulcastLayer(const std::string& rid, bool is_paused) in SimulcastLayer() argument
20 : rid{rid}, is_paused{is_paused} { in SimulcastLayer()
21 RTC_DCHECK(!rid.empty());
25 return rid == other.rid && is_paused == other.is_paused; in operator ==()
Drtp_sender.cc65 return absl::c_linear_search(rids, encoding.rid); in RemoveEncodingLayers()
80 if (absl::c_linear_search(removed_rids, encoding.rid)) { in RestoreEncodingLayers()
287 init_parameters_.encodings[i].rid = current_parameters.encodings[i].rid; in SetSsrc()
337 for (const std::string& rid : rids) { in DisableEncodingLayers() local
339 [&rid](const RtpEncodingParameters& encoding) { in DisableEncodingLayers()
340 return encoding.rid == rid; in DisableEncodingLayers()
343 "RID: " + rid + " does not refer to a valid layer."); in DisableEncodingLayers()
358 [&encoding](const std::string& rid) { return encoding.rid == rid; }); in DisableEncodingLayers() argument
Dsdp_serializer.cc64 builder << simulcast_layer.rid; in operator <<()
72 for (const SimulcastLayer& rid : layer_alternatives) { in operator <<() local
76 builder << rid; in operator <<()
128 std::string rid = paused ? rid_token.substr(1) : rid_token; in ParseSimulcastLayerList() local
129 layers.push_back(SimulcastLayer(rid, paused)); in ParseSimulcastLayerList()
266 RTC_DCHECK(!rid_description.rid.empty()); in SerializeRidDescription()
271 builder << rid_description.rid << kDelimiterSpace in SerializeRidDescription()
Dpeer_connection_simulcast_unittest.cc58 return os << layer.rid; in operator <<()
70 [](const std::string& rid, bool is_active) { in CreateLayers() argument
71 return SimulcastLayer(rid, !is_active); in CreateLayers()
151 encoding.rid = layer.rid; in CreateTransceiverInit()
190 return SimulcastLayer(encoding.rid, !encoding.active); in ValidateTransceiverParameters()
227 ElementsAre(Field("rid", &RtpEncodingParameters::rid, Eq("")))); in TEST_F()
242 parameters.rid = ""; in TEST_F()
248 Each(Field("rid", &RtpEncodingParameters::rid, Ne("")))); in TEST_F()
259 init.send_encodings[2].rid = ""; in TEST_F()
325 [](const RidDescription& rid) { return rid.rid; }); in TEST_F() argument
[all …]
/external/openssh/
Dmux.c90 u_int rid; member
95 u_int rid; member
101 u_int rid; /* request id */ member
268 mux_master_process_hello(struct ssh *ssh, u_int rid, in mux_master_process_hello() argument
313 reply_ok(struct sshbuf *reply, u_int rid) in reply_ok() argument
318 (r = sshbuf_put_u32(reply, rid)) != 0) in reply_ok()
324 reply_error(struct sshbuf *reply, u_int type, u_int rid, const char *msg) in reply_error() argument
329 (r = sshbuf_put_u32(reply, rid)) != 0 || in reply_error()
335 mux_master_process_new_session(struct ssh *ssh, u_int rid, in mux_master_process_new_session() argument
347 cctx->rid = rid; in mux_master_process_new_session()
[all …]
/external/webrtc/media/base/
Drid_description.cc16 RidDescription::RidDescription(const std::string& rid, RidDirection direction) in RidDescription() argument
17 : rid{rid}, direction{direction} {} in RidDescription()
23 return rid == other.rid && direction == other.direction && in operator ==()
Dmedia_engine.cc49 encodings[i].rid = rids[i].rid; in CreateRtpParametersWithEncodings()
146 return encoding1.rid == encoding2.rid; in CheckRtpParametersInvalidModificationAndValues()
Drid_description.h47 RidDescription(const std::string& rid, RidDirection direction);
60 std::string rid; member
/external/webrtc/sdk/android/api/org/webrtc/
DRtpParameters.java49 @Nullable public String rid; field in RtpParameters.Encoding
84 public Encoding(String rid, boolean active, Double scaleResolutionDownBy) { in Encoding() argument
85 this.rid = rid; in Encoding()
91 Encoding(String rid, boolean active, double bitratePriority, @Priority int networkPriority, in Encoding() argument
94 this.rid = rid; in Encoding()
109 return rid; in getRid()
/external/cldr/tools/java/org/unicode/cldr/util/
DTransliteratorUtilities.java26 String rid; in registerTransliteratorFromFile() local
28 rid = id + "-Any"; in registerTransliteratorFromFile()
31 rid = id.substring(pos + 1) + "-" + id.substring(0, pos); in registerTransliteratorFromFile()
43 t = Transliterator.createFromRules(rid, rules, Transliterator.REVERSE); in registerTransliteratorFromFile()
44 Transliterator.unregister(rid); in registerTransliteratorFromFile()
46 if (DEBUG) System.out.println("Registered new Transliterator: " + id + ", " + rid); in registerTransliteratorFromFile()
/external/webrtc/test/pc/e2e/sdp/
Dsdp_changer.cc125 for (std::string& rid : info.rids) { in FillSimulcastContext()
126 rids.emplace_back(rid, cricket::RidDirection::kSend); in FillSimulcastContext()
128 cricket::SimulcastLayer(rid, false)); in FillSimulcastContext()
259 for (std::string& rid : info.rids) { in PatchVp8Offer()
260 desc->AddContent(rid, info.media_protocol_type, in PatchVp8Offer()
285 for (auto& rid : info.rids) { in PatchVp8Offer() local
286 transport_infos.emplace_back(rid, info.transport_description); in PatchVp8Offer()
408 for (auto& rid : info.rids) { in PatchVp8Answer() local
409 RTC_CHECK(desc->RemoveContentByName(rid)); in PatchVp8Answer()
435 for (auto& rid : info.rids) { in PatchVp8Answer() local
[all …]
/external/python/cpython2/Demo/pdist/
Dclient.py87 exception, value, rid = self._vrecv(id)
88 if rid != id:
89 raise RuntimeError, "request/reply id mismatch: %d/%d" % (id, rid)
115 rid = reply[2]
116 arid = abs(rid)
120 self._replies[rid] = reply
/external/libdrm/amdgpu/
Damdgpu_asic_id.c43 uint32_t rid; in parse_one_line() local
75 rid = strtol(s_rid, &endptr, 16); in parse_one_line()
79 if (rid != dev->info.pci_rev_id) { in parse_one_line()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dinline_pass.cpp240 const uint32_t rid = sb_inst->result_id(); in CloneSameBlockOps() local
245 get_decoration_mgr()->CloneDecorations(rid, nid); in CloneSameBlockOps()
247 (*postCallSB)[rid] = nid; in CloneSameBlockOps()
348 const uint32_t rid = cp_inst->result_id(); in InlineSingleInstruction() local
349 if (rid != 0) { in InlineSingleInstruction()
350 const auto mapItr = callee2caller.find(rid); in InlineSingleInstruction()
356 get_decoration_mgr()->CloneDecorations(rid, nid); in InlineSingleInstruction()
470 const uint32_t rid = cp_inst->result_id(); in MoveCallerInstsAfterFunctionCall() local
471 (*postCallSB)[rid] = rid; in MoveCallerInstsAfterFunctionCall()
580 const uint32_t rid = cpi->result_id(); in GenInlineCode() local
[all …]
/external/deqp-deps/SPIRV-Tools/source/opt/
Dinline_pass.cpp240 const uint32_t rid = sb_inst->result_id(); in CloneSameBlockOps() local
245 get_decoration_mgr()->CloneDecorations(rid, nid); in CloneSameBlockOps()
247 (*postCallSB)[rid] = nid; in CloneSameBlockOps()
348 const uint32_t rid = cp_inst->result_id(); in InlineSingleInstruction() local
349 if (rid != 0) { in InlineSingleInstruction()
350 const auto mapItr = callee2caller.find(rid); in InlineSingleInstruction()
356 get_decoration_mgr()->CloneDecorations(rid, nid); in InlineSingleInstruction()
470 const uint32_t rid = cp_inst->result_id(); in MoveCallerInstsAfterFunctionCall() local
471 (*postCallSB)[rid] = rid; in MoveCallerInstsAfterFunctionCall()
580 const uint32_t rid = cpi->result_id(); in GenInlineCode() local
[all …]
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dinline_pass.cpp240 const uint32_t rid = sb_inst->result_id(); in CloneSameBlockOps() local
245 get_decoration_mgr()->CloneDecorations(rid, nid); in CloneSameBlockOps()
247 (*postCallSB)[rid] = nid; in CloneSameBlockOps()
348 const uint32_t rid = cp_inst->result_id(); in InlineSingleInstruction() local
349 if (rid != 0) { in InlineSingleInstruction()
350 const auto mapItr = callee2caller.find(rid); in InlineSingleInstruction()
356 get_decoration_mgr()->CloneDecorations(rid, nid); in InlineSingleInstruction()
470 const uint32_t rid = cp_inst->result_id(); in MoveCallerInstsAfterFunctionCall() local
471 (*postCallSB)[rid] = rid; in MoveCallerInstsAfterFunctionCall()
580 const uint32_t rid = cpi->result_id(); in GenInlineCode() local
[all …]
/external/rust/crates/quiche/deps/boringssl/src/crypto/x509v3/
Dv3_genn.c137 result = OBJ_cmp(a->d.rid, b->d.rid);
185 a->d.rid = value; in GENERAL_NAME_set0_value()
215 return a->d.rid; in GENERAL_NAME_get0_value()
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl_ocsp.c269 static char * responderid_str(ResponderID *rid) in responderid_str() argument
277 switch (rid->type) { in responderid_str()
279 X509_NAME_print_ex(out, rid->value.byName, 0, XN_FLAG_ONELINE); in responderid_str()
282 i2a_ASN1_STRING(out, rid->value.byKey, V_ASN1_OCTET_STRING); in responderid_str()
460 static X509 * ocsp_find_signer(STACK_OF(X509) *certs, ResponderID *rid) in ocsp_find_signer() argument
465 if (rid->type == 0) { in ocsp_find_signer()
467 return X509_find_by_subject(certs, rid->value.byName); in ocsp_find_signer()
471 if (rid->value.byKey->length != SHA_DIGEST_LENGTH) in ocsp_find_signer()
477 if (os_memcmp(rid->value.byKey->data, hash, in ocsp_find_signer()
/external/wpa_supplicant_8/src/drivers/
Ddriver_hostap.h144 ((size_t) (&((struct prism2_hostapd_param *) 0)->u.rid.data))
179 u16 rid; member
182 } rid; member
/external/boringssl/src/crypto/x509v3/
Dv3_genn.c152 return OBJ_cmp(a->d.rid, b->d.rid); in GENERAL_NAME_cmp()
203 a->d.rid = value; in GENERAL_NAME_set0_value()
235 return a->d.rid; in GENERAL_NAME_get0_value()
/external/webrtc/sdk/objc/api/peerconnection/
DRTCRtpEncodingParameters.mm17 @synthesize rid = _rid;
35 if (!nativeParameters.rid.empty()) {
36 _rid = [NSString stringForStdString:nativeParameters.rid];
70 parameters.rid = [NSString stdStringForString:_rid];

12345678910>>...15