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

  /src/crypto/external/bsd/openssh/dist/
fmt_scaled.c 84 long long scale_fact = 1, whole = 0, fpart = 0; local
137 whole *= 10;
138 whole += i;
143 whole *= sign;
149 *result = whole;
153 /* Validate scale factor, and scale whole and fraction by it. */
167 /* scale whole part */
168 whole *= scale_fact;
182 whole += fpart;
183 *result = whole;
    [all...]
  /src/sys/dev/
spkr.c 110 #define WHOLE_NOTE 4 /* quarter notes per whole note */
183 int whole; local
189 whole = sc->sc_whole;
191 whole *= NUM_MULT;
196 total = whole / val;
  /src/external/bsd/nsd/dist/compat/
snprintf.c 498 unsigned long long whole = (unsigned long long)value; local
499 double remain = value - (double)whole;
503 len += print_dec_ll(buf+len, max-len, whole);
528 unsigned long long whole = (unsigned long long)value; local
529 double remain = value - (double)whole;
534 while(whole > 0) {
536 whole /= 10;
538 whole = (unsigned long long)value;
547 len += print_dec_ll(buf+len, max-len, whole);
  /src/external/bsd/unbound/dist/compat/
snprintf.c 498 unsigned long long whole = (unsigned long long)value; local
499 double remain = value - (double)whole;
503 len += print_dec_ll(buf+len, max-len, whole);
528 unsigned long long whole = (unsigned long long)value; local
529 double remain = value - (double)whole;
534 while(whole > 0) {
536 whole /= 10;
538 whole = (unsigned long long)value;
547 len += print_dec_ll(buf+len, max-len, whole);
  /src/usr.sbin/ofctl/
ofctl.c 796 u_int32_t divisor, whole, frac; local
803 whole = freq / divisor;
816 printf(" %u.%03u%s\n", whole, frac, units);
818 printf(" %u%s\n", whole, units);
828 u_int32_t divisor, whole, frac; local
835 whole = freq / divisor;
848 printf(" %3u.%03u%s\n", whole, frac, units);
850 printf(" %3u%s\n", whole, units);
  /src/sys/external/bsd/ipf/netinet/
ip_ftp_pxy.c 1896 u_short whole; local
1923 whole = 0;
1928 *t = htons((u_short)whole);
1934 *t = htons((u_short)whole);
1937 *t = htons((u_short)(whole >> 16));
1940 whole = 0;
1961 whole <<= 8;
1962 whole |= c;
1964 whole >>= 8;
1965 whole |= ((u_32_t)c) << 24
    [all...]
  /src/usr.sbin/bta2dpd/bta2dpd/
sbc_encode.c 847 uint8_t *whole, *frameData; local
946 whole = malloc(totalSize);
947 if (whole == NULL)
950 memcpy(whole, &myHeader, sizeof(myHeader));
953 memcpy(whole + offset, frameData, (size_t)next_pkt);
971 len = write(outfd, whole, totalSize);
990 free(whole);
  /src/external/cddl/osnet/dist/lib/libdtrace/common/
dt_consume.c 596 uint_t len = 40, i, whole, partial; local
600 whole = (uint_t)f;
607 for (i = 0; i < whole; i++) {
  /src/external/gpl3/gcc.old/dist/gcc/cp/
constexpr.cc 1120 /* The part of the context that needs to be unique to the whole
1591 We use this whenever we initialize an object as a whole, whether it's a
4062 tree whole = cxx_eval_constant_expression (ctx, orig_whole, local
4065 if (INDIRECT_REF_P (whole)
4066 && integer_zerop (TREE_OPERAND (whole, 0)))
4074 if (TREE_CODE (whole) == PTRMEM_CST)
4075 whole = cplus_expand_constant (whole);
4076 if (whole == orig_whole)
4080 whole, part, NULL_TREE)
4170 tree whole = cxx_eval_constant_expression (ctx, orig_whole, local
    [all...]
  /src/external/mit/isl/dist/
isl_test.c 5396 /* Perform scheduling tests using the whole component scheduler.
5400 int whole; local
5403 whole = isl_options_get_schedule_whole_component(ctx);
5406 isl_options_set_schedule_whole_component(ctx, whole);
5415 int whole; local
5418 whole = isl_options_get_schedule_whole_component(ctx);
5421 isl_options_set_schedule_whole_component(ctx, whole);
10937 { "schedule (whole component)", &test_schedule_whole },

Completed in 45 milliseconds