HomeSort by relevance Sort by last modified time
    Searched refs:cast (Results 151 - 175 of 3080) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-diff/
DiffConsumer.cpp 56 printValue(cast<StoreInst>(V)->getPointerOperand(), isL);
59 printValue(cast<CallInst>(V)->getCalledValue(), isL);
62 printValue(cast<InvokeInst>(V)->getCalledValue(), isL);
80 ComputeNumbering(cast<Function>(ctxt.L), ctxt.LNumbering);
85 ComputeNumbering(cast<Function>(ctxt.R), ctxt.RNumbering);
103 Function *L = cast<Function>(I->L);
104 Function *R = cast<Function>(I->R);
111 BasicBlock *L = cast<BasicBlock>(I->L);
112 BasicBlock *R = cast<BasicBlock>(I->R);
  /external/v8/src/snapshot/
startup-serializer.cc 57 AccessorInfo* info = AccessorInfo::cast(obj);
58 Address original_address = Foreign::cast(info->getter())->foreign_address();
59 Foreign::cast(info->js_getter())->set_foreign_address(original_address);
62 CallHandlerInfo* info = CallHandlerInfo::cast(obj);
64 Foreign::cast(info->callback())->foreign_address();
65 Foreign::cast(info->js_callback())->set_foreign_address(original_address);
67 } else if (obj->IsScript() && Script::cast(obj)->IsUserJavaScript()) {
68 Script::cast(obj)->set_context_data(
72 SharedFunctionInfo* shared = SharedFunctionInfo::cast(obj);
  /external/bcc/tools/
syncsnoop.py 47 event = ct.cast(data, ct.POINTER(Data)).contents
  /external/guava/guava/src/com/google/common/base/
Platform.java 45 : Optional.of(enumClass.cast(ref.get()));
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
Platform.java 45 // Class.cast is not supported in GWT. This method is a no-op in GWT.
47 clazz.cast(obj);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/
SingleNodeTypeValidator.java 20 validator.accept(type.cast(node), problemReporter);
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCExpr.cpp 113 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Expr);
122 const MCSymbolRefExpr &SymRef = *cast<MCSymbolRefExpr>(Expr);
123 cast<MCSymbolELF>(SymRef.getSymbol()).setType(ELF::STT_TLS);
128 fixELFSymbolsInTLSFixupsImpl(cast<MCUnaryExpr>(Expr)->getSubExpr(), Asm);
  /external/llvm/lib/Target/AVR/
AVR.h 39 return cast<PointerType>(V->getType())->getAddressSpace() == ProgramMemory;
  /external/llvm/unittests/AsmParser/
AsmParserTest.cpp 81 EXPECT_TRUE(cast<ConstantFP>(V)->isExactlyValue(3.5));
87 EXPECT_TRUE(cast<ConstantInt>(V)->equalsInt(42));
206 StructType *ST = cast<StructType>(Ty);
220 ST = cast<StructType>(Ty);
234 VectorType *VT = cast<VectorType>(Ty);
246 ST = cast<StructType>(Ty);
255 PointerType *PT = cast<PointerType>(Ty);
265 PT = cast<PointerType>(Ty);
269 PT = cast<PointerType>(Ty);
336 StructType *ST = cast<StructType>(Ty)
    [all...]
  /external/llvm/unittests/Transforms/Utils/
IntegerDivision.cpp 46 expandDivision(cast<BinaryOperator>(Div));
49 Instruction* Quotient = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0));
76 expandDivision(cast<BinaryOperator>(Div));
79 Instruction* Quotient = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0));
106 expandRemainder(cast<BinaryOperator>(Rem));
109 Instruction* Remainder = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0));
136 expandRemainder(cast<BinaryOperator>(Rem));
139 Instruction* Remainder = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0));
167 expandDivision(cast<BinaryOperator>(Div));
170 Instruction* Quotient = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0))
    [all...]
  /external/objenesis/main/src/main/java/org/objenesis/instantiator/gcj/
GCJInstantiator.java 40 return type.cast(newObjectMethod.invoke(dummyStream, type, Object.class));
GCJSerializationInstantiator.java 43 return type.cast(newObjectMethod.invoke(dummyStream, type, superType));
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCExpr.cpp 115 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Expr);
124 const MCSymbolRefExpr &SymRef = *cast<MCSymbolRefExpr>(Expr);
125 cast<MCSymbolELF>(SymRef.getSymbol()).setType(ELF::STT_TLS);
130 fixELFSymbolsInTLSFixupsImpl(cast<MCUnaryExpr>(Expr)->getSubExpr(), Asm);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
AMDGPULowerIntrinsics.cpp 69 Instruction *Inst = cast<Instruction>(*I);
74 auto *Memcpy = cast<MemCpyInst>(Inst);
87 auto *Memmove = cast<MemMoveInst>(Inst);
97 auto *Memset = cast<MemSetInst>(Inst);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/
AVR.h 45 return cast<PointerType>(V->getType())->getAddressSpace() == ProgramMemory;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCExpr.cpp 50 const MCBinaryExpr *be = cast<MCBinaryExpr>(Expr);
56 const MCSymbolRefExpr &symRef = *cast<MCSymbolRefExpr>(Expr);
69 cast<MCSymbolELF>(symRef.getSymbol()).setType(ELF::STT_TLS);
73 fixELFSymbolsInTLSFixupsImpl(cast<MCUnaryExpr>(Expr)->getSubExpr(), Asm);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/NVPTX/
NVVMReflect.cpp 133 const ConstantExpr *GEP = cast<ConstantExpr>(Str);
139 const Value *Operand = cast<Constant>(Sym)->getOperand(0);
151 assert(cast<ConstantDataSequential>(Operand)->isCString() &&
154 StringRef ReflectArg = cast<ConstantDataSequential>(Operand)->getAsString();
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/AsmParser/
AsmParserTest.cpp 81 EXPECT_TRUE(cast<ConstantFP>(V)->isExactlyValue(3.5));
87 EXPECT_TRUE(cast<ConstantInt>(V)->equalsInt(42));
206 StructType *ST = cast<StructType>(Ty);
220 ST = cast<StructType>(Ty);
234 VectorType *VT = cast<VectorType>(Ty);
246 ST = cast<StructType>(Ty);
255 PointerType *PT = cast<PointerType>(Ty);
265 PT = cast<PointerType>(Ty);
269 PT = cast<PointerType>(Ty);
336 StructType *ST = cast<StructType>(Ty)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Utils/
IntegerDivision.cpp 46 expandDivision(cast<BinaryOperator>(Div));
49 Instruction* Quotient = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0));
76 expandDivision(cast<BinaryOperator>(Div));
79 Instruction* Quotient = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0));
106 expandRemainder(cast<BinaryOperator>(Rem));
109 Instruction* Remainder = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0));
136 expandRemainder(cast<BinaryOperator>(Rem));
139 Instruction* Remainder = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0));
167 expandDivision(cast<BinaryOperator>(Div));
170 Instruction* Quotient = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0))
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
index_ops_kernel_argmax_float_1d.cc 38 out_eig = in_eig.argmax(0).cast<int64>();
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/
softplus.py 119 hinge_softness = math_ops.cast(self.hinge_softness, x.dtype)
125 hinge_softness = math_ops.cast(self.hinge_softness, y.dtype)
140 y /= math_ops.cast(self.hinge_softness, y.dtype)
145 x /= math_ops.cast(self.hinge_softness, x.dtype)
  /external/tensorflow/tensorflow/contrib/opt/python/training/
reg_adagrad_optimizer.py 72 math_ops.cast(self._learning_rate_tensor, var.dtype.base_dtype),
82 math_ops.cast(self._learning_rate_tensor, grad.dtype.base_dtype),
92 math_ops.cast(self._learning_rate_tensor, var.dtype.base_dtype),
103 math_ops.cast(self._learning_rate_tensor, grad.dtype),
  /external/tensorflow/tensorflow/python/ops/signal/
fft_ops.py 177 size = _math_ops.cast(_fft_size_for_grad(grad, 1), grad.dtype)
183 rsize = _math_ops.cast(
184 1. / _math_ops.cast(_fft_size_for_grad(grad, 1), grad.dtype.real_dtype),
191 size = _math_ops.cast(_fft_size_for_grad(grad, 2), grad.dtype)
197 rsize = _math_ops.cast(
198 1. / _math_ops.cast(_fft_size_for_grad(grad, 2), grad.dtype.real_dtype),
205 size = _math_ops.cast(_fft_size_for_grad(grad, 3), grad.dtype)
211 rsize = _math_ops.cast(
212 1. / _math_ops.cast(_fft_size_for_grad(grad, 3), grad.dtype.real_dtype),
226 is_even = _math_ops.cast(1 - (fft_length[-1] % 2), _dtypes.complex64
    [all...]
  /external/v8/src/debug/
debug-type-profile.cc 22 Handle<ArrayList> list = Handle<ArrayList>::cast(
40 FeedbackVector* vector = FeedbackVector::cast(list->Get(i));
85 Handle<ArrayList> list = Handle<ArrayList>::cast(
89 FeedbackVector* vector = FeedbackVector::cast(list->Get(i));
  /external/v8/src/objects/
debug-objects.cc 68 return BreakPointInfo::cast(break_point_info)->GetBreakPointCount(isolate) >
78 BreakPointInfo::cast(break_points()->get(i));
93 BreakPointInfo::cast(debug_info->break_points()->get(i)), isolate);
110 isolate, Handle<BreakPointInfo>::cast(break_point_info), break_point);
155 return Handle<Object>(BreakPointInfo::cast(break_point_info)->break_points(),
166 BreakPointInfo::cast(break_points()->get(i));
180 BreakPointInfo::cast(debug_info->break_points()->get(i)), isolate);
227 if (IsEqual(BreakPoint::cast(break_point_info->break_points()),
237 FixedArray::cast(break_point_info->break_points()), isolate);
242 if (IsEqual(BreakPoint::cast(old_array->get(i)), *break_point))
    [all...]

Completed in 819 milliseconds

1 2 3 4 5 67 8 91011>>