Home
last modified time | relevance | path

Searched refs:casted (Results 1 – 21 of 21) sorted by relevance

/external/clang/test/Analysis/inlining/
Dfalse-positive-suppression.c30 int *casted = dynCastToInt(p); in testDynCast() local
31 *casted = 1; in testDynCast()
38 int *casted = dynCastOrNull(p); in testDynCastOrNull() local
39 *casted = 1; in testDynCastOrNull()
47 int *casted; in testBranch() local
52 casted = dynCastToInt(p); in testBranch()
56 casted = (int *)p; in testBranch()
59 *casted = 1; // expected-warning {{Dereference of null pointer}} in testBranch()
63 int *casted; in testBranchReversed() local
70 casted = (int *)p; in testBranchReversed()
[all …]
/external/valgrind/main/drd/tests/
Dstd_list.cpp61 Test *casted = reinterpret_cast<Test*>(instance); in func1() local
62 casted->setUp(); in func1()
63 casted->func1(); in func1()
64 casted->tearDown(); in func1()
70 Test *casted = reinterpret_cast<Test*>(instance); in func2() local
71 casted->setUp(); in func2()
72 casted->func2(); in func2()
73 casted->tearDown(); in func2()
/external/llvm/test/Transforms/CodeGenPrepare/X86/
Dsink-addrspacecast.ll12 %casted = addrspacecast i64* %addr to i32 addrspace(1)*
16 %v = load i32 addrspace(1)* %casted, align 4
27 %casted = addrspacecast i64* %base to i32 addrspace(1)*
28 %addr = getelementptr inbounds i32 addrspace(1)* %casted, i64 5
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
DOpenTypeTypes.h87 const T* casted = reinterpret_cast<const T*>(position); in validatePtr() local
88 if (!isValidEnd(buffer, &casted[1])) in validatePtr()
90 return casted; in validatePtr()
/external/chromium_org/sandbox/win/src/
Dresolver_32.cc88 const void** casted = const_cast<const void**>(address); in ResolveTarget() local
89 return ResolverThunk::ResolveInterceptor(module, function_name, casted); in ResolveTarget()
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
Dlp_bld_format_aos.c154 LLVMValueRef shifted, casted, scaled, masked; in lp_build_unpack_arith_rgba_aos() local
235casted = LLVMBuildSIToFP(builder, masked, LLVMVectorType(LLVMFloatTypeInContext(gallivm->context),… in lp_build_unpack_arith_rgba_aos()
237casted = LLVMBuildUIToFP(builder, masked, LLVMVectorType(LLVMFloatTypeInContext(gallivm->context),… in lp_build_unpack_arith_rgba_aos()
246 scaled = LLVMBuildFMul(builder, casted, LLVMConstVector(scales, 4), ""); in lp_build_unpack_arith_rgba_aos()
248 scaled = casted; in lp_build_unpack_arith_rgba_aos()
271 LLVMValueRef shifted, casted, scaled, unswizzled; in lp_build_pack_rgba_aos() local
333casted = LLVMBuildFPToSI(builder, scaled, LLVMVectorType(LLVMInt32TypeInContext(gallivm->context),… in lp_build_pack_rgba_aos()
335 shifted = LLVMBuildShl(builder, casted, LLVMConstVector(shifts, 4), ""); in lp_build_pack_rgba_aos()
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_format_aos.c154 LLVMValueRef shifted, casted, scaled, masked; in lp_build_unpack_arith_rgba_aos() local
235casted = LLVMBuildSIToFP(builder, masked, LLVMVectorType(LLVMFloatTypeInContext(gallivm->context),… in lp_build_unpack_arith_rgba_aos()
237casted = LLVMBuildUIToFP(builder, masked, LLVMVectorType(LLVMFloatTypeInContext(gallivm->context),… in lp_build_unpack_arith_rgba_aos()
246 scaled = LLVMBuildFMul(builder, casted, LLVMConstVector(scales, 4), ""); in lp_build_unpack_arith_rgba_aos()
248 scaled = casted; in lp_build_unpack_arith_rgba_aos()
271 LLVMValueRef shifted, casted, scaled, unswizzled; in lp_build_pack_rgba_aos() local
333casted = LLVMBuildFPToSI(builder, scaled, LLVMVectorType(LLVMInt32TypeInContext(gallivm->context),… in lp_build_pack_rgba_aos()
335 shifted = LLVMBuildShl(builder, casted, LLVMConstVector(shifts, 4), ""); in lp_build_pack_rgba_aos()
/external/deqp/doc/testspecs/GLES3/
Dfunctional.shaders.int_op.txt69 from the operation are casted back to floating-point values and scaled to range
/external/deqp/modules/gles31/functional/
Des31fShaderAtomicOpTests.cpp366 static bool intEqualsAfterUintCast (deInt32 value, deUint32 casted, glu::Precision precision) in intEqualsAfterUintCast() argument
379 if ((reference & preciseMask) != (casted & preciseMask)) in intEqualsAfterUintCast()
387 if ((signBits & ~preciseMask) == (casted & ~preciseMask)) in intEqualsAfterUintCast()
/external/llvm/test/Transforms/InstCombine/
D2004-11-27-SetCCForCastLargerAndConstant.ll10 ; constant value and the range of the casted value.
/external/clang/docs/
DLibASTMatchers.rst98 Those match all nodes of type *Base* if they can be dynamically casted to
DAutomaticReferenceCounting.rst1279 parenthesized or casted) or ``super`` is called a :arc-term:`delegate init
/external/chromium_org/v8/src/heap/
Dheap.cc1667 AllocationSite* casted = AllocationSite::cast(cur); in ResetAllAllocationSitesDependentCode() local
1668 if (casted->GetPretenureMode() == flag) { in ResetAllAllocationSitesDependentCode()
1669 casted->ResetPretenureDecision(); in ResetAllAllocationSitesDependentCode()
1670 casted->set_deopt_dependent_code(true); in ResetAllAllocationSitesDependentCode()
1673 cur = casted->weak_next(); in ResetAllAllocationSitesDependentCode()
/external/clang/test/Analysis/
Dmisc-ps.m513 // Test invalidation logic where an integer is casted to an array with a
572 // symbolic value stored in 'x' wouldn't be implicitly casted to a signed value
Dmisc-ps-region-store.m231 // array values and that we handle symbolic values that are casted
290 // This test case illustrates how a typeless array of bytes casted to a
/external/eigen/unsupported/Eigen/
DMatrixFunctions241 is casted into the real scalar type of \p M.
/external/llvm/test/CodeGen/X86/
Dstack-protector.ll2529 ; test21a: Addr-of a casted pointer
2560 ; test21b: Addr-of a casted pointer
2592 ; test21c: Addr-of a casted pointer
2624 ; test21d: Addr-of a casted pointer
/external/llvm/docs/
DGetElementPtr.rst513 emit a GEP with the base pointer casted to a simple address-unit pointer, using
/external/strace/
DChangeLog-CVS4976 + pointer was casted to an int in stream.c
/external/chromium_org/third_party/sqlite/src/test/
Dfts1porter.test3147 casted cast
/external/bison/
DChangeLog-201216133 size_t; the old version tried to do this but casted improperly.