HomeSort by relevance Sort by last modified time
    Searched refs:And (Results 1 - 25 of 715) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/
Video.asl 10 ; This program and the accompanying materials are licensed and made available under
11 ; the terms and conditions of the BSD License that accompanies this distribution.
36 If(LEqual(And(DIDX,0x0F00),0x400))
IgdOSBCB.ASL 5 This program and the accompanying materials are licensed and made available under
6 the terms and conditions of the BSD License that accompanies this distribution.
101 Store(And(PARM, 0x0F), ITVF)
102 Store(ShiftRight(And(PARM, 0xF0), 4), ITVM)
119 If(And(0x80000000,Local0))
121 And(CLID, 0x0000000F, CLID)
149 And(PARM, 0xFF, IBTT) // Save the boot display to NVS
167 And(PARM, 0xFF, IPSC)
172 If(And(ShiftRight(PARM, 8), 0xFF))
    [all...]
IgdOMOBF.ASL 5 This program and the accompanying materials are licensed and made available under
6 the terms and conditions of the BSD License that accompanies this distribution.
23 i.e. hotkeys and other system interrupts.
47 ;* notifications and video extensions.
88 ;* previous command. Else, ignore the event and exit the parent
136 ;* References: PDRD and PSTS methods. OSYS (OS version)
143 // If any of these cases is not met, skip this event and return failure.
185 ;* Usage: This method must be called when a hotkey event occurs and the
191 ;* CEVT and TIDX are indirect outputs.
    [all...]
98_LINK.ASL 10 ; This program and the accompanying materials are licensed and made available under
11 ; the terms and conditions of the BSD License that accompanies this distribution.
36 // 3 = If COMx Port Enabled and IRQ = 3
37 // 4 = If COMx Port Enabled and IRQ = 4
38 // 5 = If LPT Port Enabled and IRQ = 5
40 // 7 = If LPT Port Enabled and IRQ = 7
42 // 14 = Primary IDE (If populated and in Compatibility Mode)
43 // 15 = Secondary IDE (If populated and in Compatibility Mode)
86 ShiftLeft(1,And(PARC,0x0F),IRQ0)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mri/
label.s 3 ! And another comment
5 LABEL DC.L SYMBOL ; And yet another comment
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/AcpiTables/Cpu0Cst/
Cpu0Cst.asl 6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
33 // If CMP is supported, and OSPM is not capable of independent C1, P, T state
40 If(LAnd(And(CFGD,0x01000000), LNot(And(PDC0,0x10))))
55 // If MWAIT extensions is supported and OSPM is capable of performing
62 If(LAnd(And(CFGD, 0x200000), And(PDC0,0x200)))
67 If(And(CFGD,0x200))
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/matchers/
And.java 13 public class And implements ArgumentMatcher<Object>, Serializable {
17 public And(ArgumentMatcher<?> m1, ArgumentMatcher<?> m2) {
27 return "and("+m1+", "+m2+")";
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/ValleyView2Soc/CPU/PowerManagement/AcpiTables/Ssdt/
CpuPm.asl 8 This program and the accompanying materials are licensed and made available under
9 the terms and conditions of the BSD License that accompanies this distribution.
25 and may only be used or copied in accordance with the terms of the license.
27 subject to change without notice, and should not be construed as a commitment
36 WARNING: You are authorized and licensed to install and use this BIOS code
41 (1) Is capable of seamlessly and automatically transitioning among
44 preference, processor performance demand, and thermal conditions; and
    [all...]
Cpu0Tst.asl 9 This program and the accompanying materials are licensed and made available under
10 the terms and conditions of the BSD License that accompanies this distribution.
28 and may only be used or copied in accordance with the terms of the license.
30 subject to change without notice, and should not be construed as a commitment
39 WARNING: You are authorized and licensed to install and use this BIOS code
44 (1) Is capable of seamlessly and automatically transitioning among
47 preference, processor performance demand, and thermal conditions; and
    [all...]
  /external/clang/lib/Analysis/
ThreadSafetyLogical.cpp 18 // Implication. We implement De Morgan's Laws by maintaining LNeg and RNeg
19 // to keep track of whether LHS and RHS are negated.
23 // Calculates the logical AND implication operator.
45 case LExpr::And:
47 // C => A & B [if] C => A and C => B
50 return RNeg ? RightOrOperator(cast<And>(RHS))
51 : RightAndOperator(cast<And>(RHS));
56 // C => !(A | B) [if] C => !A & !B [===] C => !A and C => !B
70 case LExpr::And:
74 // !(A & B) => C [if] !A | !B => C [===] !A => C and !B =>
    [all...]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/AcpiTables/Cpu0Tst/
Cpu0Tst.asl 6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
52 If(And(PDC0, 0x0004))
95 If(And(PDC0, 0x0004))
107 If(LAnd(And(CFGD, 0x1000000), LNot(And(PDC0, 4))))
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/AcpiTables/Dsdt/
PciIrq.asi 5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
42 If(And(PIRA, 0x80))
66 If (And(PIRA, 0x80))
75 ShiftLeft(Local0,And(PIRA,0x0F),IRQW) // Save in buffer
90 And(Local0, 0x7F,Local0)
109 If(And(PIRB, 0x80))
132 If (And(PIRB, 0x80))
141 ShiftLeft(Local0,And(PIRB,0x0F),IRQW) // Save in buffer
    [all...]
  /external/clang/include/clang/Basic/
OperatorPrecedence.h 11 /// \brief Defines and computes precedence levels for binary/ternary operators.
36 And = 8, // &
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyLogical.h 26 And,
69 class And : public BinOp {
71 And(LExpr *LHS, LExpr *RHS) : BinOp(LHS, RHS, LExpr::And) {}
73 static bool classof(const LExpr *E) { return E->kind() == LExpr::And; }
  /art/test/427-bitwise/src/
Main.java 13 * See the License for the specific language governing permissions and
45 expectEquals(1, $opt$And(5, 3));
46 expectEquals(0, $opt$And(0, 0));
47 expectEquals(0, $opt$And(0, 3));
48 expectEquals(0, $opt$And(3, 0));
49 expectEquals(1, $opt$And(1, -3));
50 expectEquals(-12, $opt$And(-12, -3));
66 expectEquals(1L, $opt$And(5L, 3L));
67 expectEquals(0L, $opt$And(0L, 0L));
68 expectEquals(0L, $opt$And(0L, 3L))
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/ARM/Juno/AcpiTables/
AcpiSsdtRootPci.asl 5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
21 inputs on the interrupt controller and are not configurable. In this case,
23 the value zero, and the Source Index field contains the global system
145 If(LNotEqual(And(SUPP, 0x16), 0x16)) {
146 And(CTRL,0x1E,CTRL) // Mask bit 0 (and undefined bits)
152 And(CTRL,0x1D,CTRL)
155 If(LNot(And(CDW1,1))) { // Query flag clear?
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/AcpiTables/
AcpiSsdtRootPci.asl 5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
21 inputs on the interrupt controller and are not configurable. In this case,
23 the value zero, and the Source Index field contains the global system
145 If(LNotEqual(And(SUPP, 0x16), 0x16)) {
146 And(CTRL,0x1E,CTRL) // Mask bit 0 (and undefined bits)
152 And(CTRL,0x1D,CTRL)
155 If(LNot(And(CDW1,1))) { // Query flag clear?
    [all...]
  /external/ImageMagick/MagickWand/tests/
script-token-test-data.txt 13 And\\\ \''even '\'\""more \""complex
  /external/easymock/src/org/easymock/internal/matchers/
And.java 13 * See the License for the specific language governing permissions and
24 public class And implements IArgumentMatcher, Serializable {
30 public And(List<IArgumentMatcher> matchers) {
44 buffer.append("and(");
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRUnwantedTokenException.h 10 // Redistribution and use in source and binary forms, with or without
14 // notice, this list of conditions and the following disclaimer.
16 // notice, this list of conditions and the following disclaimer in the
17 // documentation and/or other materials provided with the distribution.
21 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 - (id) initWithStream:(id<ANTLRIntStream>)anInput And:(NSInteger)expected;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRUnwantedTokenException.h 10 // Redistribution and use in source and binary forms, with or without
14 // notice, this list of conditions and the following disclaimer.
16 // notice, this list of conditions and the following disclaimer in the
17 // documentation and/or other materials provided with the distribution.
21 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 - (id) initWithStream:(id<ANTLRIntStream>)anInput And:(NSInteger)expected;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRUnwantedTokenException.h 10 // Redistribution and use in source and binary forms, with or without
14 // notice, this list of conditions and the following disclaimer.
16 // notice, this list of conditions and the following disclaimer in the
17 // documentation and/or other materials provided with the distribution.
21 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 - (id) initWithStream:(id<ANTLRIntStream>)anInput And:(NSInteger)expected;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRUnwantedTokenException.h 10 // Redistribution and use in source and binary forms, with or without
14 // notice, this list of conditions and the following disclaimer.
16 // notice, this list of conditions and the following disclaimer in the
17 // documentation and/or other materials provided with the distribution.
21 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 - (id) initWithStream:(id<ANTLRIntStream>)anInput And:(NSInteger)expected;
  /prebuilts/go/darwin-x86/test/
bombad.go 15 //? And here. // ERROR "BOM"
16 /*? And here.*/ // ERROR "BOM"
17 println("hi? there") // and here // ERROR "BOM"
  /prebuilts/go/linux-x86/test/
bombad.go 15 //? And here. // ERROR "BOM"
16 /*? And here.*/ // ERROR "BOM"
17 println("hi? there") // and here // ERROR "BOM"

Completed in 1078 milliseconds

1 2 3 4 5 6 7 8 91011>>