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

1 2

  /external/mesa3d/src/glsl/glcpp/tests/
073-if-in-ifdef.c 1 #ifdef UNDEF
2 #if UNDEF > 1
076-elif-undef-nested.c 1 #ifdef UNDEF
2 #if UNDEF == 4
3 #elif UNDEF == 5
075-elif-elif-undef.c 1 #ifndef UNDEF
2 #elif UNDEF < 0
3 #elif UNDEF == 3
074-elif-undef.c 1 #ifndef UNDEF
2 #elif UNDEF < 0
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
cursesw.h 43 #undef lines
48 #undef UNDEF
49 #define UNDEF(name) CUR_ ##name
52 inline int UNDEF(addch)(chtype ch) { return addch(ch); }
53 #undef addch
54 #define addch UNDEF(addch)
58 inline int UNDEF(echochar)(chtype ch) { return echochar(ch); }
59 #undef echochar
60 #define echochar UNDEF(echochar
    [all...]
tic.h 80 #undef BYTE
147 #define UNDEF 5 /* Undefined */
  /frameworks/compile/slang/
slang_rs_spec_table.cpp 30 #undef ENUM_PRIMITIVE_DATA_TYPE
31 #undef PRIMITIVE_DATA_TYPE_RANGE
38 #undef ENUM_RS_MATRIX_DATA_TYPE
39 #undef RS_MATRIX_DATA_TYPE_RANGE
46 #undef ENUM_RS_OBJECT_DATA_TYPE
47 #undef RS_OBJECT_DATA_TYPE_RANGE
53 #undef ENUM_RS_DATA_KIND
203 #undef ALIAS_DEF
212 #undef ALIAS_DEF
235 #undef DE
    [all...]
  /external/llvm/include/llvm/CodeGen/
ISDOpcodes.h 167 // UNDEF - An undefined node
168 UNDEF,
287 /// values that indicate which value (or undef) each result element will
    [all...]
SelectionDAG.h 496 /// getUNDEF - Return an UNDEF node. UNDEF does not have a useful DebugLoc.
498 return getNode(ISD::UNDEF, DebugLoc(), VT);
    [all...]
SelectionDAGNodes.h 66 /// BUILD_VECTOR where all of the elements are ~0 or undef.
70 /// BUILD_VECTOR where all of the elements are 0 or undef.
75 /// element is not an undef.
    [all...]
  /external/openssl/crypto/x509v3/
v3_info.c 189 #ifdef UNDEF
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]
SelectionDAG.cpp 110 /// BUILD_VECTOR where all of the elements are ~0 or undef.
120 // Skip over all of the undef values.
121 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
124 // Do not accept an all-undef vector.
144 N->getOperand(i).getOpcode() != ISD::UNDEF)
151 /// BUILD_VECTOR where all of the elements are 0 or undef.
161 // Skip over all of the undef values.
162 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
165 // Do not accept an all-undef vector.
184 N->getOperand(i).getOpcode() != ISD::UNDEF)
    [all...]
LegalizeVectorTypes.cpp 65 case ISD::UNDEF: R = ScalarizeVecRes_UNDEF(N); break;
267 if (Arg.getOpcode() == ISD::UNDEF)
422 case ISD::UNDEF: SplitRes_UNDEF(N, Lo, Hi); break;
    [all...]
LegalizeDAG.cpp     [all...]
LegalizeFloatTypes.cpp 98 case ISD::UNDEF: R = SoftenFloatRes_UNDEF(N); break;
    [all...]
SelectionDAGISel.cpp     [all...]
LegalizeIntegerTypes.cpp 76 case ISD::UNDEF: Res = PromoteIntRes_UNDEF(N); break;
    [all...]
TargetLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp 91 // Extract from UNDEF is UNDEF.
92 if (Vec.getOpcode() == ISD::UNDEF)
93 return DAG.getNode(ISD::UNDEF, dl, ResultVT);
592 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
619 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
620 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
645 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
    [all...]
  /external/llvm/lib/Target/CellSPU/
SPUISelDAGToDAG.cpp 513 ||Opc == ISD::UNDEF
523 if (Offs.getOpcode() == ISD::Constant || Offs.getOpcode() == ISD::UNDEF) {
524 if (Offs.getOpcode() == ISD::UNDEF)
    [all...]
SPUISelLowering.cpp     [all...]
  /external/icu4c/data/
makedata.mak 175 !UNDEF ICUDATA_SOURCE_ARCHIVE
212 !UNDEF BUILD_SPECIAL_CNV_FILES
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 494 /// isConstantOrUndef - Op is either an undef node or a ConstantSDNode. Return
495 /// true if Op is undef or if it matches the specified value.
582 // Find the first non-undef value in the shuffle mask.
587 if (i == 16) return -1; // all undef.
620 // FIXME: Handle UNDEF elements too!
682 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
694 // either constant or undef values that are identical for each chunk. See
710 return DAG.getTargetConstant(0, MVT::i32); // 0,0,0,undef
717 return DAG.getTargetConstant(~0U, MVT::i32); // -1,-1,-1,undef
726 // Check to see if this buildvec has a single non-undef value in its elements
    [all...]

Completed in 557 milliseconds

1 2