HomeSort by relevance Sort by last modified time
    Searched defs:Cast (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/content/common/input/
synthetic_pinch_gesture_params.cc 30 const SyntheticPinchGestureParams* SyntheticPinchGestureParams::Cast(
synthetic_smooth_scroll_gesture_params.cc 35 SyntheticSmoothScrollGestureParams::Cast(
synthetic_tap_gesture_params.cc 28 const SyntheticTapGestureParams* SyntheticTapGestureParams::Cast(
  /external/llvm/lib/Target/NVPTX/
NVPTXFavorNonGenericAddrSpaces.cpp 88 // Decides whether removing Cast is valid and beneficial. Cast can be an
90 static bool IsEliminableAddrSpaceCast(Operator *Cast) {
92 if (Cast->getOpcode() != Instruction::AddrSpaceCast)
95 Value *Src = Cast->getOperand(0);
96 PointerType *SrcTy = cast<PointerType>(Src->getType());
97 PointerType *DestTy = cast<PointerType>(Cast->getType());
113 Operator *Cast = dyn_cast<Operator>(GEP->getPointerOperand());
114 if (!Cast)
    [all...]
  /external/chromium_org/content/child/webcrypto/openssl/
key_openssl.cc 35 SymKeyOpenSsl* SymKeyOpenSsl::Cast(const blink::WebCryptoKey& key) {
51 AsymKeyOpenSsl* AsymKeyOpenSsl::Cast(const blink::WebCryptoKey& key) {
  /external/chromium_org/content/child/webcrypto/nss/
key_nss.cc 39 SymKeyNss* SymKeyNss::Cast(const blink::WebCryptoKey& key) {
56 PublicKeyNss* PublicKeyNss::Cast(const blink::WebCryptoKey& key) {
73 PrivateKeyNss* PrivateKeyNss::Cast(const blink::WebCryptoKey& key) {
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
vertexconversion.h 39 struct Cast
52 struct Cast<T, T>
  /external/chromium_org/third_party/webrtc/base/
window.h 43 static WindowId Cast(uint64 id) {
84 static DesktopId Cast(int id, int index) {
  /external/chromium_org/remoting/android/cast/src/org/chromium/chromoting/
CastExtensionHandler.java 20 import com.google.android.gms.cast.Cast;
21 import com.google.android.gms.cast.Cast.Listener;
22 import com.google.android.gms.cast.CastDevice;
23 import com.google.android.gms.cast.CastMediaControlIntent;
24 import com.google.android.gms.cast.CastStatusCodes;
39 * A handler that interacts with the Cast Extension of the Chromoting host using extension messages.
40 * It uses the Cast Android Sender API to start our registered Cast Receiver App on a nearby Cas
    [all...]
  /external/chromium_org/v8/test/cctest/compiler/
call-tester.h 29 static R Cast(uintptr_t r) { return reinterpret_cast<R>(r); }
42 static int32_t* Cast(uintptr_t r) { return reinterpret_cast<int32_t*>(r); }
48 static void Cast(uintptr_t r) {}
54 static bool Cast(uintptr_t r) { return static_cast<bool>(r); }
60 static int32_t Cast(uintptr_t r) { return static_cast<int32_t>(r); }
66 static uint32_t Cast(uintptr_t r) { return static_cast<uint32_t>(r); }
72 static int64_t Cast(uintptr_t r) { return static_cast<int64_t>(r); }
78 static uint64_t Cast(uintptr_t r) { return static_cast<uint64_t>(r); }
84 static int16_t Cast(uintptr_t r) { return static_cast<int16_t>(r); }
90 static uint16_t Cast(uintptr_t r) { return static_cast<uint16_t>(r);
    [all...]
  /external/javassist/src/main/javassist/expr/
Cast.java 24 * Explicit type cast.
26 public class Cast extends Expr {
30 protected Cast(int pos, CodeIterator i, CtClass declaring, MethodInfo m) {
35 * Returns the method or constructor containing the type cast
42 * type-cast expression.
51 * Returns the source file containing the type-cast expression.
61 * the type specified by the cast.
82 * Replaces the explicit cast operator with the bytecode derived from
150 + "for cast");
  /external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp 122 ConstantInt *D = cast<ConstantInt>(UseInst->getOperand(1));
125 uint32_t BitWidth = cast<IntegerType>(UseInst->getType())->getBitWidth();
345 Instruction *UI = cast<Instruction>(U);
434 CastInst *Cast = dyn_cast<CastInst>(UseOper.first);
435 if (V && Cast) {
436 V->visitCast(Cast);
466 Changed |= simplifyUsersOfIV(cast<PHINode>(I), SE, LPM, Dead);
SimplifyLibCalls.cpp     [all...]
  /external/lldb/source/Core/
Scalar.cpp 560 Scalar::Cast(Scalar::Type type)
    [all...]
  /external/llvm/lib/IR/
AutoUpgrade.cpp 204 ConstantStruct *Init = cast<ConstantStruct>(&U);
282 "cast");
346 Value *Cast = Builder.CreateBitCast(CI->getArgOperand(0),
348 Value *Load = Builder.CreateLoad(Cast);
367 unsigned Imm = cast<ConstantInt>(CI->getArgOperand(1))->getZExtValue();
460 "cast");
464 "cast");
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 64 Instruction *I = cast<Instruction>(U.getUser());
277 Constant *TheSrc = cast<Constant>(Copy->getSource());
278 Constant *Cast
280 Instruction *NewI = ReplaceInstUsesWith(AI, Cast);
294 /// InstCombineLoadCast - Fold 'load (cast P)' -> cast (load P)' when possible.
297 User *CI = cast<User>(LI.getOperand(0));
300 PointerType *DestTy = cast<PointerType>(CI->getType());
304 // If the address spaces don't match, don't eliminate the cast.
324 SrcTy = cast<PointerType>(CastOp->getType())
    [all...]
  /external/chromium_org/v8/src/arm64/
instructions-arm64.h 368 return Cast(addr);
371 template<typename T> V8_INLINE static Instruction* Cast(T src) {
  /external/llvm/lib/CodeGen/
StackColoring.cpp 488 BitCastInst *Cast = new BitCastInst(Inst, From->getType());
489 Cast->insertAfter(Inst);
490 Inst = Cast;
  /external/lldb/source/API/
SBValue.cpp 692 SBValue::Cast (SBType type)
699 sb_value.SetSP(value_sp->Cast(type_sp->GetClangASTType()),GetPreferDynamicValue(),GetPreferSyntheticValue());
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 61 // Handle a vector->integer cast.
104 // If this is a scalar -> vector cast, convert the input into a <1 x scalar>
395 PointerType *PTy = cast<PointerType>(C->getType());
490 // If the type sizes are the same and a cast is legal, just directly
491 // cast the constant.
493 Instruction::CastOps Cast = Instruction::BitCast;
494 // If we are going from a pointer to int or vice versa, we spell the cast
497 Cast = Instruction::IntToPtr;
499 Cast = Instruction::PtrToInt;
501 if (CastInst::castIsValid(Cast, C, DestTy)
    [all...]
  /external/openfst/src/include/fst/
fst.h 929 template<class F, class G> void Cast(const F &ifst, G *ofst) {
  /external/clang/lib/CodeGen/
CGException.cpp 277 llvm::Constant *CVal = cast<llvm::Constant>(Val);
281 cast<llvm::GlobalVariable>((*II)->stripPointerCasts()))
365 // __cxa_allocate_exception returns a void*; we need to cast this
381 CGF.DeactivateCleanupBlock(cleanup, cast<llvm::Instruction>(typedAddr));
457 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
572 EHFilterScope &filterScope = cast<EHFilterScope>(*EHStack.begin());
635 EHCatchScope &catchScope = cast<EHCatchScope>(scope);
670 return !cast<EHCleanupScope>(S).isEHCleanup();
759 hasCleanup = (hasCleanup || cast<EHCleanupScope>(*I).isEHCleanup());
767 EHFilterScope &filter = cast<EHFilterScope>(*I)
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 118 Types.push_back(cast<PointerType>(GV->getType())->getElementType());
128 SequentialType *STy = cast<SequentialType>(Ty);
133 StructType *STy = cast<StructType>(Ty);
165 Instruction *I = cast<Instruction>(V);
284 User *U = cast<User>(UV);
306 // Pointer cast, delete any stores and memsets to the global.
378 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
395 cast<ConstantExpr>(U)->getOpcode() != Instruction::GetElementPtr))
403 !cast<Constant>(U->getOperand(1))->isNullValue() ||
413 ConstantInt *Idx = cast<ConstantInt>(U->getOperand(2))
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 503 cast<Variable>(Ptr)->attachVar();
505 cast<Future>(Ptr)->registerLocation(this);
511 cast<Variable>(Ptr)->detachVar();
    [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 1000 // Cast to vector of 8-bit elements.
    [all...]

Completed in 624 milliseconds

1 2