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

  /src/lib/libutil/
login_cap.c 910 static int bpw = 0; local
929 if (!bpw) {
930 bpw = sizeof(u_quad_t) * 8;
931 while (((u_quad_t)1 << (bpw-1)) == 0)
932 --bpw;
940 for (b1 = bpw; (((u_quad_t)1 << (b1-1)) & n1) == 0; --b1)
942 for (b2 = bpw; (((u_quad_t)1 << (b2-1)) & n2) == 0; --b2)
944 if (b1 + b2 - 2 > bpw) {
962 * So if (h1>>1 * h2>>1) > (1<<(bpw - 2)) then the result will
971 if (m >= ((u_quad_t)1 << (bpw-2)))
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
or1k-tdep.c 253 int bpw = tdep->bytes_per_word;
260 || ((TYPE_CODE_ARRAY == rv_type) && (rv_size > bpw))
261 || (rv_size > 2 * bpw))
281 if (rv_size <= bpw)
294 gdb_byte *buf = XCNEWVEC(gdb_byte, bpw);
297 memcpy (buf + (sizeof (gdb_byte) * bpw) - rv_size, writebuf,
320 tmp = (tmp_hi << (bpw * 8)) | tmp_lo;
326 gdb_byte *buf_lo = XCNEWVEC(gdb_byte, bpw);
327 gdb_byte *buf_hi = XCNEWVEC(gdb_byte, bpw);
332 memcpy (buf_hi, writebuf, rv_size - bpw);
251 int bpw = tdep->bytes_per_word; local
639 int bpw = tdep->bytes_per_word; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
or1k-tdep.c 253 int bpw = tdep->bytes_per_word;
260 || ((TYPE_CODE_ARRAY == rv_type) && (rv_size > bpw))
261 || (rv_size > 2 * bpw))
281 if (rv_size <= bpw)
294 gdb_byte *buf = XCNEWVEC(gdb_byte, bpw);
297 memcpy (buf + (sizeof (gdb_byte) * bpw) - rv_size, writebuf,
320 tmp = (tmp_hi << (bpw * 8)) | tmp_lo;
326 gdb_byte *buf_lo = XCNEWVEC(gdb_byte, bpw);
327 gdb_byte *buf_hi = XCNEWVEC(gdb_byte, bpw);
332 memcpy (buf_hi, writebuf, rv_size - bpw);
251 int bpw = tdep->bytes_per_word; local
639 int bpw = tdep->bytes_per_word; local
    [all...]

Completed in 14 milliseconds