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

  /src/sys/dev/raidframe/
rf_netbsd.h 76 struct pool rad; /* Raid Access Descriptors */ member in struct:RF_Pools_s
102 char rad[RF_MAX_POOLNAMELEN]; /* Raid Access Descriptors */ member in struct:RF_PoolNames_s
  /src/external/bsd/pcc/dist/pcc/cc/cpp/
token.c 1034 int rad; local
1037 rad = *y != '0' ? 10 : y[1] == 'x' || y[1] == 'X' ? 16 : 8;
1038 if (rad == 16)
1041 rv = rv * rad + dig2num(*y);
1043 if (rv / rad < rv2)
1055 if ((rad == 8 || rad == 16) && yynode.nd_val < 0)
  /src/external/gpl2/groff/dist/src/devices/grolbp/
lbp.h 230 char x[4],y[4],rad[4]; local
233 vdmnum(radius,rad));
240 char x[4],y[4],rad[4],stx[4],sty[4],styl[4],op[4]; local
244 vdmnum(radius,rad),vdmnum(startangle,stx),vdmnum(angle,sty),\
253 char x[4],y[4],rad[4],stx[4],sty[4],enx[4],eny[4],styl[4],op[4]; local
257 vdmnum(radius,rad),vdmnum(startx,stx),vdmnum(starty,sty),\
  /src/external/gpl2/groff/dist/src/devices/xditview/
draw.c 509 int rad = (int)((sqrt ((double)x_0*x_0 + (double)y_0*y_0) local
524 rad = DeviceToX (dw, rad);
526 XPos (dw) + DeviceToX (dw, x_0) - rad,
527 YPos (dw) + DeviceToX (dw, y_0) - rad,
528 rad*2, rad*2, angle1, angle2);
  /src/external/gpl2/groff/dist/src/preproc/pic/
common.cpp 28 void common_output::dashed_circle(const position &cent, double rad,
34 double dash_angle = lt.dash_width/rad;
47 circle(cent, rad, slt, -1.0);
57 solid_arc(cent, rad, start_angle, start_angle + dash_angle, lt);
63 void common_output::dotted_circle(const position &cent, double rad,
67 double gap_angle = lt.dash_width/rad;
80 dot(cent + position(cos(ang), sin(ang))*rad, lt);
265 double rad = hypot(c - start); local
266 double dash_angle = lt.dash_width/rad;
271 solid_arc(cent, rad, start_angle, end_angle, lt)
298 double rad = hypot(c - start); local
    [all...]
object.cpp 1517 double rad; member in class:arc_object
1522 double radius() { return rad; }
1541 rad = hypot(c - s);
1555 result.y += rad;
1562 result.y -= rad;
1569 result.x += rad;
1576 result.x -= rad;
1583 result.x += rad/M_SQRT2;
1584 result.y += rad/M_SQRT2;
1591 result.x -= rad/M_SQRT2
    [all...]
  /src/external/gpl2/groff/dist/src/devices/grodvi/
dvi.cpp 725 int rad; local
726 rad = milliinches(p[0]/2);
729 rad,
730 rad);
825 int rad = milliinches(int(sqrt(c[0]*c[0] + c[1]*c[1]) + .5)); local
831 sprintf(buf, "ar 0 0 %d %d %f %f", rad, rad, start, end);
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_dp_mst_helper.h 171 * @rad: Relative Address to talk to this branch device.
215 u8 rad[8]; member in struct:drm_dp_mst_branch
250 u8 rad[8]; member in struct:drm_dp_sideband_msg_hdr
  /src/sys/fs/nfs/server/
nfs_nfsdstate.c 179 struct sockaddr_in *sad, *rad; local
331 rad = NFSSOCKADDR(clp->lc_req.nr_nam, struct sockaddr_in *);
332 sad->sin_addr.s_addr = rad->sin_addr.s_addr;
333 sad->sin_port = rad->sin_port;
869 struct sockaddr_in *rad; local
881 rad = (struct sockaddr_in *)sad;
882 dumpp->ndcl_cbaddr.sin_addr = rad->sin_addr;
927 struct sockaddr_in *rad; local
973 rad = (struct sockaddr_in *)sad;
974 ldumpp[cnt].ndlck_cbaddr.sin_addr = rad->sin_addr
3861 struct sockaddr_in *rad, *sad; local
    [all...]
nfs_nfsdserv.c 3450 struct sockaddr_in *rad; local
3525 rad = NFSSOCKADDR(clp->lc_req.nr_nam, struct sockaddr_in *);
3526 ucp = (u_char *)&rad->sin_addr.s_addr;
3527 ucp2 = (u_char *)&rad->sin_port;
  /src/external/bsd/tcpdump/dist/
print-radius.c 1430 const struct radius_hdr *rad; local
1435 rad = (const struct radius_hdr *)dat;
1436 len = GET_BE_U_2(rad->len);
1448 tok2str(radius_command_values,"Unknown Command",GET_U_1(rad->code)),
1449 GET_U_1(rad->code),
1450 GET_U_1(rad->id),
1456 tok2str(radius_command_values,"Unknown Command",GET_U_1(rad->code)),
1457 GET_U_1(rad->code),
1458 GET_U_1(rad->id));
1461 ND_PRINT("%02x", rad->auth[auth_idx])
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/
drm_dp_mst_topology.c 181 drm_dp_mst_rad_to_str(const u8 rad[8], u8 lct, char *out, size_t len)
188 unpacked_rad[i] = rad[i / 2] >> 4;
190 unpacked_rad[i] = rad[i / 2] & BIT_MASK(4);
193 /* TODO: Eventually add something to printk so we can format the rad
282 buf[idx++] = hdr->rad[i];
317 hdr->rad[i] = buf[idx++];
653 drm_dp_mst_rad_to_str(txmsg->dst->rad, txmsg->dst->lct, buf,
1235 static struct drm_dp_mst_branch *drm_dp_add_mst_branch_device(u8 lct, u8 *rad)
1245 memcpy(mstb->rad, rad, lct / 2)
1968 u8 rad[8], lct; local
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/sh/
interp.c 1386 double rad = ldexp ((in & 0xffff), -15) * 3.141592653589793238462643383; local
1387 double result = (*f) (rad);
  /src/external/gpl3/gdb/dist/sim/sh/
interp.c 1386 double rad = ldexp ((in & 0xffff), -15) * 3.141592653589793238462643383; local
1387 double result = (*f) (rad);
  /src/external/bsd/openldap/dist/servers/slapd/
bconfig.c 6345 AttributeDescription *rad = NULL; local
6380 rs->sr_err = slap_bv2ad( &rdn, &rad, &rs->sr_text );
6388 if ( ml->sml_desc == rad ) {

Completed in 37 milliseconds