/src/sys/arch/riscv/riscv/ |
kobj_machdep.c | 219 // XXXNH why is this without middle? 233 const uint32_t middle = 1U << (lobits - 1); local in function:kobj_reloc 235 addend += addr + middle;
|
/src/lib/libm/arch/vax/ |
n_argred.S | 159 * middle: n * pi/2 , n = 0, 1, 2, ..., 29 160 * middle[n] , 167 * middle[n] := (n * pi/2 - leading[n]) rounded, 168 * trailing[n] := (( n * pi/2 - leading[n]) - middle[n]) rounded . 202 middle: label 203 .double 0d+0.00000000000000000000e+00 # 0 * pi/2 middle 204 .double 0d+5.72118872610983179676e-18 # 1 * pi/2 middle 205 .double 0d+1.14423774522196635935e-17 # 2 * pi/2 middle 206 .double 0d-3.83475850529283316309e-17 # 3 * pi/2 middle 207 .double 0d+2.28847549044393271871e-17 # 4 * pi/2 middle [all...] |
/src/sys/dev/pckbport/ |
alps.c | 825 int left, middle, right; local in function:pms_alps_decode_trackstick_packet_v7 840 middle = (psc->packet[1] & 0x04) >> 2; 843 buttons = (u_int)((left << 0) | (middle << 1) | (right << 2)); 958 buttons |= button << 1; /* Middle button */ 966 buttons |= button << 1; /* Middle button */ 1035 u_int left, middle, right; local in function:pms_alps_decode_touchpad_packet_v2 1046 middle = (psc->packet[3] & 0x04) >> 2; 1063 buttons |= (middle | forward | back) << 1;
|
/src/games/rogue/ |
level.c | 431 short i, middle, t; local in function:draw_simple_passage 438 middle = get_rand(col1+1, col2-1); 439 for (i = col1+1; i != middle; i++) { 443 dungeon[i][middle] = TUNNEL; 445 for (i = middle; i != col2; i++) { 453 middle = get_rand(row1+1, row2-1); 454 for (i = row1+1; i != middle; i++) { 458 dungeon[middle][i] = TUNNEL; 460 for (i = middle; i != row2; i++) {
|
/src/sys/ufs/ext2fs/ |
ext2fs_htree.c | 716 struct ext2fs_htree_entry *entp, *start, *end, *middle, *found; local in function:ext2fs_htree_find_leaf 767 middle = start + (end - start) / 2; 768 if (ext2fs_htree_get_hash(middle) > hash_major) 769 end = middle - 1; 771 start = middle + 1;
|
/src/lib/libintl/ |
gettext.c | 851 int top, bottom, middle, omiddle; local in function:lookup_bsearch 862 middle = (top + bottom) / 2; 864 if (omiddle == middle) 866 if ((size_t)middle >= mohandle->mo.mo_nstring) 869 n = strcmp(msgid, mohandle->mo.mo_otable[middle].off); 872 *rlen = mohandle->mo.mo_ttable[middle].len; 873 return (const char *)mohandle->mo.mo_ttable[middle].off; 876 bottom = middle; 878 top = middle; 879 omiddle = middle; [all...] |
/src/usr.bin/make/ |
dir.c | 772 const char *prefix, *middle, *piece, *middle_end, *suffix; local in function:DirExpandCurly 775 /* Split the word into prefix, '{', middle, '}' and suffix. */ 777 middle = brace + 1; 778 middle_end = closing_brace(middle); 780 Error("Unterminated {} clause \"%s\"", middle); 789 /* Split the middle into pieces, separated by commas. */ 791 piece = middle;
|
/src/usr.bin/make/unit-tests/ |
directive-include-guard.mk | 177 # In general, a variable name can contain a '!' in the middle, as that 181 CASES+= variable-name-exclamation-middle 182 LINES.variable-name-exclamation-middle= \ 183 '.ifndef VARIABLE_NAME!MIDDLE' \ 184 'VARIABLE_NAME!MIDDLE=' \ 186 # expect: Parse_PushInput: variable-name-exclamation-middle.tmp:1 187 # expect: Parse_PushInput: variable-name-exclamation-middle.tmp:1 570 # the beginning or in the middle of a target name. Escaping it as '${:U!}'
|