Home
last modified time | relevance | path

Searched refs:TOS (Results 1 – 25 of 76) sorted by relevance

1234

/external/iptables/extensions/
Dlibxt_TOS.t3 -j TOS --set-tos 0x1f;=;OK
4 -j TOS --set-tos 0x1f/0x1f;=;OK
5 # maximum TOS is 0x1f (5 bits)
6 # ERROR: should fail: iptables -A PREROUTING -t mangle -j TOS --set-tos 0xff
7 # -j TOS --set-tos 0xff;;FAIL
8 -j TOS --set-tos Minimize-Delay;-j TOS --set-tos 0x10;OK
9 -j TOS --set-tos Maximize-Throughput;-j TOS --set-tos 0x08;OK
10 -j TOS --set-tos Maximize-Reliability;-j TOS --set-tos 0x04;OK
11 -j TOS --set-tos Minimize-Cost;-j TOS --set-tos 0x02;OK
12 -j TOS --set-tos Normal-Service;-j TOS --set-tos 0x00;OK
[all …]
Dlibxt_TOS.man2 "precedence" bits) or the Priority field in the IPv6 header. Note that TOS
3 shares the same bits as DSCP and ECN. The TOS target is only valid in the
8 into the TOS/Priority field. If \fImask\fP is omitted, 0xFF is assumed.
11 You can specify a symbolic name when using the TOS target for IPv4. It implies
12 a mask of 0xFF (see NOTE below). The list of recognized TOS names can be
13 obtained by calling iptables with \fB\-j TOS \-h\fP.
18 Binary AND the TOS value with \fIbits\fP. (Mnemonic for \fB\-\-set\-tos
23 Binary OR the TOS value with \fIbits\fP. (Mnemonic for \fB\-\-set\-tos\fP
27 Binary XOR the TOS value with \fIbits\fP. (Mnemonic for \fB\-\-set\-tos\fP
32 a bug whereby IPv6 TOS mangling does not behave as documented and differs from
[all …]
Dlibxt_tos.man6 Matches packets with the given TOS mark value. If a mask is specified, it is
7 logically ANDed with the TOS mark before the comparison.
11 recognized TOS names can be obtained by calling iptables with \fB\-m tos \-h\fP.
Dlibxt_dscp.man1 This module matches the 6 bit DSCP field within the TOS field in the
2 IP header. DSCP has superseded TOS within the IETF.
Dlibxt_DSCP.man1 This target allows to alter the value of the DSCP bits within the TOS
/external/python/cpython2/Doc/library/
Ddis.rst163 Removes the top-of-stack (TOS) item.
193 Implements ``TOS = +TOS``.
198 Implements ``TOS = -TOS``.
203 Implements ``TOS = not TOS``.
208 Implements ``TOS = `TOS```.
213 Implements ``TOS = ~TOS``.
218 Implements ``TOS = iter(TOS)``.
220 Binary operations remove the top of the stack (TOS) and the second top-most
227 Implements ``TOS = TOS1 ** TOS``.
232 Implements ``TOS = TOS1 * TOS``.
[all …]
/external/python/cpython3/Doc/library/
Ddis.rst324 Removes the top-of-stack (TOS) item.
360 Implements ``TOS = +TOS``.
365 Implements ``TOS = -TOS``.
370 Implements ``TOS = not TOS``.
375 Implements ``TOS = ~TOS``.
380 Implements ``TOS = iter(TOS)``.
385 If ``TOS`` is a :term:`generator iterator` or :term:`coroutine` object
386 it is left as is. Otherwise, implements ``TOS = iter(TOS)``.
393 Binary operations remove the top of the stack (TOS) and the second top-most
399 Implements ``TOS = TOS1 ** TOS``.
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86FloatingPoint.cpp1287 unsigned TOS = getStackEntry(0); in handleTwoArgFP() local
1291 if (Op0 != TOS && Op1 != TOS) { // No operand at TOS? in handleTwoArgFP()
1297 TOS = Op0; in handleTwoArgFP()
1300 TOS = Op1; in handleTwoArgFP()
1308 Op0 = TOS = Dest; in handleTwoArgFP()
1316 Op0 = TOS = Dest; in handleTwoArgFP()
1322 assert((TOS == Op0 || TOS == Op1) && (KillsOp0 || KillsOp1) && in handleTwoArgFP()
1328 bool isForward = TOS == Op0; in handleTwoArgFP()
1329 bool updateST0 = (TOS == Op0 && !KillsOp1) || (TOS == Op1 && !KillsOp0); in handleTwoArgFP()
1346 unsigned NotTOS = (TOS == Op0) ? Op1 : Op0; in handleTwoArgFP()
[all …]
/external/llvm/lib/Target/X86/
DX86FloatingPoint.cpp1239 unsigned TOS = getStackEntry(0); in handleTwoArgFP() local
1243 if (Op0 != TOS && Op1 != TOS) { // No operand at TOS? in handleTwoArgFP()
1249 TOS = Op0; in handleTwoArgFP()
1252 TOS = Op1; in handleTwoArgFP()
1260 Op0 = TOS = Dest; in handleTwoArgFP()
1268 Op0 = TOS = Dest; in handleTwoArgFP()
1274 assert((TOS == Op0 || TOS == Op1) && (KillsOp0 || KillsOp1) && in handleTwoArgFP()
1280 bool isForward = TOS == Op0; in handleTwoArgFP()
1281 bool updateST0 = (TOS == Op0 && !KillsOp1) || (TOS == Op1 && !KillsOp0); in handleTwoArgFP()
1298 unsigned NotTOS = (TOS == Op0) ? Op1 : Op0; in handleTwoArgFP()
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86FloatingPoint.cpp1170 unsigned TOS = getStackEntry(0); in handleTwoArgFP() local
1174 if (Op0 != TOS && Op1 != TOS) { // No operand at TOS? in handleTwoArgFP()
1180 TOS = Op0; in handleTwoArgFP()
1183 TOS = Op1; in handleTwoArgFP()
1191 Op0 = TOS = Dest; in handleTwoArgFP()
1199 Op0 = TOS = Dest; in handleTwoArgFP()
1205 assert((TOS == Op0 || TOS == Op1) && (KillsOp0 || KillsOp1) && in handleTwoArgFP()
1211 bool isForward = TOS == Op0; in handleTwoArgFP()
1212 bool updateST0 = (TOS == Op0 && !KillsOp1) || (TOS == Op1 && !KillsOp0); in handleTwoArgFP()
1230 unsigned NotTOS = (TOS == Op0) ? Op1 : Op0; in handleTwoArgFP()
[all …]
/external/iproute2/examples/diffserv/
Dregression-testing17 generate TOS values 0x0,0x10,0xbb each with IP addresses
41 AF41(TOS=0x88) AF42(0x90) AF43(0x98) and BE (0x0)
90 AF41(TOS=0x88) AF42(0x90) AF43(0x98) and BE (0x0)
/external/swiftshader/third_party/LLVM/projects/sample/autoconf/
Dconfig.guess377 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
380 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
383 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
386 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
389 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
392 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
/external/libunwind/aux/
Dconfig.guess366 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
369 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
372 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
375 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
378 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
381 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
/external/libogg/
Dconfig.guess376 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
379 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
382 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
385 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
388 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
391 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
/external/cmockery/cmockery_0_1_2/
Dconfig.guess372 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
375 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
378 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
381 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
384 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
387 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
/external/libusb-compat/
Dconfig.guess394 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
397 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
400 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
403 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
406 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
409 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
/external/libxkbcommon/xkbcommon/build-aux/
Dconfig.guess417 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
420 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
423 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
426 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
429 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
432 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
/external/stressapptest/
Dconfig.guess377 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
380 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
383 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
386 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
389 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
392 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
/external/iperf3/config/
Dconfig.guess417 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
420 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
423 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
426 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
429 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
432 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
/external/swiftshader/third_party/llvm-7.0/llvm/cmake/
Dconfig.guess400 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
403 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
406 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
409 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
412 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
415 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
/external/libnetfilter_conntrack/
Dconfig.guess397 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
400 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
403 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
406 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
409 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
412 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
/external/libnfnetlink/build-aux/
Dconfig.guess398 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
401 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
404 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
407 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
410 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
413 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
/external/libcap-ng/libcap-ng-0.7/
Dconfig.guess400 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
403 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
406 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
409 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
412 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
415 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
/external/llvm/cmake/
Dconfig.guess404 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
407 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
410 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
413 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
416 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
419 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
/external/swiftshader/third_party/LLVM/autoconf/
Dconfig.guess400 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
403 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
406 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
409 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
412 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
415 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)

1234