HomeSort by relevance Sort by last modified time
    Searched defs:iop (Results 1 - 25 of 32) sorted by null

1 2

  /prebuilts/go/darwin-x86/test/
rotate.go 102 iop = [2]func(x, y int64) int64{
145 v = iop[o](v<<l, v>>r)
101 iop = [2]func(x, y int64) int64{ var
  /prebuilts/go/linux-x86/test/
rotate.go 102 iop = [2]func(x, y int64) int64{
145 v = iop[o](v<<l, v>>r)
101 iop = [2]func(x, y int64) int64{ var
  /external/strace/
ioctl.c 54 struct_ioctlent *iop; local
56 iop = bsearch((const void *) (const uintptr_t) code, ioctlent,
58 while (iop > ioctlent) {
59 iop--;
60 if (iop->code != code) {
61 iop++;
65 return iop;
69 ioctl_next_match(const struct_ioctlent *iop)
71 const unsigned int code = iop->code;
72 iop++
335 const struct_ioctlent *iop; local
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/gen/
popen.c 84 FILE *iop; local
162 iop = fdopen(pdes[0], xtype);
168 iop = fdopen(pdes[1], xtype);
176 cur->fp = iop;
182 return (iop);
191 pclose(FILE *iop)
197 _DIAGASSERT(iop != NULL);
203 if (cur->fp == iop)
210 (void)fclose(iop);
  /external/blktrace/btt/
devs.c 37 struct io *iop = rb_entry(n, struct io, rb_node); local
41 io_release(iop);
125 struct d_info *dip_alloc(__u32 device, struct io *iop)
153 dip->start_time = BIT_TIME(iop->t.time);
164 if (iop->type == IOP_Q || iop->type == IOP_A)
170 iop->linked = dip_rb_ins(dip, iop);
171 dip->end_time = BIT_TIME(iop->t.time);
176 void iop_rem_dip(struct io *iop)
    [all...]
bt_timeline.c 101 struct io *iop = io_alloc(); local
106 while (!done && next_trace(&iop->t, &iop->pdu)) {
107 add_trace(iop);
108 iop = io_alloc();
111 io_release(iop);
inlines.h 124 static inline void dip_update_q(struct d_info *dip, struct io *iop)
127 update_lq(&dip->last_q, &dip->avgs.q2q_dm, iop->t.time);
129 update_lq(&dip->last_q, &dip->avgs.q2q, iop->t.time);
130 update_qregion(&dip->regions, iop->t.time);
135 struct io *iop = malloc(sizeof(*iop)); local
137 memset(iop, 0, sizeof(struct io));
138 list_add_tail(&iop->a_head, &all_ios);
140 return iop;
143 static inline void io_free(struct io *iop)
151 struct io *iop; local
    [all...]
globals.h 41 #define BIT_START(iop) ((iop)->t.sector)
42 #define BIT_END(iop) ((iop)->t.sector + ((iop)->t.bytes >> 9))
43 #define IOP_READ(iop) ((iop)->t.action & BLK_TC_ACT(BLK_TC_READ))
44 #define IOP_RW(iop) (IOP_READ(iop) ? 1 : 0)
71 struct io *iop; member in struct:io_list
    [all...]
  /external/syslinux/com32/lib/sys/
file.h 81 const struct input_dev *iop; /* Input operations */ member in struct:file_info
  /prebuilts/go/darwin-x86/src/regexp/
onepass.go 52 if iop(i) != syntax.InstRune || len(i.Rune) != 1 {
58 for iop(i) == syntax.InstRune && len(i.Rune) == 1 && syntax.Flags(i.Arg)&syntax.FoldCase == 0 {
85 func iop(i *syntax.Inst) syntax.InstOp { func
  /prebuilts/go/linux-x86/src/regexp/
onepass.go 52 if iop(i) != syntax.InstRune || len(i.Rune) != 1 {
58 for iop(i) == syntax.InstRune && len(i.Rune) == 1 && syntax.Flags(i.Arg)&syntax.FoldCase == 0 {
85 func iop(i *syntax.Inst) syntax.InstOp { func
  /external/mksh/src/
tree.c 232 struct ioword *iop = *ioact++; local
235 if ((iop->ioflag & (IOTYPE | IOHERESTR)) == IOHERE &&
236 iop->heredoc) {
238 shf_puts(iop->heredoc, shf);
240 evalstr(iop->delim, 0));
257 pioact(struct shf *shf, struct ioword *iop)
259 unsigned short flag = iop->ioflag;
265 (type == IODUP && (iop->unit == !(flag & IORDUP))) ? iop->unit :
266 iop->unit + 1
752 struct ioword **iop; local
938 struct ioword **ioact, *iop; local
    [all...]
syn.c 183 struct ioword *iop; local
188 iop = nextiop;
190 return (iop);
196 iop = yylval.iop;
197 ishere = (iop->ioflag & IOTYPE) == IOHERE;
198 if (iop->ioflag & IOHERESTR) {
203 iop->ioflag |= IOEVAL | IONDELIM;
207 iop->delim = yylval.cp;
208 if (*ident != 0 && !(iop->ioflag & IOHERESTR))
271 struct ioword *iop, **iops; local
    [all...]
lex.c 895 struct ioword *iop = alloc(sizeof(struct ioword), ATEMP); local
897 iop->unit = c2 == 2 ? ksh_numdig(dp[1]) : c == '<' ? 0 : 1;
905 iop->ioflag = IOBASH;
907 iop->ioflag = 0;
913 iop->ioflag |= c == c2 ?
915 if (iop->ioflag == IOHERE) {
917 iop->ioflag |= IOSKIP;
919 iop->ioflag |= IOHERESTR;
924 iop->ioflag |= IODUP | ((unsigned int)c == ORD('<') ? IORDUP : 0);
926 iop->ioflag |= (unsigned int)c == ORD('>') ? IOWRITE : IOREAD
    [all...]
sh.h 2155 struct ioword *iop; member in union:__anon30703
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
TokenRewriteStream.java 468 InsertBeforeOp iop = (InsertBeforeOp) inserts.get(j); local
469 if ( iop.index == rop.index ) {
472 rewrites.set(iop.instructionIndex, null);
473 rop.text = iop.text.toString() + (rop.text!=null?rop.text.toString():"");
475 else if ( iop.index > rop.index && iop.index <= rop.lastIndex ) {
477 rewrites.set(iop.instructionIndex, null);
515 InsertBeforeOp iop = (InsertBeforeOp)rewrites.get(i); local
520 if ( prevIop.index == iop.index ) { // combine objects
523 iop.text = catOpText(iop.text,prevIop.text)
    [all...]
  /external/blktrace/btreplay/
btrecord.c 273 struct io_pkt iop = { local
283 cur->pkts[cur->hdr.npkts++] = iop; // Struct copy
btreplay.c 715 struct iocb *iop = &iocbp->iocb; local
723 buf = iop->u.c.buf;
727 assert(iop->u.c.buf);
728 free(iop->u.c.buf);
736 io_prep_pread(iop, iocbp->tip->ofd, buf, n, off);
739 io_prep_pwrite(iop, iocbp->tip->ofd, buf, n, off);
743 iop->data = iocbp;
    [all...]
  /bionic/libc/kernel/uapi/linux/
i2o-dev.h 40 unsigned int iop; member in struct:i2o_cmd_passthru32
44 unsigned int iop; member in struct:i2o_cmd_passthru
48 unsigned int iop; member in struct:i2o_cmd_hrtlct
53 unsigned int iop; member in struct:i2o_cmd_psetget
61 unsigned int iop; member in struct:i2o_sw_xfer
71 unsigned int iop; member in struct:i2o_html
81 unsigned int iop; member in struct:i2o_evt_id
  /external/blktrace/
blktrace.c 1439 static int net_sendfile(struct io_info *iop)
1443 ret = sendfile(iop->ofd, iop->ifd, NULL, iop->ready);
1447 } else if (ret < (int)iop->ready) {
1449 ret, iop->ready);
1456 static inline int net_sendfile_data(struct tracer *tp, struct io_info *iop)
1458 struct devpath *dpp = iop->dpp;
1460 if (net_send_header(iop->ofd, tp->cpu, dpp->buts_name, iop->ready)
1576 struct io_info *iop = &tp->ios[--tp->nios]; local
1599 struct io_info *iop; local
1667 struct io_info *iop = tp->ios; local
1711 struct io_info *iop = tp->ios; local
1745 struct io_info *iop = tp->ios; local
2241 struct io_info *iop; local
2301 struct io_info *iop; local
2368 struct io_info *iop = &dpp->ios[bnh->cpu]; local
    [all...]
  /external/kernel-headers/original/uapi/linux/
i2o-dev.h 50 unsigned int iop; /* IOP unit number */ member in struct:i2o_cmd_passthru32
55 unsigned int iop; /* IOP unit number */ member in struct:i2o_cmd_passthru
60 unsigned int iop; /* IOP unit number */ member in struct:i2o_cmd_hrtlct
66 unsigned int iop; /* IOP unit number */ member in struct:i2o_cmd_psetget
75 unsigned int iop; /* IOP unit number * member in struct:i2o_sw_xfer
86 unsigned int iop; \/* IOP unit number *\/ member in struct:i2o_html
98 unsigned int iop; member in struct:i2o_evt_id
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
i2o-dev.h 49 unsigned int iop; /* IOP unit number */ member in struct:i2o_cmd_passthru32
54 unsigned int iop; /* IOP unit number */ member in struct:i2o_cmd_passthru
59 unsigned int iop; /* IOP unit number */ member in struct:i2o_cmd_hrtlct
65 unsigned int iop; /* IOP unit number */ member in struct:i2o_cmd_psetget
74 unsigned int iop; /* IOP unit number * member in struct:i2o_sw_xfer
85 unsigned int iop; \/* IOP unit number *\/ member in struct:i2o_html
97 unsigned int iop; member in struct:i2o_evt_id
    [all...]
  /external/valgrind/VEX/priv/
guest_arm64_toIR.c 3401 IROp iop = Iop_INVALID; local
10438 IROp iop = isU ? (isD ? Iop_I64UtoF64 : Iop_I32UtoF32) local
12213 IROp iop = isH ? Iop_Reverse16sIn32_x4 : Iop_Reverse8sIn32_x4; local
12786 IROp iop = isU ? (isF64 ? Iop_I64UtoF64 : Iop_I32UtoF32) local
13812 IROp iop = Iop_INVALID; local
13844 IROp iop = mkMULF(ity); local
14176 IROp iop = iops[ix]; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 

Completed in 853 milliseconds

1 2