HomeSort by relevance Sort by last modified time
    Searched defs:IT (Results 1 - 20 of 20) sorted by null

  /external/compiler-rt/lib/builtins/
assembly.h 28 // tell linker it can break up file at label boundaries
86 #define IT(cond) it cond
89 #define IT(cond)
  /external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
RegionCode.java 46 static final String IT = "IT";
  /device/google/contexthub/firmware/inc/platform/stm32f4xx/cmsis/
core_cm0.h 273 uint32_t IT:2; /*!< bit: 25..26 saved IT state (read 0) */
    [all...]
core_cm0plus.h 284 uint32_t IT:2; /*!< bit: 25..26 saved IT state (read 0) */
    [all...]
core_sc000.h 279 uint32_t IT:2; /*!< bit: 25..26 saved IT state (read 0) */
    [all...]
core_cm3.h 280 uint32_t IT:2; /*!< bit: 25..26 saved IT state (read 0) */
    [all...]
core_sc300.h 280 uint32_t IT:2; /*!< bit: 25..26 saved IT state (read 0) */
    [all...]
core_cm4.h 327 uint32_t IT:2; /*!< bit: 25..26 saved IT state (read 0) */
    [all...]
core_cm7.h 342 uint32_t IT:2; /*!< bit: 25..26 saved IT state (read 0) */
    [all...]
  /external/clang/lib/Sema/
SemaPseudoObject.cpp 20 // needing an r-value, it is treated as if it were a message-send
23 // If it is used as the LHS of a simple assignment, it is treated
26 // If it is used as the LHS of a compound assignment, or the operand
382 // If the expression hasn't already been captured, just capture it
390 // Otherwise, it must already be one of our semantic expressions;
431 // expression may require it to be rewritten. In these cases, we
572 QualType IT = S.Context.getObjCInterfaceType(PRE->getClassReceiver());
573 return S.LookupMethodInObjectType(sel, IT, false)
    [all...]
SemaExpr.cpp 62 // If the function has a deduced return type, and we can't deduce it,
63 // then we can't use it either.
111 // to the underlying type to see if it is more restrictive.
227 // FIXME: An explanation of why exactly it can't be inherited
253 /// in many cases it will not behave correctly. This is not enabled in C++ mode
261 // contexts where the warning is a false positive, or where it is technically
284 // This last can give us false negatives, but it's better than warning on
317 /// it might warn if a deprecated or unavailable declaration is being
365 // If the function has a deduced return type, and we can't deduce it,
366 // then we can't use it either
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 88 // If the coefficient is represented by an integer, promote it to a
671 // Don't push constant addend at this time. It will be the last element
822 // is immediately available; otherwise, it needs exactly one instruction
865 // operand has a known-zero bit in a more significant place than it (not
    [all...]
InstCombineCalls.cpp 32 /// getPromotedType - Return the specified type promoted as it would be to pass
137 // infer, use it.
152 // Set the size of the copy to 0, it will be deleted on the next iteration.
192 // Set the size of the copy to 0, it will be deleted on the next iteration.
677 /// of intrinsic instructions. For normal calls, it allows visitCallSite to do
818 IntegerType *IT = dyn_cast<IntegerType>(II->getArgOperand(0)->getType());
820 if (!IT) break;
821 uint32_t BitWidth = IT->getBitWidth();
828 return ReplaceInstUsesWith(CI, ConstantInt::get(IT,
836 IntegerType *IT = dyn_cast<IntegerType>(II->getArgOperand(0)->getType())
    [all...]
  /external/pcre/dist/sljit/
sljitNativeARM_T2_32.c 116 #define IT 0xbf00
252 /* +1 comes from the prefix IT instruction. */
313 *jump_inst++ = IT | ((jump->flags >> 4) & 0xf0) | 0x8;
504 /* SET_FLAGS must be 0x100000 as it is also the value of S bit (can be used for optimization). */
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 53 // This is expensive, so we only do it for the top level query value.
96 // figuring out if we can use it.
118 // it has been inserted).
149 IntegerType *IT = cast<IntegerType>(LHS->getType()->getScalarType());
150 APInt LHSKnownZero(IT->getBitWidth(), 0), LHSKnownOne(IT->getBitWidth(), 0);
151 APInt RHSKnownZero(IT->getBitWidth(), 0), RHSKnownOne(IT->getBitWidth(), 0);
402 // considered ephemeral to that assumption (even if it has other
459 // reach the assume whenever it reaches the context)
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 258 // it needs default CC operands add those.
268 // we're not predicable but add it anyways.
594 // Use movw+movt when possible, it avoids constant pool entries.
748 // go ahead and accept it now.
762 // another block, otherwise it may not have a virtual register assigned.
    [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 46 /// avoids constructing the type more than once if it's used more than once.
54 /// Constructor leaves this class uninitialized, because it is intended to
109 /// SEL is included in a header somewhere, in which case it will be whatever
112 /// LLVM i8 type. Cached here to avoid repeatedly getting it in all of the
113 /// places where it's used
121 /// calling conventions, it must always be cast to the correct type before
126 /// but if the runtime header declaring it is included then it may be a
142 /// it should be using intptr_t, but we can't fix this without breaking
156 /// 32-bit integer type, to save us needing to look it up every time it's used
    [all...]
CGObjCMac.cpp 196 // FIXME: It would be nice to unify this with the opaque type, so that the
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 158 /// Return true if it is safe to merge these two
163 // It is not safe to merge these two switch instructions if they have a common
183 /// Return true if it is safe and profitable to merge these two terminator
222 /// Update PHI nodes in Succ to indicate that there will now be entries in it
285 // branch to BB, then it must be in the 'conditional' part of the "if
286 // statement". If not, it definitely dominates the region.
295 // If we have seen this instruction before, don't count it again.
298 // Okay, it looks like the instruction IS in the "condition". Check to
299 // see if it's a cheap instruction to unconditionally compute, and if it
    [all...]
  /external/libpng/contrib/libtests/
pngvalid.c 13 * This is a C program that is intended to be linked against libpng. It
171 * it is necessary to avoid the inability of certain versions of GCC to use
172 * the value of a compile-time constant when performing range checks. It must
187 /* For the moment just do it always; all versions of GCC seem to be broken: */
251 /* Generate random bytes. This uses a boring repeatable algorithm and it
252 * is implemented here so that it gives the same set of numbers on every
253 * architecture. It's a linear congruential generator (Knuth or Sedgewick
254 * "Algorithms") but it comes from the 'feedback taps' table in Horowitz and
363 * simply records whether pngvalid did the interlace itself or whether it
690 * to the sequential reader. It can also store the result of a PN
    [all...]

Completed in 7481 milliseconds