HomeSort by: relevance | last modified time | path
    Searched defs:diff (Results 1 - 25 of 573) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/common/lib/libc/quad/
subdi3.c 54 union uu aa, bb, diff; local in function:__subdi3
58 diff.ul[L] = aa.ul[L] - bb.ul[L];
59 diff.ul[H] = aa.ul[H] - bb.ul[H] - (diff.ul[L] > aa.ul[L]);
60 return (diff.q);
subdi3.c 54 union uu aa, bb, diff; local in function:__subdi3
58 diff.ul[L] = aa.ul[L] - bb.ul[L];
59 diff.ul[H] = aa.ul[H] - bb.ul[H] - (diff.ul[L] > aa.ul[L]);
60 return (diff.q);
subdi3.c 54 union uu aa, bb, diff; local in function:__subdi3
58 diff.ul[L] = aa.ul[L] - bb.ul[L];
59 diff.ul[H] = aa.ul[H] - bb.ul[H] - (diff.ul[L] > aa.ul[L]);
60 return (diff.q);
  /src/lib/libc/string/
wcscasecmp.c 34 int diff = 0; local in function:__weak_alias
43 diff = lc1 - lc2;
44 if (diff)
45 return diff;
wcsncasecmp.c 34 int diff = 0; local in function:__weak_alias
43 diff = lc1 - lc2;
44 if (diff)
45 return diff;
wcscasecmp.c 34 int diff = 0; local in function:__weak_alias
43 diff = lc1 - lc2;
44 if (diff)
45 return diff;
wcsncasecmp.c 34 int diff = 0; local in function:__weak_alias
43 diff = lc1 - lc2;
44 if (diff)
45 return diff;
wcscasecmp.c 34 int diff = 0; local in function:__weak_alias
43 diff = lc1 - lc2;
44 if (diff)
45 return diff;
wcsncasecmp.c 34 int diff = 0; local in function:__weak_alias
43 diff = lc1 - lc2;
44 if (diff)
45 return diff;
  /src/sys/external/bsd/drm2/include/linux/
nospec.h 48 size_t j, diff, mask; local in function:array_index_nospec
58 /* If i >= n, then diff has the high bit set; otherwise clear. */
59 diff = n - 1 - j;
62 * If i >= n so that diff's high bit is set, mask = 0;
65 mask = (diff >> (NBBY*sizeof(diff) - 1)) - 1;
nospec.h 48 size_t j, diff, mask; local in function:array_index_nospec
58 /* If i >= n, then diff has the high bit set; otherwise clear. */
59 diff = n - 1 - j;
62 * If i >= n so that diff's high bit is set, mask = 0;
65 mask = (diff >> (NBBY*sizeof(diff) - 1)) - 1;
nospec.h 48 size_t j, diff, mask; local in function:array_index_nospec
58 /* If i >= n, then diff has the high bit set; otherwise clear. */
59 diff = n - 1 - j;
62 * If i >= n so that diff's high bit is set, mask = 0;
65 mask = (diff >> (NBBY*sizeof(diff) - 1)) - 1;
  /src/sys/arch/powerpc/fpu/
fpu_compare.c 134 * We define `diff' here to expand these as:
142 #define diff(magnitude) (a->fp_sign ? opposite_cc(magnitude) : (magnitude)) macro
144 cc = diff(FPSCR_FL);
148 cc = diff(FPSCR_FG);
fpu_compare.c 134 * We define `diff' here to expand these as:
142 #define diff(magnitude) (a->fp_sign ? opposite_cc(magnitude) : (magnitude)) macro
144 cc = diff(FPSCR_FL);
148 cc = diff(FPSCR_FG);
fpu_compare.c 134 * We define `diff' here to expand these as:
142 #define diff(magnitude) (a->fp_sign ? opposite_cc(magnitude) : (magnitude)) macro
144 cc = diff(FPSCR_FL);
148 cc = diff(FPSCR_FG);
  /src/sys/arch/sparc/fpu/
fpu_compare.c 125 * We define `diff' here to expand these as:
133 #define diff(magnitude) (a->fp_sign ? opposite_cc(magnitude) : (magnitude)) macro
135 cc = diff(FSR_CC_LT);
139 cc = diff(FSR_CC_GT);
155 cc = diff(FSR_CC_GT);
fpu_compare.c 125 * We define `diff' here to expand these as:
133 #define diff(magnitude) (a->fp_sign ? opposite_cc(magnitude) : (magnitude)) macro
135 cc = diff(FSR_CC_LT);
139 cc = diff(FSR_CC_GT);
155 cc = diff(FSR_CC_GT);
fpu_compare.c 125 * We define `diff' here to expand these as:
133 #define diff(magnitude) (a->fp_sign ? opposite_cc(magnitude) : (magnitude)) macro
135 cc = diff(FSR_CC_LT);
139 cc = diff(FSR_CC_GT);
155 cc = diff(FSR_CC_GT);
  /src/usr.bin/w/
pr_time.c 61 time_t diff; local in function:pr_attime
65 diff = *now - *started;
67 if (diff > SECSPERDAY * DAYSPERWEEK) {
pr_time.c 61 time_t diff; local in function:pr_attime
65 diff = *now - *started;
67 if (diff > SECSPERDAY * DAYSPERWEEK) {
pr_time.c 61 time_t diff; local in function:pr_attime
65 diff = *now - *started;
67 if (diff > SECSPERDAY * DAYSPERWEEK) {
  /src/tests/usr.bin/xlint/lint1/
msg_244.c 17 diff(struct a *a, struct b *b) function in typeref:typename:int
msg_244.c 17 diff(struct a *a, struct b *b) function in typeref:typename:int
msg_244.c 17 diff(struct a *a, struct b *b) function in typeref:typename:int
  /src/sys/arch/macppc/dev/
fancontrol.c 52 int temp, i, speed, diff, step; local in function:fancontrol_adjust_zone
69 diff = temp - z->Tmin;
71 if (diff < 0) diff = 0;
72 diff = (100 * diff) / (z->Tmax - z->Tmin);
77 speed = z->fans[i].min_rpm + diff * step;
78 DPRINTF("diff %d base %d %d sp %d\n",
79 diff, z->fans[i].min_rpm, z->fans[i].max_rpm, speed);

Completed in 39 milliseconds

1 2 3 4 5 6 7 8 91011>>