/external/llvm/lib/Target/AVR/ |
D | AVR.td | 235 class Device<string Name, Family Fam, ELFArch Arch, 243 def : Device<"avr1", FamilyAVR1, ELFArchAVR1>; 244 def : Device<"avr2", FamilyAVR2, ELFArchAVR2>; 245 def : Device<"avr25", FamilyAVR25, ELFArchAVR25>; 246 def : Device<"avr3", FamilyAVR3, ELFArchAVR3>; 247 def : Device<"avr31", FamilyAVR31, ELFArchAVR31>; 248 def : Device<"avr35", FamilyAVR35, ELFArchAVR35>; 249 def : Device<"avr4", FamilyAVR4, ELFArchAVR4>; 250 def : Device<"avr5", FamilyAVR5, ELFArchAVR5>; 251 def : Device<"avr51", FamilyAVR51, ELFArchAVR51>; [all …]
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorEvaluator.h | 27 template<typename Derived, typename Device> 33 typedef typename PacketType<CoeffReturnType, Device>::type PacketReturnType; 48 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const Derived& m, const Device& device) in TensorEvaluator() 114 const Device& device() const{return m_device;} in device() 119 const Device& m_device; 147 template<typename Derived, typename Device> 148 struct TensorEvaluator<const Derived, Device> 153 typedef typename PacketType<CoeffReturnType, Device>::type PacketReturnType; 171 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const Derived& m, const Device& device) 213 const Device& device() const{return m_device;} [all …]
|
D | TensorLayoutSwap.h | 110 template<typename ArgType, typename Device> 111 struct TensorEvaluator<const TensorLayoutSwapOp<ArgType>, Device> 115 …static const int NumDims = internal::array_size<typename TensorEvaluator<ArgType, Device>::Dimensi… 119 IsAligned = TensorEvaluator<ArgType, Device>::IsAligned, 120 PacketAccess = TensorEvaluator<ArgType, Device>::PacketAccess, 121 …Layout = (static_cast<int>(TensorEvaluator<ArgType, Device>::Layout) == static_cast<int>(ColMajor)… 123 RawAccess = TensorEvaluator<ArgType, Device>::RawAccess 126 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) 136 typedef typename PacketType<CoeffReturnType, Device>::type PacketReturnType; 164 const TensorEvaluator<ArgType, Device>& impl() const { return m_impl; } [all …]
|
D | TensorAssign.h | 88 template<typename LeftArgType, typename RightArgType, typename Device> 89 struct TensorEvaluator<const TensorAssignOp<LeftArgType, RightArgType>, Device> 95 typedef typename PacketType<CoeffReturnType, Device>::type PacketReturnType; 96 typedef typename TensorEvaluator<RightArgType, Device>::Dimensions Dimensions; 100 …IsAligned = TensorEvaluator<LeftArgType, Device>::IsAligned & TensorEvaluator<RightArgType, Device… 101 …PacketAccess = TensorEvaluator<LeftArgType, Device>::PacketAccess & TensorEvaluator<RightArgType, … 102 Layout = TensorEvaluator<LeftArgType, Device>::Layout, 103 RawAccess = TensorEvaluator<LeftArgType, Device>::RawAccess 106 EIGEN_DEVICE_FUNC TensorEvaluator(const XprType& op, const Device& device) : 110 …_cast<int>(TensorEvaluator<LeftArgType, Device>::Layout) == static_cast<int>(TensorEvaluator<Right… [all …]
|
D | TensorMorphing.h | 98 template<typename NewDimensions, typename ArgType, typename Device> 99 struct TensorEvaluator<const TensorReshapingOp<NewDimensions, ArgType>, Device> 105 IsAligned = TensorEvaluator<ArgType, Device>::IsAligned, 106 PacketAccess = TensorEvaluator<ArgType, Device>::PacketAccess, 107 Layout = TensorEvaluator<ArgType, Device>::Layout, 109 RawAccess = TensorEvaluator<ArgType, Device>::RawAccess 112 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) 123 typedef typename PacketType<CoeffReturnType, Device>::type PacketReturnType; 151 EIGEN_DEVICE_FUNC const TensorEvaluator<ArgType, Device>& impl() const { return m_impl; } 154 TensorEvaluator<ArgType, Device> m_impl; [all …]
|
D | TensorRef.h | 42 template <typename Dimensions, typename Expr, typename Device> 43 …Only : public TensorLazyBaseEvaluator<Dimensions, typename TensorEvaluator<Expr, Device>::Scalar> { 46 typedef typename TensorEvaluator<Expr, Device>::Scalar Scalar; 48 …TensorLazyEvaluatorReadOnly(const Expr& expr, const Device& device) : m_impl(expr, device), m_dumm… in TensorLazyEvaluatorReadOnly() 72 TensorEvaluator<Expr, Device> m_impl; 77 template <typename Dimensions, typename Expr, typename Device> 78 class TensorLazyEvaluatorWritable : public TensorLazyEvaluatorReadOnly<Dimensions, Expr, Device> { 80 typedef TensorLazyEvaluatorReadOnly<Dimensions, Expr, Device> Base; 83 TensorLazyEvaluatorWritable(const Expr& expr, const Device& device) : Base(expr, device) { in TensorLazyEvaluatorWritable() 93 template <typename Dimensions, typename Expr, typename Device> [all …]
|
D | TensorEvalTo.h | 92 template<typename ArgType, typename Device, template <class> class MakePointer_> 93 struct TensorEvaluator<const TensorEvalToOp<ArgType, MakePointer_>, Device> 97 typedef typename TensorEvaluator<ArgType, Device>::Dimensions Dimensions; 100 typedef typename PacketType<CoeffReturnType, Device>::type PacketReturnType; 104 IsAligned = TensorEvaluator<ArgType, Device>::IsAligned, 105 PacketAccess = TensorEvaluator<ArgType, Device>::PacketAccess, 106 Layout = TensorEvaluator<ArgType, Device>::Layout, 111 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) 137 …, Aligned>(m_buffer + i, m_impl.template packet<TensorEvaluator<ArgType, Device>::IsAligned ? Alig… 166 const TensorEvaluator<ArgType, Device>& impl() const { return m_impl; } [all …]
|
D | TensorForcedEval.h | 91 template<typename ArgType, typename Device, template <class> class MakePointer_> 92 struct TensorEvaluator<const TensorForcedEvalOp<ArgType, MakePointer_>, Device> 96 typedef typename TensorEvaluator<ArgType, Device>::Dimensions Dimensions; 99 typedef typename PacketType<CoeffReturnType, Device>::type PacketReturnType; 105 Layout = TensorEvaluator<ArgType, Device>::Layout, 109 EIGEN_DEVICE_FUNC TensorEvaluator(const XprType& op, const Device& device) 127 const bool PacketAccess = internal::IsVectorizable<Device, const ArgType>::value; 128 …internal::TensorExecutor<const EvalTo, typename internal::remove_const<Device>::type, PacketAccess… 154 const TensorEvaluator<ArgType, Device>& impl() { return m_impl; } 156 const Device& device() const{return m_device;} [all …]
|
D | TensorFunctors.h | 87 template<typename Reducer, typename Device> 132 template <typename T, typename Device> 133 struct reducer_traits<SumReducer<T>, Device> { 136 PacketAccess = PacketType<T, Device>::HasAdd 186 template <typename T, typename Device> 187 struct reducer_traits<MeanReducer<T>, Device> { 190 PacketAccess = PacketType<T, Device>::HasAdd 253 template <typename T, typename Device> 254 struct reducer_traits<MaxReducer<T>, Device> { 257 PacketAccess = PacketType<T, Device>::HasMax [all …]
|
D | TensorConcatenation.h | 109 template<typename Axis, typename LeftArgType, typename RightArgType, typename Device> 110 struct TensorEvaluator<const TensorConcatenationOp<Axis, LeftArgType, RightArgType>, Device> 114 …static const int NumDims = internal::array_size<typename TensorEvaluator<LeftArgType, Device>::Dim… 115 …ghtNumDims = internal::array_size<typename TensorEvaluator<RightArgType, Device>::Dimensions>::val… 119 typedef typename PacketType<CoeffReturnType, Device>::type PacketReturnType; 122 …PacketAccess = TensorEvaluator<LeftArgType, Device>::PacketAccess & TensorEvaluator<RightArgType, … 123 Layout = TensorEvaluator<LeftArgType, Device>::Layout, 127 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) 130 …_cast<int>(TensorEvaluator<LeftArgType, Device>::Layout) == static_cast<int>(TensorEvaluator<Right… 285 TensorEvaluator<LeftArgType, Device> m_leftImpl; [all …]
|
D | TensorReverse.h | 100 template<typename ReverseDimensions, typename ArgType, typename Device> 101 struct TensorEvaluator<const TensorReverseOp<ReverseDimensions, ArgType>, Device> 109 typedef typename PacketType<CoeffReturnType, Device>::type PacketReturnType; 114 PacketAccess = TensorEvaluator<ArgType, Device>::PacketAccess, 115 Layout = TensorEvaluator<ArgType, Device>::Layout, 121 const Device& device) 230 TensorEvaluator<ArgType, Device> m_impl; 236 template <typename ReverseDimensions, typename ArgType, typename Device> 237 struct TensorEvaluator<TensorReverseOp<ReverseDimensions, ArgType>, Device> 239 Device> { [all …]
|
D | TensorShuffling.h | 99 template<typename Shuffle, typename ArgType, typename Device> 100 struct TensorEvaluator<const TensorShufflingOp<Shuffle, ArgType>, Device> 104 …static const int NumDims = internal::array_size<typename TensorEvaluator<ArgType, Device>::Dimensi… 108 typedef typename PacketType<CoeffReturnType, Device>::type PacketReturnType; 114 Layout = TensorEvaluator<ArgType, Device>::Layout, 119 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) 122 const typename TensorEvaluator<ArgType, Device>::Dimensions& input_dims = m_impl.dimensions(); 213 TensorEvaluator<ArgType, Device> m_impl; 218 template<typename Shuffle, typename ArgType, typename Device> 219 struct TensorEvaluator<TensorShufflingOp<Shuffle, ArgType>, Device> [all …]
|
/external/webrtc/talk/media/devices/ |
D | devicemanager.h | 69 virtual bool GetAudioInputDevices(std::vector<Device>* devices) = 0; 70 virtual bool GetAudioOutputDevices(std::vector<Device>* devices) = 0; 72 virtual bool GetAudioInputDevice(const std::string& name, Device* out) = 0; 73 virtual bool GetAudioOutputDevice(const std::string& name, Device* out) = 0; 75 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs) = 0; 76 virtual bool GetVideoCaptureDevice(const std::string& name, Device* out) = 0; 97 virtual VideoCapturer* CreateVideoCapturer(const Device& device) const = 0; 140 virtual bool GetAudioInputDevices(std::vector<Device>* devices); 141 virtual bool GetAudioOutputDevices(std::vector<Device>* devices); 143 virtual bool GetAudioInputDevice(const std::string& name, Device* out); [all …]
|
D | fakedevicemanager.h | 52 std::vector<Device> devices; in GetCapabilities() 65 virtual bool GetAudioInputDevices(std::vector<Device>* devs) { in GetAudioInputDevices() 69 virtual bool GetAudioOutputDevices(std::vector<Device>* devs) { in GetAudioOutputDevices() 73 virtual bool GetAudioInputDevice(const std::string& name, Device* out) { in GetAudioInputDevice() 76 virtual bool GetAudioOutputDevice(const std::string& name, Device* out) { in GetAudioOutputDevice() 79 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs) { in GetVideoCaptureDevices() 105 virtual VideoCapturer* CreateVideoCapturer(const Device& device) const { in CreateVideoCapturer() 151 virtual bool GetDefaultVideoCaptureDevice(Device* device) { in GetDefaultVideoCaptureDevice() 160 bool QtKitToSgDevice(const std::string& qtkit_name, Device* out) { in QtKitToSgDevice() 170 input_devices_.push_back(Device(devices[i], in SetAudioInputDevices() [all …]
|
D | devicemanager.cc | 94 std::vector<Device> devices; in GetCapabilities() 108 bool DeviceManager::GetAudioInputDevices(std::vector<Device>* devices) { in GetAudioInputDevices() 112 bool DeviceManager::GetAudioOutputDevices(std::vector<Device>* devices) { in GetAudioOutputDevices() 116 bool DeviceManager::GetAudioInputDevice(const std::string& name, Device* out) { in GetAudioInputDevice() 120 bool DeviceManager::GetAudioOutputDevice(const std::string& name, Device* out) { in GetAudioOutputDevice() 124 bool DeviceManager::GetVideoCaptureDevices(std::vector<Device>* devices) { in GetVideoCaptureDevices() 129 Device dev("camera", "1"); // name and ID in GetVideoCaptureDevices() 138 Device* out) { in GetVideoCaptureDevice() 144 std::vector<Device> devices; in GetVideoCaptureDevice() 149 for (std::vector<Device>::const_iterator it = devices.begin(); in GetVideoCaptureDevice() [all …]
|
D | devicemanager_unittest.cc | 59 using cricket::Device; 77 virtual cricket::VideoCapturer* Create(const cricket::Device& device) { in Create() 125 std::vector<Device> devices; in TEST() 155 std::vector<Device> audio_ins, audio_outs, video_ins; in TEST() 156 std::vector<cricket::Device> video_in_devs; in TEST() 157 cricket::Device def_video; in TEST() 173 Device device; in TEST() 188 Device device; in TEST() 191 std::vector<Device> video_ins; in TEST() 208 Device device; in TEST() [all …]
|
D | win32devicemanager.cc | 98 static bool GetDevices(const CLSID& catid, std::vector<Device>* out); 99 static bool GetCoreAudioDevices(bool input, std::vector<Device>* devs); 100 static bool GetWaveDevices(bool input, std::vector<Device>* devs); 142 bool Win32DeviceManager::GetDefaultVideoCaptureDevice(Device* device) { in GetDefaultVideoCaptureDevice() 146 std::vector<Device> devices; in GetDefaultVideoCaptureDevice() 162 std::vector<Device>* devs) { in GetAudioDevices() 175 bool Win32DeviceManager::GetVideoCaptureDevices(std::vector<Device>* devices) { in GetVideoCaptureDevices() 183 bool GetDevices(const CLSID& catid, std::vector<Device>* devices) { in GetDevices() 220 devices->push_back(Device(name_str, path_str)); in GetDevices() 248 HRESULT CricketDeviceFromImmDevice(IMMDevice* device, Device* out) { in CricketDeviceFromImmDevice() [all …]
|
D | dummydevicemanager_unittest.cc | 31 using cricket::Device; 53 std::vector<Device> audio_ins, audio_outs, video_ins; in TEST() 62 Device device; in TEST() 77 Device device; in TEST() 87 std::vector<Device> audio_ins, audio_outs, video_ins; in TEST() 88 audio_ins.push_back(Device(imaginary, imaginary)); in TEST() 89 audio_outs.push_back(Device(imaginary, imaginary)); in TEST() 90 video_ins.push_back(Device(imaginary, imaginary)); in TEST()
|
/external/tcpdump/tests/ |
D | udld-v.out | 3 Device-ID TLV (0x0001) TLV, length 11, FOC1031Z7JG 8 Device Name TLV (0x0006) TLV, length 2, S1 12 Device-ID TLV (0x0001) TLV, length 11, FOC1025X4W3 17 Device Name TLV (0x0006) TLV, length 2, S2 21 Device-ID TLV (0x0001) TLV, length 11, FOC1031Z7JG 26 Device Name TLV (0x0006) TLV, length 2, S1 30 Device-ID TLV (0x0001) TLV, length 11, FOC1025X4W3 35 Device Name TLV (0x0006) TLV, length 2, S2 39 Device-ID TLV (0x0001) TLV, length 11, FOC1031Z7JG 44 Device Name TLV (0x0006) TLV, length 2, S1 [all …]
|
/external/clang/test/Index/ |
D | headerfile-comment-to-html.m | 14 \headerfile Device.h <Foundation/Device.h> 16 …A Device represents a remote or local computer or device with which the Developer Tools can intera… 18 @interface Device interface 20 …Device:{{.*}} FullCommentAsXML=[<Other file="{{[^"]+}}headerfile-comment-to-html.m" line="[[@LINE-… 27 // CHECK-NEXT: (CXComment_Text Text=[ Device.h ]) 29 // CHECK-NEXT: (CXComment_Text Text=[/Device.h>]))) 31 …_Text Text=[ A Device represents a remote or local computer or device with which the Develope… 36 \brief This is Sensor on the Device. 37 Its purpose is not to Sense Device's heat. 42 …d</Declaration><Abstract><Para> This is Sensor on the Device. Its purpose is not to Sense Devic… [all …]
|
/external/vulkan-validation-layers/tests/ |
D | vktestbinding.h | 36 class Device; variable 139 class Device : public internal::Handle<VkDevice> { 141 explicit Device(VkPhysicalDevice phy) : phy_(phy) {} in Device() function 142 ~Device(); 245 void init(const Device &dev, const VkMemoryAllocateInfo &info); 264 void init(const Device &dev, const VkFenceCreateInfo &info); 278 void init(const Device &dev, const VkSemaphoreCreateInfo &info); 288 void init(const Device &dev, const VkEventCreateInfo &info); 305 void init(const Device &dev, const VkQueryPoolCreateInfo &info); 316 explicit Buffer(const Device &dev, const VkBufferCreateInfo &info) { init(dev, info); } in Buffer() [all …]
|
D | vktestbinding.cpp | 66 VkMemoryAllocateInfo get_resource_alloc_info(const vk_testing::Device &dev, const VkMemoryRequireme… in get_resource_alloc_info() 236 Device::~Device() { in ~Device() 249 void Device::init(std::vector<const char *> &extensions, VkPhysicalDeviceFeatures *features) { in init() 295 void Device::init(const VkDeviceCreateInfo &info) { in init() 305 void Device::init_queues() { in init_queues() 343 void Device::init_formats() { in init_formats() 362 VkFormatProperties Device::format_properties(VkFormat format) { in format_properties() 369 void Device::wait() { EXPECT(vkDeviceWaitIdle(handle()) == VK_SUCCESS); } in wait() 371 VkResult Device::wait(const std::vector<const Fence *> &fences, bool wait_all, uint64_t timeout) { in wait() 379 void Device::update_descriptor_sets(const std::vector<VkWriteDescriptorSet> &writes, in update_descriptor_sets() [all …]
|
/external/webrtc/talk/media/webrtc/ |
D | fakewebrtcdeviceinfo.h | 39 struct Device { struct 40 Device(const std::string& n, const std::string& i) : name(n), id(i) {} in Device() argument 48 devices_.push_back(Device(device_name, device_id)); in AddDevice() argument 52 Device* dev = GetDeviceById( in AddCapability() 67 Device* dev = GetDeviceByIndex(device_num); in GetDeviceName() 80 Device* dev = GetDeviceById(device_id); in NumberOfCapabilities() 87 Device* dev = GetDeviceById(device_id); in GetCapability() 109 Device* GetDeviceByIndex(size_t num) { in GetDeviceByIndex() 112 Device* GetDeviceById(const char* device_id) { in GetDeviceById() 122 std::vector<Device> devices_;
|
/external/swiftshader/src/OpenGL/libGLES_CM/ |
D | Device.cpp | 35 Device::Device(Context *context) : Renderer(context, OpenGL, true), context(context) in Device() function in es1::Device 126 Device::~Device() in ~Device() 149 void Device::clearColor(float red, float green, float blue, float alpha, unsigned int rgbaMask) in clearColor() 172 void Device::clearDepth(float z) in clearDepth() 190 void Device::clearStencil(unsigned int stencil, unsigned int mask) in clearStencil() 207 …egl::Image *Device::createDepthStencilSurface(unsigned int width, unsigned int height, sw::Format … in createDepthStencilSurface() 251 …egl::Image *Device::createRenderTarget(unsigned int width, unsigned int height, sw::Format format,… in createRenderTarget() 270 …void Device::drawIndexedPrimitive(sw::DrawType type, unsigned int indexOffset, unsigned int primit… in drawIndexedPrimitive() 280 void Device::drawPrimitive(sw::DrawType type, unsigned int primitiveCount) in drawPrimitive() 292 void Device::setScissorEnable(bool enable) in setScissorEnable() [all …]
|
/external/swiftshader/src/OpenGL/libGL/ |
D | Device.cpp | 35 Device::Device(Context *context) : Renderer(context, OpenGL, true), context(context) in Device() function in gl::Device 167 Device::~Device() in ~Device() 184 void Device::clearColor(float red, float green, float blue, float alpha, unsigned int rgbaMask) in clearColor() 207 void Device::clearDepth(float z) in clearDepth() 225 void Device::clearStencil(unsigned int stencil, unsigned int mask) in clearStencil() 242 …Image *Device::createDepthStencilSurface(unsigned int width, unsigned int height, sw::Format forma… in createDepthStencilSurface() 286 …Image *Device::createRenderTarget(unsigned int width, unsigned int height, sw::Format format, int … in createRenderTarget() 305 …void Device::drawIndexedPrimitive(PrimitiveType type, unsigned int indexOffset, unsigned int primi… in drawIndexedPrimitive() 361 void Device::drawPrimitive(PrimitiveType primitiveType, unsigned int primitiveCount) in drawPrimitive() 388 void Device::setDepthStencilSurface(Image *depthStencil) in setDepthStencilSurface() [all …]
|