Home
last modified time | relevance | path

Searched refs:copyValue (Results 1 – 25 of 30) sorted by relevance

12

/external/angle/src/libANGLE/
DCLKernel.cpp27 const void *copyValue = nullptr; in getInfo() local
33 copyValue = mInfo.functionName.c_str(); in getInfo()
37 copyValue = &mInfo.numArgs; in getInfo()
42 copyValue = &valUInt; in getInfo()
47 copyValue = &valPointer; in getInfo()
52 copyValue = &valPointer; in getInfo()
56 copyValue = mInfo.attributes.c_str(); in getInfo()
71 if (copyValue != nullptr) in getInfo()
73 std::memcpy(value, copyValue, copySize); in getInfo()
104 const void *copyValue = nullptr; in getWorkGroupInfo() local
[all …]
DCLDevice.cpp41 const void *copyValue = nullptr; in getInfo() local
102 copyValue = &valUInt; in getInfo()
122 copyValue = &valULong; in getInfo()
135 copyValue = &valSizeT; in getInfo()
153 copyValue = valString.data(); in getInfo()
158 copyValue = &mInfo.type; in getInfo()
163 copyValue = &valUInt; in getInfo()
167 copyValue = mInfo.maxWorkItemSizes.data(); in getInfo()
172 copyValue = &mInfo.maxMemAllocSize; in getInfo()
176 copyValue = &mInfo.imageSupport; in getInfo()
[all …]
DCLImage.cpp38 const void *copyValue = nullptr; in getInfo() local
44 copyValue = &mFormat; in getInfo()
49 copyValue = &valSizeT; in getInfo()
53 copyValue = &mDesc.rowPitch; in getInfo()
57 copyValue = &mDesc.slicePitch; in getInfo()
61 copyValue = &mDesc.width; in getInfo()
65 copyValue = &mDesc.height; in getInfo()
69 copyValue = &mDesc.depth; in getInfo()
73 copyValue = &mDesc.arraySize; in getInfo()
78 copyValue = &valPointer; in getInfo()
[all …]
DCLSampler.cpp25 const void *copyValue = nullptr; in getInfo() local
32 copyValue = &valUInt; in getInfo()
37 copyValue = &valPointer; in getInfo()
41 copyValue = &mNormalizedCoords; in getInfo()
46 copyValue = &valUInt; in getInfo()
51 copyValue = &valUInt; in getInfo()
55 copyValue = mProperties.data(); in getInfo()
70 if (copyValue != nullptr) in getInfo()
72 std::memcpy(value, copyValue, copySize); in getInfo()
DCLMemory.cpp60 const void *copyValue = nullptr; in getInfo() local
67 copyValue = &valUInt; in getInfo()
71 copyValue = &mFlags; in getInfo()
75 copyValue = &mSize; in getInfo()
79 copyValue = &mHostPtr; in getInfo()
84 copyValue = &valUInt; in getInfo()
89 copyValue = &valUInt; in getInfo()
94 copyValue = &valPointer; in getInfo()
99 copyValue = &valPointer; in getInfo()
103 copyValue = &mOffset; in getInfo()
[all …]
DCLEvent.cpp33 const void *copyValue = nullptr; in getInfo() local
40 copyValue = &valPointer; in getInfo()
44 copyValue = &mCommandType; in getInfo()
49 copyValue = &valUInt; in getInfo()
59 copyValue = &execStatus; in getInfo()
65 copyValue = &valPointer; in getInfo()
80 if (copyValue != nullptr) in getInfo()
82 std::memcpy(value, copyValue, copySize); in getInfo()
DCLPlatform.cpp115 const void *copyValue = nullptr; in getInfo() local
121 copyValue = mInfo.profile.c_str(); in getInfo()
125 copyValue = mInfo.versionStr.c_str(); in getInfo()
129 copyValue = &mInfo.version; in getInfo()
133 copyValue = mInfo.name.c_str(); in getInfo()
137 copyValue = kVendor; in getInfo()
141 copyValue = mInfo.extensions.c_str(); in getInfo()
145 copyValue = mInfo.extensionsWithVersion.data(); in getInfo()
150 copyValue = &mInfo.hostTimerRes; in getInfo()
154 copyValue = kIcdSuffix; in getInfo()
[all …]
DCLProgram.cpp78 const void *copyValue = nullptr; in getInfo() local
85 copyValue = &valUInt; in getInfo()
90 copyValue = &valPointer; in getInfo()
95 copyValue = &valUInt; in getInfo()
104 copyValue = devices.data(); in getInfo()
108 copyValue = mSource.c_str(); in getInfo()
112 copyValue = mIL.c_str(); in getInfo()
134 if (copyValue != nullptr) in getInfo()
136 std::memcpy(value, copyValue, copySize); in getInfo()
DCLContext.cpp27 const void *copyValue = nullptr; in getInfo() local
34 copyValue = &valUInt; in getInfo()
39 copyValue = &valUInt; in getInfo()
48 copyValue = devices.data(); in getInfo()
52 copyValue = mProperties.data(); in getInfo()
68 if (copyValue != nullptr) in getInfo()
70 std::memcpy(value, copyValue, copySize); in getInfo()
DCLCommandQueue.cpp49 const void *copyValue = nullptr; in getInfo() local
56 copyValue = &valPointer; in getInfo()
61 copyValue = &valPointer; in getInfo()
66 copyValue = &valUInt; in getInfo()
71 copyValue = &properties; in getInfo()
75 copyValue = mPropArray.data(); in getInfo()
79 copyValue = &mSize; in getInfo()
84 copyValue = &valPointer; in getInfo()
99 if (copyValue != nullptr) in getInfo()
101 std::memcpy(value, copyValue, copySize); in getInfo()
/external/mockito/src/main/java/org/mockito/internal/util/reflection/
DFieldCopier.java11 public <T> void copyValue(T from, T to, Field field) throws IllegalAccessException { in copyValue() method in FieldCopier
DLenientCopyTool.java41 fieldCopier.copyValue(from, mock, field); in copyValues()
/external/mockito/src/test/java/org/mockito/internal/util/reflection/
DLenientCopyToolTest.java152 copyValue(anyObject(), anyObject(), any(Field.class)); in shouldContinueEvenIfThereAreProblemsCopyingSingleFieldValue()
158 verify(tool.fieldCopier, atLeast(3)).copyValue(any(), any(), any(Field.class)); in shouldContinueEvenIfThereAreProblemsCopyingSingleFieldValue()
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyFastISel.cpp141 unsigned copyValue(unsigned Reg);
391 return copyValue(Reg); in zeroExtendToI32()
397 return copyValue(Reg); in zeroExtendToI32()
424 return copyValue(Reg); in signExtendToI32()
454 return copyValue(Reg); in zeroExtend()
473 return copyValue(Reg); in signExtend()
515 unsigned WebAssemblyFastISel::copyValue(unsigned Reg) { in copyValue() function in WebAssemblyFastISel
/external/llvm-project/llvm/lib/Target/WebAssembly/
DWebAssemblyFastISel.cpp172 unsigned copyValue(unsigned Reg);
452 return copyValue(Reg); in zeroExtendToI32()
458 return copyValue(Reg); in zeroExtendToI32()
488 return copyValue(Reg); in signExtendToI32()
518 return copyValue(Reg); in zeroExtend()
540 return copyValue(Reg); in signExtend()
590 unsigned WebAssemblyFastISel::copyValue(unsigned Reg) { in copyValue() function in WebAssemblyFastISel
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyFastISel.cpp171 unsigned copyValue(unsigned Reg);
451 return copyValue(Reg); in zeroExtendToI32()
457 return copyValue(Reg); in zeroExtendToI32()
487 return copyValue(Reg); in signExtendToI32()
517 return copyValue(Reg); in zeroExtend()
539 return copyValue(Reg); in signExtend()
589 unsigned WebAssemblyFastISel::copyValue(unsigned Reg) { in copyValue() function in WebAssemblyFastISel
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowArscAssetManager.java549 return copyValue(outValue, res, value.get(), ref.get(), block, typeSpecFlags.get(), in loadResourceValue()
556 …private static int copyValue(TypedValue outValue, ResTable table, Res_value value, int ref, int b… in copyValue() method in ShadowArscAssetManager
558 return copyValue(outValue, table, value, ref, block, typeSpecFlags, null); in copyValue()
561 …private static int copyValue(TypedValue outValue, ResTable table, Res_value value, int ref, int b… in copyValue() method in ShadowArscAssetManager
664 return copyValue(outValue, res, valueRef.get(), ref.get(), block, typeSpecFlags.get()); in loadResourceBagValueInternal()
1046 …return block >= 0 ? copyValue(outValue, res, value.get(), ref.get(), block, typeSpecFlags.get(), n… in loadThemeAttributeValue()
/external/llvm/lib/Transforms/Scalar/
DLICM.cpp379 CurAST->copyValue(&I, C); in hoistRegion()
831 AST.copyValue(LI, V); in replaceLoadWithValue()
1134 AST->copyValue(From, To); in cloneBasicBlockAnalysis()
/external/llvm-project/llvm/lib/Analysis/
DAliasSetTracker.cpp583 void AliasSetTracker::copyValue(Value *From, Value *To) { in copyValue() function in AliasSetTracker
723 AST->copyValue(getValPtr(), V); in allUsesReplacedWith()
/external/llvm/lib/Analysis/
DAliasSetTracker.cpp590 void AliasSetTracker::copyValue(Value *From, Value *To) { in copyValue() function in AliasSetTracker
671 AST->copyValue(getValPtr(), V); in allUsesReplacedWith()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DAliasSetTracker.cpp587 void AliasSetTracker::copyValue(Value *From, Value *To) { in copyValue() function in AliasSetTracker
725 AST->copyValue(getValPtr(), V); in allUsesReplacedWith()
/external/deqp/external/vulkancts/modules/vulkan/binding_model/
DvktBindingDescriptorCopyTests.cpp104 …virtual void copyValue (const Descriptor& src, deUint32 srcElement, deUint32 dstElement, …
306 …void copyValue (const Descriptor& src, deUint32 srcElement, deUint32 dstElement, deUint3…
478 void Descriptor::copyValue (const Descriptor& src, in copyValue() function in vkt::BindingModel::__anone49c327d0111::Descriptor
1165 void InputAttachmentDescriptor::copyValue (const Descriptor& src, in copyValue() function in vkt::BindingModel::__anone49c327d0111::InputAttachmentDescriptor
1170 Descriptor::copyValue(src, srcElement, dstElement, numElements); in copyValue()
1452 …m_descriptorSets[descriptorCopy.dstSet]->getBindings()[descriptorCopy.dstBinding]->copyValue(*m_de… in copyDescriptor()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DAliasSetTracker.h413 void copyValue(Value *From, Value *To);
/external/llvm-project/llvm/include/llvm/Analysis/
DAliasSetTracker.h412 void copyValue(Value *From, Value *To);
/external/llvm/include/llvm/Analysis/
DAliasSetTracker.h399 void copyValue(Value *From, Value *To);

12