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

  /src/tests/usr.bin/xlint/lint1/
msg_324.c 23 unsigned long long ull; local
31 /* expect+1: warning: 'ull' set but not used in function 'example' [191] */
32 ull = c * u;
34 ull = u + c;
36 ull = i - u;
38 ull = u * i;
47 ull = u / c;
48 ull = u % c;
55 * "ull = u * u", which has many more possibilities for overflowing.
57 ull = u++
    [all...]
msg_097.c 25 unsigned long long ull = 1234567ULL; local
  /src/external/bsd/libfido2/dist/src/
util.c 18 unsigned long long ull; local
21 ull = strtoull(str, &ep, base);
24 else if (ull == ULLONG_MAX && errno == ERANGE)
26 else if (ull > UINT64_MAX)
28 *out = (uint64_t)ull;
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
gettimeofday.c 47 ULONGLONG ull; local
52 ull = li.QuadPart;
54 ull -= 116444736000000000i64;
55 ull /= 10i64; /* ull is now in microseconds */
57 tp->tv_usec = (ull % 1000000i64);
58 tp->tv_sec = (ull / 1000000i64);
  /src/usr.sbin/altq/altqstat/
altqstat.h 39 * cast u_int64_t to ull for printf, since type of u_int64_t
42 typedef unsigned long long ull; typedef
  /src/external/bsd/ntp/dist/sntp/
kod_management.c 193 unsigned long long ull; local
274 if (3 != sscanf(fbuf, "%llx %4s %254s", &ull,
283 kod_db[b]->timestamp = (time_t)ull;
  /src/external/gpl3/binutils/dist/libiberty/
hashtab.c 238 __extension__ typedef UNSIGNED_64BIT_TYPE ull; typedef
243 t1 = ((ull)x * inv) >> 32;
  /src/external/gpl3/binutils.old/dist/libiberty/
hashtab.c 238 __extension__ typedef UNSIGNED_64BIT_TYPE ull; typedef
243 t1 = ((ull)x * inv) >> 32;
  /src/external/gpl3/gcc/dist/libiberty/
hashtab.c 238 __extension__ typedef UNSIGNED_64BIT_TYPE ull; typedef
243 t1 = ((ull)x * inv) >> 32;
  /src/external/gpl3/gcc.old/dist/libiberty/
hashtab.c 238 __extension__ typedef UNSIGNED_64BIT_TYPE ull; typedef
243 t1 = ((ull)x * inv) >> 32;
  /src/external/gpl3/gdb.old/dist/libiberty/
hashtab.c 238 __extension__ typedef UNSIGNED_64BIT_TYPE ull; typedef
243 t1 = ((ull)x * inv) >> 32;
  /src/external/gpl3/gdb/dist/libiberty/
hashtab.c 238 __extension__ typedef UNSIGNED_64BIT_TYPE ull; typedef
243 t1 = ((ull)x * inv) >> 32;
  /src/sys/altq/
altq_jobs.c 145 typedef unsigned long long ull; typedef
  /src/external/bsd/openldap/dist/libraries/liblutil/
utils.c 712 unsigned long long ull; local
725 ull = strtoull( s, &next, x );
727 ull = (unsigned long long)strtouq( s, &next, x );
736 if ( ( ull == 0 || ull == ULLONG_MAX ) && save_errno != 0 ) {
741 *v = ull;
  /src/external/gpl3/binutils/dist/gprofng/src/
dbe_structs.h 88 unsigned long long ull; member in union:TValue::__anon10295
  /src/external/gpl3/binutils.old/dist/gprofng/src/
dbe_structs.h 88 unsigned long long ull; member in union:TValue::__anon11768
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
read-debug-names.c 144 ULONGEST ull; local
148 ull = attr.implicit_const;
151 ull = 1;
154 ull = read_unsigned_leb128 (abfd, entry, &bytes_read);
158 ull = read_offset (abfd, entry, offset_size);
162 ull = read_4_bytes (abfd, entry);
166 ull = read_8_bytes (abfd, entry);
170 ull = read_8_bytes (abfd, entry);
184 if (ull >= per_objfile->per_bfd->all_comp_units.size ())
188 pulongest (ull),
    [all...]
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
read-debug-names.c 189 ULONGEST ull; local
193 ull = attr.implicit_const;
196 ull = 1;
199 ull = read_unsigned_leb128 (abfd, entry, &bytes_read);
203 ull = read_offset (abfd, entry, offset_size);
207 ull = *entry++;
210 ull = read_2_bytes (abfd, entry);
214 ull = read_4_bytes (abfd, entry);
218 ull = read_4_bytes (abfd, entry);
222 ull = read_8_bytes (abfd, entry)
    [all...]
  /src/external/bsd/file/dist/src/
apprentice.c 2851 uint64_t ull; local
2916 ull = CAST(uint64_t, strtoull(*p, &ep, 0));
2917 m->value.q = file_signextend(ms, m, ull);
2934 if (*q == '-' && ull != UINT64_MAX)
2935 ull = -CAST(int64_t, ull);
2938 x = CAST(uint64_t, ull & ~0xffULL);
2942 x = CAST(uint64_t, ull & ~0xffffULL);
2946 x = CAST(uint64_t, ull & ~0xffffffffULL);
2960 type_tbl[m->type].name, ull);
    [all...]
  /src/crypto/external/bsd/openssh/dist/
scp.c 1642 unsigned long long ull; local
1722 ull = strtoull(cp, &cp, 10);
1725 if (TYPE_OVERFLOW(time_t, ull))
1727 mtime.tv_sec = ull;
1734 ull = strtoull(cp, &cp, 10);
1737 if (TYPE_OVERFLOW(time_t, ull))
1739 atime.tv_sec = ull;
1774 ull = strtoull(cp, &cp, 10);
1777 if (TYPE_OVERFLOW(off_t, ull))
1779 size = (off_t)ull;
    [all...]
ssh-keygen.c 114 static uint64_t cert_valid_to = ~0ULL;
1881 unsigned long long ull; local
1884 ull = strtoull(s, &ep, 16);
1887 if (errno == ERANGE && ull == ULONG_MAX)
1889 *up = (uint64_t)ull;
  /src/external/gpl3/gcc/dist/gcc/
omp-expand.cc 777 bool ull = false; local
819 ull = fd.iter_type == long_long_unsigned_type_node;
888 t = build_call_expr (ull
  /src/external/gpl3/gcc.old/dist/gcc/
omp-expand.cc 776 bool ull = false; local
818 ull = fd.iter_type == long_long_unsigned_type_node;
887 t = build_call_expr (ull

Completed in 93 milliseconds