| /src/external/gpl3/gdb.old/dist/sim/common/ |
| sim-endian.c | 36 #define _SWAP_1(SET,RAW) SET (RAW) 40 #define _SWAP_2(SET,RAW) SET htons (RAW) 44 #define _SWAP_2(SET,RAW) SET (((RAW) >> 8) | ((RAW) << 8)) 48 #define _SWAP_4(SET,RAW) SET htonl (RAW) 52 #define _SWAP_4(SET,RAW) SET (((RAW) << 24) | (((RAW) & 0xff00) << 8) | (((RAW) & 0xff0000) >> 8) | ((RAW) >> 24) [all...] |
| /src/external/gpl3/gdb/dist/sim/common/ |
| sim-endian.c | 36 #define _SWAP_1(SET,RAW) SET (RAW) 40 #define _SWAP_2(SET,RAW) SET htons (RAW) 44 #define _SWAP_2(SET,RAW) SET (((RAW) >> 8) | ((RAW) << 8)) 48 #define _SWAP_4(SET,RAW) SET htonl (RAW) 52 #define _SWAP_4(SET,RAW) SET (((RAW) << 24) | (((RAW) & 0xff00) << 8) | (((RAW) & 0xff0000) >> 8) | ((RAW) >> 24) [all...] |
| /src/sys/arch/sparc/stand/binstall/ |
| binstall.sh | 117 (*/*) RAW="${1%/*}/r${1##*/}";; 118 (*) RAW="r$1";; 120 [ -c "$RAW" ] || continue 121 echo -n "$RAW"
|
| /src/external/gpl3/gcc/dist/gcc/config/aarch64/ |
| fractional-cost.h | 60 enum raw { RAW }; enum in class:fractional_cost 61 constexpr fractional_cost (uint64_t value, raw) : m_value (value) {} 86 return { sum >= m_value ? sum : ~uint64_t (0), RAW }; 100 return { diff <= m_value ? diff : 0, RAW }; 117 return { m_value <= max / other ? m_value * other : max, RAW };
|
| /src/external/gpl3/gcc.old/dist/gcc/config/aarch64/ |
| fractional-cost.h | 60 enum raw { RAW }; enum in class:fractional_cost 61 constexpr fractional_cost (uint64_t value, raw) : m_value (value) {} 86 return { sum >= m_value ? sum : ~uint64_t (0), RAW }; 100 return { diff <= m_value ? diff : 0, RAW }; 117 return { m_value <= max / other ? m_value * other : max, RAW };
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/ |
| BitcodeWriter.h | 36 StringTableBuilder StrtabBuilder{StringTableBuilder::RAW}; 108 /// Write the specified module to the specified raw output stream. 136 /// file) to the given raw output stream, where it will be written in a new 146 /// Write the specified module summary index to the given raw output stream,
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/MC/ |
| StringTableBuilder.h | 32 RAW,
|
| /src/external/apache2/llvm/dist/llvm/lib/MC/ |
| StringTableBuilder.cpp | 32 case RAW: 152 size_t Pos = Size - S.size() - (K != RAW); 163 if (K != RAW) 209 Size = Start + S.size() + (K != RAW);
|
| /src/external/bsd/ntp/dist/scripts/update-leap/ |
| update-leap.sh | 266 local RAW="`sed $1 -e'/^\\([0-9]\\|#[\$@h]\)/!d' -e'/^#[\$@h]/!s/#.*\$//g'`" 270 local DATA="`echo \"$RAW\" | sed -e'/^#h/d' -e's/^#[\$@]//g' | tr -d '[:space:]'`" 281 local FSHA="`echo \"$RAW\" | sed -e'/^#h/!d' -e's/^#h//' -e's/[ ] */ 0x/g'`" 298 EXPIRES="`echo \"$RAW\" | sed -e'/^#@/!d' -e's/^#@//' | tr -d '[:space:]'`"
|
| /src/usr.sbin/lpr/lpd/ |
| ttcompat.c | 91 SET(flags, RAW); 105 if (ISSET(flags, RAW)) { 137 if (ISSET(flags, RAW|LITOUT|PASS8)) { 140 if (!ISSET(flags, RAW|PASS8)) 144 if (!ISSET(flags, RAW|LITOUT))
|
| /src/sys/compat/common/ |
| tty_43.c | 315 SET(flags, RAW); 318 if (ISSET(flags, RAW)) 382 if (ISSET(flags, RAW)) { 414 if (ISSET(flags, RAW|LITOUT|PASS8)) { 417 if (!ISSET(flags, RAW|PASS8)) 421 if (!ISSET(flags, RAW|LITOUT)) 482 if (ISSET(flags, RAW|LITOUT|PASS8)) { 485 if (!ISSET(flags, RAW|PASS8)) 489 if (!ISSET(flags, RAW|LITOUT))
|
| /src/external/gpl3/binutils/dist/zlib/examples/ |
| zran.c | 11 1.3 18 Feb 2023 Permit raw deflate streams as well as zlib and gzip 20 // for random access of a compressed file. A file containing a raw deflate 32 // input raw deflate stream a block at a time, and at the end of each block 127 #define RAW -15 139 int mode = 0; // mode: RAW, ZLIB, or GZIP (0 => not set yet) 157 // At the start of the input -- determine the type. Assume raw 160 // after a stored block are always zeros, so a raw stream won't 162 mode = strm.avail_in == 0 ? RAW : // empty -- will fail 165 /* else */ RAW; 179 if (mode == RAW && index == NULL [all...] |
| /src/external/gpl3/gdb/dist/zlib/examples/ |
| zran.c | 11 1.3 18 Feb 2023 Permit raw deflate streams as well as zlib and gzip 20 // for random access of a compressed file. A file containing a raw deflate 32 // input raw deflate stream a block at a time, and at the end of each block 127 #define RAW -15 139 int mode = 0; // mode: RAW, ZLIB, or GZIP (0 => not set yet) 157 // At the start of the input -- determine the type. Assume raw 160 // after a stored block are always zeros, so a raw stream won't 162 mode = strm.avail_in == 0 ? RAW : // empty -- will fail 165 /* else */ RAW; 179 if (mode == RAW && index == NULL [all...] |
| /src/common/dist/zlib/examples/ |
| zran.c | 11 1.3 18 Feb 2023 Permit raw deflate streams as well as zlib and gzip 27 // for random access of a compressed file. A file containing a raw deflate 39 // input raw deflate stream a block at a time, and at the end of each block 124 #define RAW -15 151 int mode = 0; // mode: RAW, ZLIB, or GZIP (0 => not set yet) 168 // At the start of the input -- determine the type. Assume raw 171 // after a stored block are always zeros, so a raw stream won't 173 mode = index->strm.avail_in == 0 ? RAW : // will fail 176 /* else */ RAW; 193 if (mode == RAW && index->have == 0 [all...] |
| /src/sys/sys/ |
| ioctl_compat.h | 102 #define RAW 0x00000020 /* no i/o processing */
|
| /src/lib/librpcsvc/ |
| rex.x | 107 const RAW = 0x00000020; /* no i/o processing */
|
| /src/libexec/getty/ |
| subr.c | 397 if (ISSET(flags, RAW)) { 462 if (ISSET(flags, RAW|LITOUT|PASS8)) { 465 if (!ISSET(flags, RAW|PASS8)) 469 if (!ISSET(flags, RAW|LITOUT))
|
| /src/games/warp/ |
| term.h | 205 #define raw() ((bizarre=1),_tty.c_lflag &=~ISIG,_tty.c_cc[VMIN] = 1,tcsetattr(_tty_ch,TCSAFLUSH,&_tty)) macro 219 #define raw() ((bizarre=1),_tty.sg_flags|=RAW, stty(_tty_ch,&_tty)) macro 220 #define noraw() ((bizarre=1),_tty.sg_flags&=~RAW,stty(_tty_ch,&_tty))
|
| /src/usr.sbin/sliplogin/ |
| sliplogin.c | 312 tty.sg_flags = RAW | ANYP;
|
| /src/usr.bin/resize/ |
| resize.c | 470 sg.sg_flags |= RAW;
|
| /src/external/bsd/file/dist/python/ |
| magic.py | 36 MAGIC_RAW = RAW = 256
|
| /src/games/larn/ |
| io.c | 111 #define CBREAK RAW /* V7 has no CBREAK */
|
| /src/external/apache2/llvm/dist/llvm/lib/Object/ |
| IRSymtab.cpp | 376 StringTableBuilder StrtabBuilder(StringTableBuilder::RAW);
|
| /src/external/bsd/ntp/dist/clockstuff/ |
| chutest.c | 196 ttyb.sg_flags = EVENP|ODDP|RAW; 200 error("ioctl(TIOCSETP, raw)", "", ""); 238 * process_raw - process characters in raw mode 277 * raw_filter - run the line discipline filter over raw data
|
| /src/external/lgpl3/gmp/dist/mpn/sparc64/ultrasparc1234/ |
| mul_1.asm | 56 C 5. Ideally, we should schedule the f2/f3 and f4/f5 RAW further apart, and 57 C the i00,i16,i32,i48 RAW less apart. The latter apart-scheduling should
|