OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cast
(Results
351 - 375
of
3080
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/python/cpython3/Modules/_sqlite/
microprotocols.c
55
pysqlite_microprotocols_add(PyTypeObject *type, PyObject *proto, PyObject *
cast
)
67
rc = PyDict_SetItem(psyco_adapters, key,
cast
);
/external/skia/src/gpu/gradients/
GrTiledGradientEffect.cpp
23
const GrTiledGradientEffect& _outer = args.fFp.
cast
<GrTiledGradientEffect>();
65
const GrTiledGradientEffect& that = other.
cast
<GrTiledGradientEffect>();
/external/skqp/src/gpu/gradients/
GrTiledGradientEffect.cpp
23
const GrTiledGradientEffect& _outer = args.fFp.
cast
<GrTiledGradientEffect>();
66
const GrTiledGradientEffect& that = other.
cast
<GrTiledGradientEffect>();
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/Utils/
Local.h
31
GEPOperator *GEPOp =
cast
<GEPOperator>(GEP);
58
uint64_t OpValue =
cast
<ConstantInt>(OpC)->getZExtValue();
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
MCWinCOFFStreamer.cpp
87
auto *Symbol =
cast
<MCSymbolCOFF>(S);
101
auto *Symbol =
cast
<MCSymbolCOFF>(S);
126
auto *Symbol =
cast
<MCSymbolCOFF>(S);
146
cast
<MCSymbolCOFF>(CurSymbol)->setClass((uint16_t)StorageClass);
161
cast
<MCSymbolCOFF>(CurSymbol)->setType((uint16_t)Type);
177
const MCSymbolCOFF *CSymbol =
cast
<MCSymbolCOFF>(Symbol);
256
auto *Symbol =
cast
<MCSymbolCOFF>(S);
288
auto *Symbol =
cast
<MCSymbolCOFF>(S);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/NVPTX/
NVPTXGenericToNVVM.cpp
116
i, remapConstant(&M, &*I,
cast
<Constant>(Operand), Builder));
173
GVMapTy::iterator I = GVMap.find(
cast
<GlobalVariable>(C));
189
NewValue = remapConstantExpr(M, F,
cast
<ConstantExpr>(C), Builder);
206
Value *NewOperand = remapConstant(M, F,
cast
<Constant>(Operand), Builder);
245
Value *NewOperand = remapConstant(M, F,
cast
<Constant>(Operand), Builder);
287
return
cast
<GEPOperator>(C)->isInBounds()
289
cast
<GEPOperator>(C)->getSourceElementType(),
293
cast
<GEPOperator>(C)->getSourceElementType(),
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Coroutines/
Coroutines.cpp
179
if (CallSite CS = CallSite(
cast
<Value>(&I))) {
230
cast
<CoroSaveInst>(CallInst::Create(Fn, CoroBegin, "", SuspendInst));
249
CoroSizes.push_back(
cast
<CoroSizeInst>(II));
252
CoroFrames.push_back(
cast
<CoroFrameInst>(II));
258
UnusedCoroSaves.push_back(
cast
<CoroSaveInst>(II));
261
CoroSuspends.push_back(
cast
<CoroSuspendInst>(II));
271
auto CB =
cast
<CoroBeginInst>(II);
285
CoroEnds.push_back(
cast
<CoroEndInst>(II));
/external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/
softsign.py
88
y, math_ops.
cast
(-1., dtype=y.dtype.base_dtype),
91
y, math_ops.
cast
(1., dtype=y.dtype.base_dtype),
/external/tensorflow/tensorflow/contrib/distributions/python/ops/
normal_conjugate_posteriors.py
75
n = math_ops.
cast
(n, prior.dtype)
141
n = math_ops.
cast
(n, prior.dtype)
/external/tensorflow/tensorflow/contrib/eager/python/examples/revnet/
cifar_input.py
81
image = tf.
cast
(image, dtype)
82
label = tf.
cast
(features["label"], tf.int32)
/external/tensorflow/tensorflow/examples/wav_to_spectrogram/
wav_to_spectrogram.cc
67
Output
cast
=
Cast
(root.WithOpName("
cast
"), min, DT_UINT8);
local
70
ExpandDims(root.WithOpName("expand_dims"),
cast
, expand_dims_const);
/external/tensorflow/tensorflow/python/ops/
histogram_ops.py
80
nbins_float = math_ops.
cast
(nbins, values.dtype)
93
indices = math_ops.
cast
(
/external/v8/src/objects/
maybe-object-inl.h
17
*value = Smi::
cast
(reinterpret_cast<Object*>(this));
25
return Smi::
cast
(reinterpret_cast<Object*>(this));
/external/v8/src/runtime/
runtime-wasm.cc
35
result = WasmCompiledFrame::
cast
(it.frame())->wasm_instance();
38
result = WasmInterpreterEntryFrame::
cast
(it.frame())->wasm_instance();
162
Handle<JSReceiver> exception(JSReceiver::
cast
(*except_obj), isolate);
184
Handle<JSReceiver> exception(JSReceiver::
cast
(*except_obj), isolate);
191
Handle<JSTypedArray> values = Handle<JSTypedArray>::
cast
(values_obj);
212
Handle<JSReceiver> exception(JSReceiver::
cast
(*except_obj), isolate);
219
Handle<JSTypedArray> values = Handle<JSTypedArray>::
cast
(values_obj);
243
//
cast
it back to the raw pointer.
315
DCHECK_EQ(*instance, WasmCompileLazyFrame::
cast
(it.frame())->wasm_instance());
/external/clang/lib/StaticAnalyzer/Core/
Environment.cpp
29
E =
cast
<OpaqueValueExpr>(E)->getSourceExpr();
32
E =
cast
<ExprWithCleanups>(E)->getSubExpr();
35
E =
cast
<CXXBindTemporaryExpr>(E)->getSubExpr();
38
E =
cast
<SubstNonTypeTemplateParmExpr>(E)->getReplacement();
95
return svalBuilder.getConstantVal(
cast
<Expr>(S)).getValue();
98
const ReturnStmt *RS =
cast
<ReturnStmt>(S);
/external/guava/guava/src/com/google/common/collect/
Queues.java
73
return new ArrayDeque<E>(Collections2.
cast
(elements));
96
return new ConcurrentLinkedQueue<E>(Collections2.
cast
(elements));
133
return new LinkedBlockingDeque<E>(Collections2.
cast
(elements));
168
return new LinkedBlockingQueue<E>(Collections2.
cast
(elements));
200
return new PriorityBlockingQueue<E>(Collections2.
cast
(elements));
230
return new PriorityQueue<E>(Collections2.
cast
(elements));
/external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h
151
return Value.is<Other>() && Value.
cast
<Other>() == NonLocal;
157
return Value.is<Other>() && Value.
cast
<Other>() == NonFuncLocal;
163
return Value.is<Other>() && Value.
cast
<Other>() == Unknown;
171
return Value.
cast
<Invalid>();
173
return Value.
cast
<Clobber>();
175
return Value.
cast
<Def>();
/external/llvm/lib/Analysis/
CaptureTracking.cpp
119
Instruction *I =
cast
<Instruction>(U->getUser());
233
Instruction *I =
cast
<Instruction>(U->getUser());
271
if (
cast
<LoadInst>(I)->isVolatile())
281
if (V == I->getOperand(0) ||
cast
<StoreInst>(I)->isVolatile())
291
auto *ARMWI =
cast
<AtomicRMWInst>(I);
303
auto *ACXI =
cast
<AtomicCmpXchgInst>(I);
/external/llvm/lib/Target/NVPTX/
NVPTXFavorNonGenericAddrSpaces.cpp
128
Operator *
Cast
= dyn_cast<Operator>(V);
129
if (
Cast
== nullptr ||
Cast
->getOpcode() != Instruction::AddrSpaceCast)
132
Value *Src =
Cast
->getOperand(0);
133
PointerType *SrcTy =
cast
<PointerType>(Src->getType());
134
PointerType *DestTy =
cast
<PointerType>(
Cast
->getType());
157
Operator *
Cast
=
cast
<Operator>(NewOperand);
167
GEP->getSourceElementType(),
Cast
->getOperand(0), Indices
[
all
...]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
CallSite.h
159
?
cast
<CallInst>(II)->METHOD \
160
:
cast
<InvokeInst>(II)->METHOD
165
cast
<CallInst>(II)->METHOD; \
167
cast
<InvokeInst>(II)->METHOD
260
return
cast
<CallInst>(getInstruction())->op_end() - 1;
262
return
cast
<InvokeInst>(getInstruction())->op_end() - 3;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
CaptureTracking.cpp
120
Instruction *I =
cast
<Instruction>(U->getUser());
238
Instruction *I =
cast
<Instruction>(U->getUser());
286
if (
cast
<LoadInst>(I)->isVolatile())
296
if (V == I->getOperand(0) ||
cast
<StoreInst>(I)->isVolatile())
306
auto *ARMWI =
cast
<AtomicRMWInst>(I);
318
auto *ACXI =
cast
<AtomicCmpXchgInst>(I);
MemoryLocation.cpp
68
return getForSource(
cast
<AnyMemTransferInst>(MTI));
72
return getForSource(
cast
<AnyMemTransferInst>(MTI));
89
return getForDest(
cast
<AnyMemIntrinsic>(MI));
93
return getForDest(
cast
<AnyMemIntrinsic>(MI));
137
Arg,
cast
<ConstantInt>(II->getArgOperand(0))->getZExtValue(), AATags);
142
Arg,
cast
<ConstantInt>(II->getArgOperand(1))->getZExtValue(), AATags);
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
VerifierTest.cpp
30
Function *F =
cast
<Function>(M.getOrInsertFunction("foo", FTy));
53
Function *F =
cast
<Function>(M.getOrInsertFunction("foo", FTy));
71
Function *F1 =
cast
<Function>(M1.getOrInsertFunction("foo1", FTy));
72
Function *F2 =
cast
<Function>(M2.getOrInsertFunction("foo2", FTy));
73
Function *F3 =
cast
<Function>(M3.getOrInsertFunction("foo3", FTy));
177
auto *F =
cast
<Function>(M.getOrInsertFunction(
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Utils/
SSAUpdaterBulk.cpp
67
auto *I1 =
cast
<Instruction>(B.CreateAdd(AddOp1, ConstantInt::get(I32Ty, 5)));
68
auto *I2 =
cast
<Instruction>(B.CreateAdd(AddOp2, ConstantInt::get(I32Ty, 6)));
69
auto *I3 =
cast
<Instruction>(B.CreateAdd(SubOp1, SubOp2));
70
auto *I4 =
cast
<Instruction>(B.CreateSub(SubOp1, SubOp2));
149
auto *I1 =
cast
<Instruction>(B.CreateAdd(AddOp1, ConstantInt::get(I32Ty, 3)));
153
auto *I2 =
cast
<Instruction>(B.CreateAdd(AddOp2, ConstantInt::get(I32Ty, 4)));
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/learner/batch/
categorical_split_handler.py
146
gradients64 = math_ops.
cast
(gradients, dtypes.float64)
147
hessians64 = math_ops.
cast
(hessians, dtypes.float64)
152
per_partition_gradients = math_ops.
cast
(per_partition_gradients,
154
per_partition_hessians = math_ops.
cast
(per_partition_hessians,
164
bias_feature_ids = math_ops.
cast
(bias_feature_ids, dtypes.int64)
196
lambda: math_ops.
cast
(1, dtypes.int64),
Completed in 455 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>