Searched refs:casted (Results 1 - 8 of 8) sorted by relevance

/external/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.c30 int *casted = dynCastToInt(p); local
31 *casted = 1;
38 int *casted = dynCastOrNull(p); local
39 *casted = 1;
47 int *casted; local
52 casted = dynCastToInt(p);
56 casted = (int *)p;
59 *casted = 1; // expected-warning {{Dereference of null pointer}}
63 int *casted; local
70 casted
79 int *casted = 0; local
102 int *casted = dynCastOrNull(0); local
111 int *casted = dynCastToInt(0); local
127 int *casted = lookUpInt(0); local
136 int *casted = dynCastOrNull(getNull()); local
147 int *casted = dynCastOrNull(ptr); local
182 int *casted = getNull(); local
202 int *casted = getNullIfNonNull(input); local
218 int *casted = alwaysReturnNull(input); local
[all...]
/external/valgrind/main/drd/tests/
H A Dstd_list.cpp61 Test *casted = reinterpret_cast<Test*>(instance); local
62 casted->setUp();
63 casted->func1();
64 casted->tearDown();
70 Test *casted = reinterpret_cast<Test*>(instance); local
71 casted->setUp();
72 casted->func2();
73 casted->tearDown();
/external/chromium_org/sandbox/win/src/
H A Dresolver_32.cc88 const void** casted = const_cast<const void**>(address); local
89 return ResolverThunk::ResolveInterceptor(module, function_name, casted);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
H A DOpenTypeTypes.h87 const T* casted = reinterpret_cast<const T*>(position); local
88 if (!isValidEnd(buffer, &casted[1]))
90 return casted;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_aos.c154 LLVMValueRef shifted, casted, scaled, masked; local
235 casted = LLVMBuildSIToFP(builder, masked, LLVMVectorType(LLVMFloatTypeInContext(gallivm->context), 4), "");
237 casted = LLVMBuildUIToFP(builder, masked, LLVMVectorType(LLVMFloatTypeInContext(gallivm->context), 4), "");
240 /* At this point 'casted' may be a vector of floats such as
246 scaled = LLVMBuildFMul(builder, casted, LLVMConstVector(scales, 4), "");
248 scaled = casted;
271 LLVMValueRef shifted, casted, scaled, unswizzled; local
333 casted = LLVMBuildFPToSI(builder, scaled, LLVMVectorType(LLVMInt32TypeInContext(gallivm->context), 4), "");
335 shifted = LLVMBuildShl(builder, casted, LLVMConstVector(shifts, 4), "");
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_aos.c154 LLVMValueRef shifted, casted, scaled, masked; local
235 casted = LLVMBuildSIToFP(builder, masked, LLVMVectorType(LLVMFloatTypeInContext(gallivm->context), 4), "");
237 casted = LLVMBuildUIToFP(builder, masked, LLVMVectorType(LLVMFloatTypeInContext(gallivm->context), 4), "");
240 /* At this point 'casted' may be a vector of floats such as
246 scaled = LLVMBuildFMul(builder, casted, LLVMConstVector(scales, 4), "");
248 scaled = casted;
271 LLVMValueRef shifted, casted, scaled, unswizzled; local
333 casted = LLVMBuildFPToSI(builder, scaled, LLVMVectorType(LLVMInt32TypeInContext(gallivm->context), 4), "");
335 shifted = LLVMBuildShl(builder, casted, LLVMConstVector(shifts, 4), "");
/external/deqp/modules/gles31/functional/
H A Des31fShaderAtomicOpTests.cpp366 static bool intEqualsAfterUintCast (deInt32 value, deUint32 casted, glu::Precision precision) argument
368 // Bit format of 'casted' = [ uint -> highp uint promotion bits (0) ] [ sign extend bits (s) ] [ value bits ]
379 if ((reference & preciseMask) != (casted & preciseMask))
387 if ((signBits & ~preciseMask) == (casted & ~preciseMask))
/external/chromium_org/v8/src/heap/
H A Dheap.cc1667 AllocationSite* casted = AllocationSite::cast(cur); local
1668 if (casted->GetPretenureMode() == flag) {
1669 casted->ResetPretenureDecision();
1670 casted->set_deopt_dependent_code(true);
1673 cur = casted->weak_next();

Completed in 295 milliseconds