Home
last modified time | relevance | path

Searched refs:Device (Results 1 – 25 of 903) sorted by relevance

12345678910>>...37

/external/llvm/lib/Target/AVR/
DAVR.td235 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/
DTensorEvaluator.h27 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 …]
DTensorLayoutSwap.h110 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 …]
DTensorAssign.h88 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 …]
DTensorMorphing.h98 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 …]
DTensorRef.h42 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 …]
DTensorEvalTo.h92 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 …]
DTensorForcedEval.h91 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 …]
/external/webrtc/talk/media/devices/
Ddevicemanager.h69 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 …]
Dfakedevicemanager.h52 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 …]
Ddevicemanager.cc94 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 …]
Ddevicemanager_unittest.cc59 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 …]
Dwin32devicemanager.cc98 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 …]
/external/tcpdump/tests/
Dudld-v.out3 Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG
8 Device Name TLV (0x0006) TLV, length 6, S1
12 Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3
17 Device Name TLV (0x0006) TLV, length 6, S2
21 Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG
26 Device Name TLV (0x0006) TLV, length 6, S1
30 Device-ID TLV (0x0001) TLV, length 15, FOC1025X4W3
35 Device Name TLV (0x0006) TLV, length 6, S2
39 Device-ID TLV (0x0001) TLV, length 15, FOC1031Z7JG
44 Device Name TLV (0x0006) TLV, length 6, S1
[all …]
/external/swiftshader/src/OpenGL/libGLESv2/
DProgram.h32 class Device; variable
175 void applyUniforms(Device *device);
176 void applyUniformBuffers(Device *device, BufferBinding* uniformBuffers);
177 void applyTransformFeedback(Device *device, TransformFeedback* transformFeedback);
210 void validate(Device* device);
235 bool applyUniform(Device *device, GLint location, float* data);
236 bool applyUniform1bv(Device *device, GLint location, GLsizei count, const GLboolean *v);
237 bool applyUniform2bv(Device *device, GLint location, GLsizei count, const GLboolean *v);
238 bool applyUniform3bv(Device *device, GLint location, GLsizei count, const GLboolean *v);
239 bool applyUniform4bv(Device *device, GLint location, GLsizei count, const GLboolean *v);
[all …]
DDevice.cpp36 Device::Device(Context *context) : Renderer(context, OpenGL, true), context(context) in Device() function in es2::Device
150 Device::~Device() in ~Device()
177 void* Device::operator new(size_t size) in operator new()
179 ASSERT(size == sizeof(Device)); // This operator can't be called from a derived class in operator new()
180 return sw::allocate(sizeof(Device), 16); in operator new()
183 void Device::operator delete(void * mem) in operator delete()
188 void Device::clearColor(float red, float green, float blue, float alpha, unsigned int rgbaMask) in clearColor()
217 void Device::clearDepth(float z) in clearDepth()
235 void Device::clearStencil(unsigned int stencil, unsigned int mask) in clearStencil()
252 …egl::Image *Device::createDepthStencilSurface(unsigned int width, unsigned int height, sw::Format … in createDepthStencilSurface()
[all …]
/external/clang/test/Index/
Dheaderfile-comment-to-html.m14 \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
20Device:{{.*}} 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/
Dvktestbinding.h36 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 …]
Dvktestbinding.cpp66 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/
Dfakewebrtcdeviceinfo.h39 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/libmtp/logs/
Dmtp-detect-samsung-gt-i9300.txt18 Device number: 9
19 Device entry info:
24 Device flags: 0x48000003
27 Device recognized as MTP, no further probing.
28 Device info:
31 Device version: V1.0
103 Device Properties Supported:
106 0xd402: Friendly Device Name
108 0xd407: Perceived Device Type
110 0xd102: Device Certificate
[all …]
Dmtp-detect-lg-g3.txt2 Device 0 (VID=1004 and PID=633e) is UNKNOWN.
19 Device number: 4
20 Device entry info:
25 Device flags: 0x08008106
28 Device recognized as MTP, no further probing.
29 Device info:
32 Device version: 1.0
Dmtp-detect-zuk-z1.txt2 Device 0 (VID=2b4c and PID=1005) is UNKNOWN in libmtp v1.1.12.
19 Device number: 2
20 Device entry info:
25 Device flags: 0x18008106
28 Device recognized as MTP, no further probing.
29 Device info:
32 Device version: 1.0
/external/swiftshader/src/OpenGL/libGLES_CM/
DDevice.cpp36 Device::Device(Context *context) : Renderer(context, OpenGL, true), context(context) in Device() function in es1::Device
127 Device::~Device() in ~Device()
151 void* Device::operator new(size_t size) in operator new()
153 ASSERT(size == sizeof(Device)); // This operator can't be called from a derived class in operator new()
154 return sw::allocate(sizeof(Device), 16); in operator new()
157 void Device::operator delete(void * mem) in operator delete()
162 void Device::clearColor(float red, float green, float blue, float alpha, unsigned int rgbaMask) in clearColor()
185 void Device::clearDepth(float z) in clearDepth()
203 void Device::clearStencil(unsigned int stencil, unsigned int mask) in clearStencil()
220 …egl::Image *Device::createDepthStencilSurface(unsigned int width, unsigned int height, sw::Format … in createDepthStencilSurface()
[all …]
/external/swiftshader/src/OpenGL/libGL/
DDevice.cpp36 Device::Device(Context *context) : Renderer(context, OpenGL, true), context(context) in Device() function in gl::Device
168 Device::~Device() in ~Device()
186 void* Device::operator new(size_t size) in operator new()
188 ASSERT(size == sizeof(Device)); // This operator can't be called from a derived class in operator new()
189 return sw::allocate(sizeof(gl::Device), 16); in operator new()
192 void Device::operator delete(void * mem) in operator delete()
197 void Device::clearColor(float red, float green, float blue, float alpha, unsigned int rgbaMask) in clearColor()
220 void Device::clearDepth(float z) in clearDepth()
238 void Device::clearStencil(unsigned int stencil, unsigned int mask) in clearStencil()
255 …Image *Device::createDepthStencilSurface(unsigned int width, unsigned int height, sw::Format forma… in createDepthStencilSurface()
[all …]

12345678910>>...37