HomeSort by relevance Sort by last modified time
    Searched refs:Or (Results 26 - 50 of 97) sorted by null

12 3 4

  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 3 * or more contributor license agreements. See the NOTICE file
12 * Unless required by applicable law or agreed to in writing, software
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
56 import org.apache.xpath.operations.Or;
80 * @param errorHandler Error listener where messages will be sent, or null
111 * @throws TransformerException if there is a syntax or other error.
126 expr = or(opPos); break;
207 * @throws TransformerException if there is a syntax or other error.
229 * @throws TransformerException if syntax or other error occurs
251 protected Expression or(int opPos) throws TransformerException method in class:Compiler
    [all...]
  /external/llvm/lib/MC/
MCExpr.cpp 118 case MCBinaryExpr::Or: OS << '|'; break;
405 // We can't represent the addition or subtraction of two symbols.
548 case MCBinaryExpr::Or: Result = LHS | RHS; break;
  /external/protobuf/editors/
proto.vim 5 " Redistribution and use in source and binary forms, with or without
13 " in the documentation and/or other materials provided with the
16 " contributors may be used to endorse or promote products derived from
20 " "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 " OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 " SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 " LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 " DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 " THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TOR
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 13 // returning a constant ("and i32 %x, 0" -> "0") or an already existing value
51 /// getFalse - For a boolean type, or a vector of boolean type, return false, or
57 "Expected i1 type or a vector of i1!");
61 /// getTrue - For a boolean type, or a vector of boolean type, return true, or
67 "Expected i1 type or a vector of i1!");
95 /// Returns the simplified value, or null if no simplification was performed.
112 // They do! Return "L op' R" if it simplifies or is already available.
136 // They do! Return "L op' R" if it simplifies or is already available
    [all...]
ValueTracking.cpp 35 /// getBitWidth - Returns the bitwidth of the given scalar or pointer type (if
45 /// known to be either zero or one and return them in the KnownZero/KnownOne
67 && "Not integer or pointer type!");
157 // If either the LHS or the RHS are Zero, the result is zero.
171 case Instruction::Or: {
192 // Output known-0 bits are known if clear or set in both the LHS & RHS.
318 // If the sign bit of the input is known set or clear, then we know the
480 // If the first operand is non-negative or has all low bits zero, then
524 // Since the result is less than or equal to either operand, any leading
608 Opcode == Instruction::Or ||
    [all...]
ConstantFolding.cpp 118 // conversion here, which depends on whether the input or output has
244 // If this element is zero or undefined, we can just return since *CurPtr is
453 // Replace load with immediate integer if the result is an integer or fp
482 // is all undef or zero, we know what it loads.
520 // Fold (lshr (or X, Y), 32) -> (lshr [X/Y], 32) if one doesn't contribute
745 // If the incoming value is not a constant, or is a different constant to
753 // If we reach here, all incoming values are the same constant or undef.
    [all...]
BasicAliasAnalysis.cpp 73 // If this is an argument that corresponds to a byval or noalias argument,
101 /// getObjectSize - Return the size of the object specified by V, or
172 /// through any sign or zero extends. The incoming Value is known to have
173 /// IntegerType and it may already be sign or zero extended.
193 case Instruction::Or:
221 // bits of a sign or zero extended value - just scales and offsets. The
267 // See if this is a bitcast or GEP.
457 // AliasCache rarely has more than 1 or 2 elements,
496 /// global) or not.
687 // the tail call cannot access or modify the local stack
    [all...]
LazyValueInfo.cpp 74 /// the constant if this is a 'constant' or 'notconstant' value.
521 // cache needs updating, i.e. if we have solve a new value or not.
779 case Instruction::Or:
829 // We know that V has the RHS constant if this is a true SETEQ or
    [all...]
  /external/llvm/include/llvm/ADT/
APInt.h 49 /// "unsigned", "unsigned long" or "uint64_t", but also allows non-byte-width
50 /// integer sizes and large integer value types such as 3-bits, 15-bits, or more
59 /// SignExtend, or ZeroExtend operations.
67 /// results regardless of whether the values are interpreted as signed or
164 /// @param radix 2, 8, 10, 16, or 36
237 /// Note that bigVal.size() can be smaller or larger than the corresponding
254 /// radix is encountered, or the end of the string. Acceptable radix values
285 /// Profile - Used to insert APInt objects, or objects that contain APInt
313 /// This checks to see if the value has all bits of the APInt are set or not.
596 /// Performs a bitwise OR operation on this APInt and RHS. The result i
    [all...]
  /external/llvm/include/llvm/Support/
PatternMatch.h 25 // also be useful for static analysis tools or code generators.
110 /// m_APInt - Match a ConstantInt or splatted ConstantVector, binding the
181 /// m_One() - Match an integer 1 or a vector with all elements equal to 1.
189 /// m_AllOnes() - Match an integer or vector with all bits set to true.
197 /// m_SignBit() - Match an integer or vector with only the sign bit(s) set.
205 /// m_Power2() - Match an integer or vector power of 2.
369 inline BinaryOp_match<LHS, RHS, Instruction::Or>
371 return BinaryOp_match<LHS, RHS, Instruction::Or>(L, R);
422 /// m_Shr - Matches LShr or AShr.
429 /// m_LogicalShift - Matches LShr or Shl
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 74 /// %C = or %A, %B
78 /// %D = or %A, %C
89 case Instruction::Or:
109 case Instruction::Or:
127 // If this is a non-volatile load or a cast from the same type,
353 // can be adjusted to fit the min/max idiom. We may move or edit ICI
464 // This shift results in either -1 or 0.
467 // Check if we can express the operation with a single or.
528 // If the value is a non-instruction value like a constant or argument, it
552 /// FoldSPFofSPF - We have an SPF (e.g. a min or max) of an SPF of the form
    [all...]
InstructionCombining.cpp 26 // shifts are performed first, then or's, then and's, then xor's.
87 /// type for example, or from a smaller to a larger illegal type.
151 /// operators which are associative or commutative:
319 // And distributes over Or and Xor.
323 case Instruction::Or:
338 case Instruction::Or:
339 // Or distributes over And.
363 /// out common terms (eg "(A*B)+(A*C)" -> "A*(B+C)") or expanding out if this
365 /// a win). Returns the simplified value, or null if it didn't simplify.
385 // Does the instruction have the form "(A op' B) op (A op' D)" or, in th
    [all...]
  /ndk/build/core/
setup-toolchain.mk 9 # Unless required by applicable law or agreed to in writing, software
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
44 $(call __ndk_info,Or change your NDK_TOOLCHAIN definition.)
  /external/opencv/cxcore/src/
cxlogic.cpp 3 // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
5 // By downloading, copying, installing or using the software you agree to this license.
7 // copy or use the software.
16 // Redistribution and use in source and binary forms, with or without modification,
24 // and/or other materials provided with the distribution.
26 // * The name of Intel Corporation may not be used to endorse or promote products
30 // any express or implied warranties, including, but not limited to, the implied
32 // In no event shall the Intel Corporation or contributors be liable for any direct,
33 // indirect, incidental, special, exemplary, or consequential damages
34 // (including, but not limited to, procurement of substitute goods or services
    [all...]
  /frameworks/base/media/tests/contents/media_api/music/
test_amr_ietf.amr 154 H?B?<J{W??????mN7?Sh??N??????v?<O&q?c??3?-?e?V??q?u??O?y??<T?g??H!??+??b?_??9fFD????(p<??_?????2? ?,??}??K23^?gt?] ?<T?t?X?!??o,Or???nE?t? Z?x`<??#???!??J?gS???????s?]`???<Rwa??
175 ??w??.g^?e????8???<(7?1??l#?,???m`G?vYrL?~??$?1??<F_?Y?K?6?)??M|R2E/y?"??-R`<F?W)???\????D0?Or???a ?,`<Fm???"{?[|m??@????>7??<DD?????^L??#?>FI? ?5"p<r??A#D??_?'v?o?&9pS? 8?L|???<D^'=??4??????@???r>?e?!????@?<ryj??? ??i?/?D? ???`?z1??={r@<G"m?[?~?/?^I?(Z 9?#n? ?h-??<H???B??]?nv?g{????? ?a??`<?mm?????tjo|?8S5?ooC? ?W?<h[t??(??J??UJ???8K????|A?<?)aG???? ?K??? ??b??7???_??<?qwH??0r?zCmu?????w???AD<#?`l?JzOv2@?~??T??|???jM??<zdW)?????;?`he??f??5-?q???0<"L> ?? 3?Q? ???G?\q?B,b@?<8>9I?2???m?r(???L?z ??cC_0<?ky?I???????&?? ???p<(??!???#?/???_?W\v@???`Xyy??<?,A?E????=?h?ª????0%??E??P<.?z&?`??*KX/%??3?d?FO?HTKp<(?l&K?W?W?????%ƒf??\???1?<D8 ??{?~-?f??w,/ x??+?@<?rJ[?Dlg??????H?v<?=r[+???<?e?vK????¯?6 ]W???{?t?P<?_?\??$??^?U1?<?PX?A??X?d:"?<RD ?m4???[M??:x?? ?lL<?kcM)"?`<Hs??j??2??????@a>?xc?|????M <jT5!????4?{???4 ? <W( ?@<jp)!???p??G*?L???#??E2?m??x <F?I????|?5?????`??6}???QY?<Fs?Y??i?E??a?jk[?9j?h?@????<0?????????GL\?A(?!??<?#???;??/@m?8^??G8????p<?!^?
420 ?<?????8?S3???OR????Z???<~wxM;6?????9?}?"t?y3????e?<?{???=+T???%??.Q"4.x????`<??/??:Dl?4?6??-??k?Ui5?<??G????Q"*???e??_?i.?g?F3/%?<l?/?{?Dz???????3V8=?6????<?,????+U????gG" ?vt?!\???^?<Zmw?????z??????Y??P????_?<2lG??g&Jen?uV?lE@??dpI?<?]=HH???o?X?.????c??}?1??<?_???A??)??y???@=???B=|0<5?????|??|q???
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 303 // If this global has internal linkage, or if it has a use, then it must be
465 // Unless the interpreter was explicitly selected or the JIT is not linked,
687 case Instruction::Or:
705 case Instruction::Or: GV.IntVal = LHS.IntVal | RHS.IntVal; break;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 61 /// multiple predecessors and multiple successors. If one or more of the
287 /// integer or a block address, but an undef is always accepted.
288 /// Returns null if Val is null or not an appropriate constant.
304 /// if we can infer that the value is a known ConstantInt/BlockAddress or undef
332 // If V is a non-instruction value, or an instruction in a different block,
386 if (I->getOpcode() == Instruction::Or ||
397 if (I->getOpcode() == Instruction::Or)
470 // We can do this simplification if any comparisons fold to true or false.
657 // Look to see if the terminator is a conditional branch, switch or indirect
736 // For predecessor edge, determine if the comparison is true or fals
    [all...]
SCCP.cpp 78 /// the constant if this is a 'constant' or 'forcedconstant' value.
501 // operand made a transition, or the instruction is newly executable. Change
592 if (CI == 0) { // Overdefined or undefined condition?
680 // operand made a transition, or the instruction is newly executable. Change
685 // from different branches, or if the PHI node merges in an overdefined
691 // 5. If V <- MEM or V <- CALL or V <- (unknown) then V = Overdefined
759 // arguments that agree with each other(and OperandVal is the constant) or
    [all...]
  /frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.cpp 367 case llvm::Instruction::Or:
408 case llvm::Instruction::Or: {
918 // function. If not, compile it, or use a stub to implement lazy compilation
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 129 /// This does no checking to see if the true/false blocks have large or unsavory
284 case Instruction::Or:
346 /// GatherConstantCompares - Given a potentially 'or'd or 'and'd together
389 // Otherwise, we can only handle an | or &, depending on isEQ.
390 if (I->getOpcode() != (isEQ ? Instruction::Or : Instruction::And))
407 // The RHS of the or/and can't be folded in and we haven't used "Extra" yet,
617 // which value (or set of values) this is.
681 /// equality comparison instruction (either a switch or a branch on "X == c").
707 // Based on whether the default edge from PTI goes to BB or not, fill i
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc 2 // Redistribution and use in source and binary forms, with or without
10 // disclaimer in the documentation and/or other materials provided
13 // contributors may be used to endorse or promote products derived
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TOR
    [all...]
  /external/llvm/lib/VMCore/
ConstantFold.cpp 43 /// input vector constant are all simple integer or FP values.
220 case Instruction::Or: {
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 229 // "Inf" or NaN. Check that the string matches the "[-+]?[0-9]" regex.
318 // it if it is not printable or if it is an escape char.
672 // First, if the constant is actually a GlobalValue (variable or function)
673 // or its already in the constant list then we've printed it already and we
715 // Determine if we want null termination or not.
817 case Instruction::Or: Out << "getOr("; break;
    [all...]
  /external/clang/include/clang/AST/
RecursiveASTVisitor.h 56 OPERATOR(And) OPERATOR(Xor) OPERATOR(Or) \
65 OPERATOR(Shl) OPERATOR(Shr) OPERATOR(And) OPERATOR(Or) OPERATOR(Xor)
83 /// Decl, or Type) is reached.
104 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
121 /// expressions, or other AST nodes where the visitor should customize
129 /// is to descend into the 'pattern' class or function body, not any
130 /// explicit or implicit instantiations. Explicit specializations
151 /// \brief Recursively visit a statement or expression, by
214 // FIXME: take a TemplateArgumentLoc* (or TemplateArgumentListInfo) instead.
827 // clients that override the WalkUpFrom*Type() and/or Visit*Type() method
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 542 case Instruction::Or: R.IntVal = Src1.IntVal | Src2.IntVal; break;
582 /// result variable may be the ExitValue, or the Value of the calling
    [all...]

Completed in 502 milliseconds

12 3 4