/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;
|
/src/regress/sys/fs/ffs/ |
estimatecompare | 11 diff=`echo $expectedest $blkest |\ 19 if [ $diff -gt $thresh ]; then
|
/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);
|
/src/sys/dev/raidframe/ |
rf_etimer.h | 40 struct timeval diff; member in struct:RF_Etimer_s 56 RF_TIMEVAL_DIFF(&(_t_).st, &(_t_).et, &(_t_).diff) \ 59 #define RF_ETIMER_VAL_US(_t_) (RF_TIMEVAL_TO_US((_t_).diff)) 60 #define RF_ETIMER_VAL_MS(_t_) (RF_TIMEVAL_TO_US((_t_).diff)/1000)
|
/src/tests/lib/libc/gen/ |
t_randomid.c | 53 uint32_t lowest, n, diff; local in function:ATF_TC_BODY 65 diff = n - last[id]; 67 if (diff <= lowest) { 71 " (diff %5"PRIu32"), " 73 id, last[id], n, diff, lowest); 75 ATF_REQUIRE_MSG(diff >= PERIOD, 76 "diff (%"PRIu32") less than minimum " 77 "period (%d)", diff, PERIOD); 79 lowest = diff;
|
/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;
|
/src/games/backgammon/common_source/ |
odds.c | 85 int a, diff, place, addon, menstuck; local in function:canhit 100 diff = abs(j - i); 104 for (k = 1; k < diff; k++) 105 if (k < 7 && diff - k < 7 && 107 board[i + a * (diff - k)] >= 0)) 108 odds(k, diff - k, addon); 109 if ((j == b || menstuck < 2) && diff < 7) 110 odds(diff, 0, addon);
|
/src/sys/external/bsd/acpica/dist/tests/templates/ |
templates.sh | 36 > diff.log 47 diff -pu -I" \*" $sig.asl $sig.dsl >> diff.log
|
/src/regress/sys/kern/execve/ |
Makefile | 40 ${RP} empty | diff ${OD}/empty - 43 ${RP} ${TD}/nonexistent | diff ${OD}/nonexistent - 46 ${RP} nonexistshell | diff ${OD}/nonexistshell - 49 ${RP} devnullscript | diff ${OD}/devnullscript - 52 ${RP} badinterplen | diff ${OD}/badinterplen - 55 ${RP} goodscript | diff ${OD}/goodscript - 58 ${RP} scriptarg 2>&1 | diff ${OD}/scriptarg - 61 ${RP} scriptarg-nospace 2>&1 | diff ${OD}/scriptarg-nospace - 67 ${RP} goodaout | diff ${OD}/goodaout - 75 ${RP} truncaout | diff ${OD}/truncaout [all...] |
/src/sys/arch/arm/sunxi/ |
sunxi_ccu_display.c | 49 int diff, diff_x2; local in function:sunxi_ccu_lcdxch0_set_rate 54 diff = abs(new_rate - rate); 62 if (diff_x2 < diff) { 83 int diff, diff_x2; local in function:sunxi_ccu_lcdxch0_round_rate 88 diff = abs(try_rate - rate); 93 if (diff_x2 < diff) 114 int rate, diff; local in function:sunxi_ccu_lcdxch1_set_rate 120 diff = abs(rate - new_rate); 121 if (diff < best_diff) { 122 best_diff = diff; [all...] |
/src/lib/libc/nameser/ |
ns_samedomain.c | 61 int diff, escaped; local in function:ns_samedomain 113 diff = (int)(la - lb); 120 if (diff < 2) 128 if (a[diff - 1] != '.') 136 for (i = diff - 1; i > 0; i--) 148 cp = a + diff;
|
/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);
|
/src/sys/external/bsd/drm2/dist/drm/ |
drm_rect.c | 101 int diff; local in function:drm_rect_clip_scaled 103 diff = clip->x1 - dst->x1; 104 if (diff > 0) { 106 drm_rect_width(dst), &diff); 109 dst->x1 += diff; 111 diff = clip->y1 - dst->y1; 112 if (diff > 0) { 114 drm_rect_height(dst), &diff); 117 dst->y1 += diff; 119 diff = dst->x2 - clip->x2 [all...] |
/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);
|
/src/tests/lib/libc/stdlib/ |
t_atexit.sh | 47 diff -Nru exp out \
|
/src/tests/usr.bin/diff/ |
Makefile | 5 TESTSDIR= ${TESTSBASE}/usr.bin/diff
|
/src/usr.bin/fmt/ |
buffer.h | 63 ptrdiff_t diff; local in function:buf_grow 76 diff = nptr - buf->bptr; 77 buf->bptr += diff; 79 buf->ptr += diff;
|
/src/tests/lib/libc/net/ |
t_protoent.sh | 85 diff -u exp out || \
|
t_servent.sh | 90 diff -u exp out || atf_fail "Observed output does not match reference output"
|
/src/tests/usr.bin/xlint/lint1/ |
msg_244.c | 17 diff(struct a *a, struct b *b) function in typeref:typename:int
|
/src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
vmwgfx_blit.c | 76 * Instantiate find diff functions for relevant unsigned integer sizes, 245 * @diff: The struct vmw_diff_cpy closure argument (unused). 250 void vmw_memcpy(struct vmw_diff_cpy *diff, u8 *dest, const u8 *src, size_t n) 259 * @diff: The struct vmw_diff_cpy used to track the modified bounding box. 260 * @diff_offs: The offset from @diff->line_offset where the difference was 263 static void vmw_adjust_rect(struct vmw_diff_cpy *diff, size_t diff_offs) 265 size_t offs = (diff_offs + diff->line_offset) / diff->cpp; 266 struct drm_rect *rect = &diff->rect; 270 rect->y1 = min_t(int, rect->y1, diff->line) 350 struct vmw_diff_cpy *diff; member in struct:vmw_bo_blit_line_data 366 struct vmw_diff_cpy *diff = d->diff; local in function:vmw_bo_cpu_blit_line [all...] |
/src/sys/arch/arm/nxp/ |
imx_ccm_div.c | 91 const int diff = (int)rate - (int)tmp_rate; local in function:imx_ccm_div_set_rate 93 if (diff >= 0 && diff < best_diff) { 95 best_diff = diff; 98 if (abs(diff) < abs(best_diff)) { 100 best_diff = abs(diff);
|
/src/sys/kern/ |
kern_uidinfo.c | 234 chgproccnt(uid_t uid, int diff) 240 proccnt = atomic_add_long_nv(&uip->ui_proccnt, diff); 241 KASSERTMSG(proccnt >= 0, "uid=%d diff=%d proccnt=%ld", 242 uid, diff, proccnt); 251 chglwpcnt(uid_t uid, int diff) 257 lwpcnt = atomic_add_long_nv(&uip->ui_lwpcnt, diff); 258 KASSERTMSG(lwpcnt >= 0, "uid=%d diff=%d lwpcnt=%ld", 259 uid, diff, lwpcnt); 268 chgsemcnt(uid_t uid, int diff) 274 semcnt = atomic_add_long_nv(&uip->ui_semcnt, diff); 284 const long diff = to - *hiwat; local in function:chgsbsize [all...] |
/src/libexec/httpd/testsuite/ |
test-simple | 30 $curdir/html_cmp diff "$out" "$tmpout"
|