HomeSort by: relevance | last modified time | path
    Searched defs:send (Results 1 - 17 of 17) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/vulkan/overlay-layer/
mesa-overlay-control.py 65 def send(self, msg): member in class:Connection
66 self.sock.send(msg)
188 conn.send(bytearray(':capture=1;', 'utf-8'))
190 conn.send(bytearray(':capture=0;', 'utf-8'))
  /xsrc/external/mit/xorg-server/dist/Xext/
xace.c 74 XaceSendAccessRec send; member in union:__anon9775
118 u.send.client = va_arg(ap, ClientPtr);
119 u.send.dev = va_arg(ap, DeviceIntPtr);
120 u.send.pWin = va_arg(ap, WindowPtr);
122 u.send.events = va_arg(ap, xEventPtr);
123 u.send.count = va_arg(ap, int);
125 u.send.status = Success; /* default allow */
126 prv = &u.send.status;
  /xsrc/external/mit/xorg-server.old/dist/Xext/
xace.c 93 XaceSendAccessRec send; member in union:__anon10341
136 u.send.client = va_arg(ap, ClientPtr);
137 u.send.dev = va_arg(ap, DeviceIntPtr);
138 u.send.pWin = va_arg(ap, WindowPtr);
139 u.send.events = va_arg(ap, xEventPtr);
140 u.send.count = va_arg(ap, int);
141 u.send.status = Success; /* default allow */
142 prv = &u.send.status;
  /xsrc/external/mit/xf86-video-ati/xorg-server-copy/
msp3430.c 72 I2CByte send[3]; local
75 send[0] = RegAddress;
76 send[1] = RegSubAddressHigh;
77 send[2] = RegSubAddressLow;
79 I2C_WriteRead(&(m->d), send, 3, receive, 2);
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/i2c/
msp3430.c 72 I2CByte send[3]; local
75 send[0] = RegAddress;
76 send[1] = RegSubAddressHigh;
77 send[2] = RegSubAddressLow;
79 I2C_WriteRead(&(m->d), send, 3, receive, 2);
  /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
brw_vec4_generator.cpp 324 /* dst = send(offset, a0.0 | <descriptor>) */
505 /* Send SVB Write */
774 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
775 brw_set_dest(p, send, brw_null_reg());
776 brw_set_src0(p, send, urb_header);
777 brw_set_desc(p, send, brw_message_desc(devinfo, inst->mlen, 0, true));
779 brw_inst_set_sfid(devinfo, send, BRW_SFID_URB);
780 brw_inst_set_urb_opcode(devinfo, send, BRW_URB_OPCODE_WRITE_OWORD);
781 brw_inst_set_urb_global_offset(devinfo, send, inst->offset);
783 brw_inst_set_eot(devinfo, send, 1)
961 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
998 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
1175 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
1251 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
1315 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
    [all...]
brw_eu_emit.c 39 * Prior to Sandybridge, the SEND instruction accepted non-MRF source
43 * explicit move; it should be called before emitting a SEND instruction.
72 /* From the Ivybridge PRM, Volume 4 Part 3, page 218 ("send"):
73 * "The send with EOT should use register space R112-R127 for <src>. This is
416 * Specify the descriptor and extended descriptor immediate for a SEND(C)
852 * may send us mixed D and UD types and want us to ignore that and use
1880 * Helpers for the various SEND message types:
1903 /* Example code doesn't set predicate_control for send
2110 * send from any register we want. By using the destination register
2387 * is, send). The hardware behavior is undefined if this instruction i
2518 struct brw_inst *send; local
2568 struct brw_inst *send; local
3393 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
    [all...]
brw_fs_generator.cpp 382 /* Check runtime bit to detect if we have to send AA data or not */
395 /* Don't send AA data */
513 * by a send, the instruction requires a “Switch”. This is to
514 * avoid race condition where send may dispatch before MRF is
698 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
699 brw_set_dest(p, send, retype(dst, BRW_REGISTER_TYPE_UD));
700 brw_set_src0(p, send, header);
701 brw_set_src1(p, send, brw_imm_ud(0u));
703 brw_inst_set_sfid(p->devinfo, send, BRW_SFID_URB);
704 brw_inst_set_urb_opcode(p->devinfo, send, GEN8_URB_OPCODE_SIMD8_READ)
1428 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
1511 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
    [all...]
  /xsrc/external/mit/xedit/dist/lisp/
pathname.c 487 string[PATH_MAX + 1], *send; local
501 send = ptr + alength;
502 while (ptr < send) {
504 for (str = ptr; str < send && *str == PATH_SEP; str++)
509 send -= str - ptr;
549 send = data + alength;
552 for (str = ptr; str < send; str++) {
556 while (str < send) {
563 for (ptr = str; str < send; str++) {
584 send += dlength
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/xkb/
xkbActions.c 1051 register int i,send; local
1053 send= 1;
1056 send= ((*xkbi->filters[i].filter)(xkbi,&xkbi->filters[i],kc,pAction)
1057 && send);
1059 return send;
  /xsrc/external/mit/xorg-server/dist/xkb/
xkbActions.c 821 /* Repeat: If we send the same message, avoid multiple messages
1164 register int i, send; local
1166 send = 1;
1169 send =
1172 && send);
1174 return send;
  /xsrc/external/mit/MesaLib/dist/src/intel/compiler/
brw_eu_emit.c 39 * Prior to Sandybridge, the SEND instruction accepted non-MRF source
43 * explicit move; it should be called before emitting a SEND instruction.
73 /* From the Ivybridge PRM, Volume 4 Part 3, page 218 ("send"):
74 * "The send with EOT should use register space R112-R127 for <src>. This is
451 * Specify the descriptor and extended descriptor immediate for a SEND(C)
989 * may send us mixed D and UD types and want us to ignore that and use
2041 * Helpers for the various SEND message types:
2064 /* Example code doesn't set predicate_control for send
2282 * send from any register we want. By using the destination register
2558 * is, send). The hardware behavior is undefined if this instruction i
2692 struct brw_inst *send; local
2749 struct brw_inst *send; local
3625 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
    [all...]
brw_fs_generator.cpp 419 /* Check runtime bit to detect if we have to send AA data or not */
432 /* Don't send AA data */
587 * by a send, the instruction requires a “Switch”. This is to
588 * avoid race condition where send may dispatch before MRF is
834 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
835 brw_set_dest(p, send, retype(dst, BRW_REGISTER_TYPE_UD));
836 brw_set_src0(p, send, header);
838 brw_set_src1(p, send, brw_imm_ud(0u));
840 brw_inst_set_sfid(p->devinfo, send, BRW_SFID_URB);
841 brw_inst_set_urb_opcode(p->devinfo, send, GFX8_URB_OPCODE_SIMD8_READ)
1647 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
1731 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
    [all...]
brw_vec4_generator.cpp 326 /* dst = send(offset, a0.0 | <descriptor>) */
504 /* Send SVB Write */
773 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
774 brw_set_dest(p, send, brw_null_reg());
775 brw_set_src0(p, send, urb_header);
776 brw_set_desc(p, send, brw_message_desc(devinfo, inst->mlen, 0, true));
778 brw_inst_set_sfid(devinfo, send, BRW_SFID_URB);
779 brw_inst_set_urb_opcode(devinfo, send, BRW_URB_OPCODE_WRITE_OWORD);
780 brw_inst_set_urb_global_offset(devinfo, send, inst->offset);
782 brw_inst_set_eot(devinfo, send, 1)
960 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
997 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
1174 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
1250 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
1312 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/winsys/svga/drm/
vmwgfx_drm.h 1229 * @send: Pointer to user-space msg string (null terminated).
1236 __u64 send; member in struct:drm_vmw_msg_arg
  /xsrc/external/mit/xf86-video-intel/dist/tools/
virtual.c 127 int send; member in struct:display
2000 c->dst.display->send |= c->dst.use_shm;
2009 c->dst.display->send = 1;
2574 if (send(fd, &buf, 1, 0) != 1 || (len = recv(fd, &buf, 255, 0)) <= 0) {
2575 DBG(X11, ("%s startup send/recv failed: %d\n", __func__, errno));
2582 if (send(fd, buf, 17, 0) != 17 || (len = recv(fd, buf, 255, 0)) <= 0) {
2583 DBG(X11, ("%s query send/recv failed: %d\n", __func__, errno));
3060 DBG(X11, ("%s: send command '%s'\n", DisplayString(display->dpy), buf));
3095 DBG(X11, ("%s: send reply '%s'\n", DisplayString(display->dpy), msg.data.b));
3181 if (!display->send)
    [all...]
  /xsrc/external/mit/xf86-video-intel-2014/dist/tools/
virtual.c 123 int send; member in struct:display
1839 c->dst.display->send |= c->dst.use_shm;
1848 c->dst.display->send = 1;
2399 if (send(fd, &buf, 1, 0) != 1 || (len = recv(fd, &buf, 255, 0)) <= 0) {
2400 DBG(X11, ("%s startup send/recv failed: %d\n", __func__, errno));
2407 if (send(fd, buf, 17, 0) != 17 || (len = recv(fd, buf, 255, 0)) <= 0) {
2408 DBG(X11, ("%s query send/recv failed: %d\n", __func__, errno));
2877 DBG(X11, ("%s: send command '%s'\n", DisplayString(display->dpy), buf));
2912 DBG(X11, ("%s: send reply '%s'\n", DisplayString(display->dpy), msg.data.b));
2998 if (!display->send)
    [all...]

Completed in 28 milliseconds