Home
last modified time | relevance | path

Searched refs:qid (Results 1 – 25 of 26) sorted by relevance

12

/third_party/musl/libc-test/src/functional/
Dipc_msg.c31 int qid; in snd() local
42 T(qid = msgget(k, IPC_CREAT|0666)); in snd()
43 T(msgctl(qid, IPC_RMID, 0)); in snd()
44 T(qid = msgget(k, IPC_CREAT|IPC_EXCL|0666)); in snd()
55 T(msgctl(qid, IPC_STAT, &qid_ds)); in snd()
74 T(msgsnd(qid, &msg, sizeof msg.data, IPC_NOWAIT)); in snd()
75 T(msgctl(qid, IPC_STAT, &qid_ds)); in snd()
87 int qid; in rcv() local
95 T(qid = msgget(k, 0)); in rcv()
98 if (msgrcv(qid, &msg, 0, msgtyp, 0) != -1 || errno != E2BIG) in rcv()
[all …]
/third_party/flutter/skia/third_party/externals/wuffs/internal/cgen/
Dexpr.go108 qid := recvTyp.QID()
110 if isBaseRangeType(qid) {
120 g.packagePrefix(qid), qid[1].Str(g.tm))
123 "%s%s__initialize(%s", g.packagePrefix(qid), qid[1].Str(g.tm), addr)
127 b.printf(", sizeof (%s%s), WUFFS_VERSION, 0))", g.packagePrefix(qid), qid[1].Str(g.tm))
225 qid := s.QID()
226 if _, ok := g.privateDataFields[t.QQID{qid[0], qid[1], fieldName}]; ok {
331 qid := recvTyp.QID()
332 b.printf("%s%s__%s(", g.packagePrefix(qid), qid[1].Str(g.tm), method.Ident().Str(g.tm))
394 if qid := innermost.QID(); qid[0] == t.IDBase {
[all …]
Dcgen.go395 qid := n.QID()
396 g.structMap[qid] = n
400 g.privateDataFields[t.QQID{qid[0], qid[1], f.Name()}] = struct{}{}
656 func uintBits(qid t.QID) uint32 {
657 if qid[0] == t.IDBase {
658 switch qid[1] {
690 func (g *gen) addStatus(qid t.QID, msg string, public bool) error {
698 cName: g.packagePrefix(qid) + category + cName(msg, ""),
700 fromThisPkg: qid[0] == 0,
704 g.statusMap[qid] = z
[all …]
Dvar.go240 qid := inner.QID()
241 if qid[0] != t.IDBase {
244 switch qid[1] {
Dfunc.go438 if qid := oTyp.QID(); qid[0] == t.IDBase {
439 if key := qid[1]; key < t.ID(len(numTypeBounds)) {
Dbuiltin.go84 qid := recvTyp.QID()
85 if qid[0] != t.IDBase {
89 if qid[1].IsNumType() {
92 switch qid[1] {
/third_party/flutter/skia/third_party/externals/wuffs/lang/check/
Dcheck.go247 qid := n.QID()
248 if other, ok := c.statuses[qid]; ok {
250 Err: fmt.Errorf("check: duplicate status %s", qid.Str(c.tm)),
257 c.statuses[qid] = n
265 qid := n.QID()
266 if other, ok := c.consts[qid]; ok {
268 Err: fmt.Errorf("check: duplicate const %s", qid.Str(c.tm)),
275 c.consts[qid] = n
283 return fmt.Errorf("%v in const %s", err, qid.Str(c.tm))
286 return fmt.Errorf("%v in const %s", err, qid.Str(c.tm))
[all …]
Dbounds.go828 qid := t.QID{0, n.Ident()}
829 if c, ok := q.c.consts[qid]; ok {
1460 if qid := typ.QID(); qid[0] == t.IDBase {
1461 return numTypeBounds[qid[1]], nil
1469 if qid := typ.QID(); qid[0] == t.IDBase {
1470 b := numTypeBounds[qid[1]]
1577 if qid := typ.QID(); qid[0] == t.IDBase {
1578 if qid[1] == t.IDDagger1 || qid[1] == t.IDDagger2 {
1580 } else if qid[1] < t.ID(len(numTypeBounds)) {
1581 if x := numTypeBounds[qid[1]]; x[0] != nil {
Dtype.go931 qid := typ.QID()
932 if qid[0] == t.IDBase && qid[1].IsNumType() {
949 if qid[0] == t.IDBase {
950 if _, ok := builtInTypeMap[qid[1]]; ok || qid[1] == t.IDDagger1 || qid[1] == t.IDDagger2 {
955 if s.QID() == qid {
/third_party/uboot/u-boot-2020.01/drivers/nvme/
Dnvme.c46 u16 qid; member
233 int qid, int depth) in nvme_alloc_queue() argument
254 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride]; in nvme_alloc_queue()
256 nvmeq->qid = qid; in nvme_alloc_queue()
258 dev->queues[qid] = nvmeq; in nvme_alloc_queue()
276 c.delete_queue.qid = cpu_to_le16(id); in nvme_delete_queue()
328 static void nvme_init_queue(struct nvme_queue *nvmeq, u16 qid) in nvme_init_queue() argument
335 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride]; in nvme_init_queue()
407 static int nvme_alloc_cq(struct nvme_dev *dev, u16 qid, in nvme_alloc_cq() argument
416 c.create_cq.cqid = cpu_to_le16(qid); in nvme_alloc_cq()
[all …]
Dnvme.h415 __le16 qid; member
/third_party/cares/
Dares_query.c70 unsigned short qid; in find_query_by_id() local
73 DNS_HEADER_SET_QID(((unsigned char*)&qid), id); in find_query_by_id()
76 list_head = &(channel->queries_by_qid[qid % ARES_QID_TABLE_SIZE]); in find_query_by_id()
81 if (q->qid == qid) in find_query_by_id()
Dares_send.c80 query->qid = DNS_HEADER_QID(qbuf); in ares_send()
132 &(channel->queries_by_qid[query->qid % ARES_QID_TABLE_SIZE])); in ares_send()
Dares_private.h200 unsigned short qid; member
Dares_process.c601 if ((q->qid == id) && same_questions(q->qbuf, q->qlen, abuf, alen)) in process_answer()
/third_party/node/deps/cares/src/lib/
Dares_query.c64 unsigned short qid; in find_query_by_id() local
67 DNS_HEADER_SET_QID(((unsigned char*)&qid), id); in find_query_by_id()
70 list_head = &(channel->queries_by_qid[qid % ARES_QID_TABLE_SIZE]); in find_query_by_id()
75 if (q->qid == qid) in find_query_by_id()
Dares_send.c74 query->qid = DNS_HEADER_QID(qbuf); in ares_send()
126 &(channel->queries_by_qid[query->qid % ARES_QID_TABLE_SIZE])); in ares_send()
Dares_private.h206 unsigned short qid; member
/third_party/uboot/u-boot-2020.01/drivers/clk/
Dclk_versal.c120 u32 qid; member
136 regs.regs[1] = ((u64)qdata.arg1 << 32) | qdata.qid; in versal_pm_query()
149 return qdata.qid == PM_QID_CLOCK_GET_NAME ? 0 : regs.regs[0]; in versal_pm_query()
192 qdata.qid = PM_QID_CLOCK_GET_NUM_CLOCKS; in versal_pm_clock_get_num_clocks()
206 qdata.qid = PM_QID_CLOCK_GET_NAME; in versal_pm_clock_get_name()
223 qdata.qid = PM_QID_CLOCK_GET_TOPOLOGY; in versal_pm_clock_get_topology()
239 qdata.qid = PM_QID_CLOCK_GET_PARENTS; in versal_pm_clock_get_parents()
255 qdata.qid = PM_QID_CLOCK_GET_ATTRIBUTES; in versal_pm_clock_get_attributes()
/third_party/toybox/toys/pending/
Dipcrm.c31 struct arg_list *qid;
83 for (tmp = TT.qid; tmp; tmp = tmp->next) do_ipcrm(0, 2, tmp->arg); in ipcrm_main()
/third_party/cares/test/
Dares-test.h150 void SetReplyQID(int qid) { qid_ = qid; } in SetReplyQID() argument
164 int qid, const std::string& name, int rrtype);
228 ACTION_P2(SetReplyQID, mockserver, qid) { in ACTION_P2() argument
229 mockserver->SetReplyQID(qid); in ACTION_P2()
Dares-test.cc279 int qid = DNS_HEADER_QID(data); in ProcessFD() local
325 std::cerr << "ProcessRequest(" << qid << ", '" << namestr in ProcessFD()
328 ProcessRequest(fd, &addr, addrlen, qid, namestr, rrtype); in ProcessFD()
339 int qid, const std::string& name, int rrtype) { in ProcessRequest() argument
352 qid = qid_; in ProcessRequest()
356 reply[0] = (byte)((qid >> 8) & 0xff); in ProcessRequest()
357 reply[1] = (byte)(qid & 0xff); in ProcessRequest()
Ddns-proto.h209 DNSPacket& set_qid(int qid) { qid_ = qid; return *this; } in set_qid()
/third_party/jerryscript/targets/curie_bsp/
DREADME.md13 …om/PACK-ARM-JTAG-20-10-Micro-JTAG-adapter/dp/B010ATK9OC/ref=sr_1_1?ie=UTF8&qid=1469635131&sr=8-1&k…
/third_party/toybox/generated/
Dglobals.h678 struct arg_list *qid; member

12