/external/opencv3/modules/cudev/include/opencv2/cudev/warp/ |
D | shuffle.hpp | 107 #define CV_CUDEV_SHFL_VEC_INST(input_type) \ argument 108 …__device__ __forceinline__ input_type ## 1 shfl(const input_type ## 1 & val, int srcLane, int widt… 110 return VecTraits<input_type ## 1>::make( \ 114 …__device__ __forceinline__ input_type ## 2 shfl(const input_type ## 2 & val, int srcLane, int widt… 116 return VecTraits<input_type ## 2>::make( \ 121 …__device__ __forceinline__ input_type ## 3 shfl(const input_type ## 3 & val, int srcLane, int widt… 123 return VecTraits<input_type ## 3>::make( \ 129 …__device__ __forceinline__ input_type ## 4 shfl(const input_type ## 4 & val, int srcLane, int widt… 131 return VecTraits<input_type ## 4>::make( \ 198 #define CV_CUDEV_SHFL_UP_VEC_INST(input_type) \ argument [all …]
|
/external/autotest/client/cros/input_playback/ |
D | input_playback.py | 17 def __init__(self, input_type): argument 18 self.input_type = input_type # e.g. 'touchpad' 28 s = '%s:' % self.input_type 103 def has(self, input_type): argument 109 return input_type in self.devices 117 def emulate(self, input_type='mouse', property_file=None): argument 134 new_device = Device(input_type) 141 if input_type not in self._DEFAULT_PROPERTY_FILES: 143 'type %s' % input_type) 146 current_dir, self._DEFAULT_PROPERTY_FILES[input_type]) [all …]
|
/external/autotest/client/site_tests/touch_WakeupSource/ |
D | touch_WakeupSource.py | 27 def _find_wakeup_file(self, input_type): argument 39 device_dir = self.player.devices[input_type].device_dir 41 raise error.TestError('No device directory for %s!' % input_type) 45 logging.info('%s not found for %s', filename, input_type) 48 event = self.player.devices[input_type].node.split('/')[-1] 61 logging.info('Could not find parent bus for %s.', input_type) 64 logging.info('Parent bus of %s is %s.', input_type, parent) 72 def _is_wake_source(self, input_type): argument 83 filename = self._find_wakeup_file(input_type) 89 logging.info('Found that %s is a wake source.', input_type) [all …]
|
/external/autotest/client/site_tests/touch_UpdateErrors/ |
D | touch_UpdateErrors.py | 60 def _check_updates(self, input_type): argument 68 hw_id = self.player.devices[input_type].hw_id 70 raise error.TestError('%s has no valid hw_id!' % input_type) 91 def run_once(self, input_type='touchpad'): argument 93 if not self.player.has(input_type): 94 raise error.TestError('No %s found on this device!' % input_type) 101 self._check_updates(input_type)
|
D | control.touchscreen | 24 job.run_test('touch_UpdateErrors', input_type='touchscreen')
|
D | control.touchpad | 24 job.run_test('touch_UpdateErrors', input_type='touchpad')
|
/external/opencv3/modules/core/include/opencv2/core/cuda/ |
D | vec_math.hpp | 140 #define CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(op, input_type, output_type) \ argument 141 __device__ __forceinline__ output_type ## 1 operator op(const input_type ## 1 & a) \ 145 __device__ __forceinline__ output_type ## 2 operator op(const input_type ## 2 & a) \ 149 __device__ __forceinline__ output_type ## 3 operator op(const input_type ## 3 & a) \ 153 __device__ __forceinline__ output_type ## 4 operator op(const input_type ## 4 & a) \ 184 #define CV_CUDEV_IMPLEMENT_VEC_UNARY_FUNC(func_name, func, input_type, output_type) \ argument 185 __device__ __forceinline__ output_type ## 1 func_name(const input_type ## 1 & a) \ 189 __device__ __forceinline__ output_type ## 2 func_name(const input_type ## 2 & a) \ 193 __device__ __forceinline__ output_type ## 3 func_name(const input_type ## 3 & a) \ 197 __device__ __forceinline__ output_type ## 4 func_name(const input_type ## 4 & a) \ [all …]
|
/external/autotest/client/site_tests/touch_HasInput/ |
D | touch_HasInput.py | 13 def run_once(self, input_type=''): argument 20 if not input_type: 23 if not self.player.has(input_type): 24 raise error.TestFail('Device does not have a %s!' % input_type)
|
D | control.touchscreen | 24 job.run_test('touch_HasInput', input_type='touchscreen')
|
D | control.touchpad | 24 job.run_test('touch_HasInput', input_type='touchpad')
|
/external/opencv3/modules/cudev/include/opencv2/cudev/util/ |
D | vec_math.hpp | 138 #define CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(op, input_type, output_type) \ argument 139 __device__ __forceinline__ output_type ## 1 operator op(const input_type ## 1 & a) \ 143 __device__ __forceinline__ output_type ## 2 operator op(const input_type ## 2 & a) \ 147 __device__ __forceinline__ output_type ## 3 operator op(const input_type ## 3 & a) \ 151 __device__ __forceinline__ output_type ## 4 operator op(const input_type ## 4 & a) \ 182 #define CV_CUDEV_IMPLEMENT_VEC_UNARY_FUNC(func_name, func, input_type, output_type) \ argument 183 __device__ __forceinline__ output_type ## 1 func_name(const input_type ## 1 & a) \ 187 __device__ __forceinline__ output_type ## 2 func_name(const input_type ## 2 & a) \ 191 __device__ __forceinline__ output_type ## 3 func_name(const input_type ## 3 & a) \ 195 __device__ __forceinline__ output_type ## 4 func_name(const input_type ## 4 & a) \ [all …]
|
/external/autotest/client/cros/ |
D | touch_playback_test_base.py | 55 self.player.emulate(input_type='mouse', property_file=mouse_props) 63 def _find_test_files(self, input_type, gestures): argument 77 hw_id = self.player.devices[input_type].hw_id 79 raise error.TestError('No valid hw_id for this %s!' % input_type) 84 filename = '%s_%s_%s_%s' % (self._platform, input_type, hw_id, 95 def _find_test_files_from_directions(self, input_type, fmt_str, directions): argument 108 temp_filepaths = self._find_test_files(input_type, gestures) 123 self.player.emulate(input_type='mouse', property_file=property_file) 256 'mouse_center_cursor_gesture', input_type='mouse')
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_service.cc | 148 sub_vars["input_type"] = ClassName(method->input_type(), true); in GenerateMethodSignatures() 219 sub_vars["input_type"] = ClassName(method->input_type(), true); in GenerateNotImplementedMethods() 249 sub_vars["input_type"] = ClassName(method->input_type(), true); in GenerateCallMethod() 290 (which == REQUEST) ? method->input_type() : method->output_type(); in GenerateGetPrototype() 317 sub_vars["input_type"] = ClassName(method->input_type(), true); in GenerateStubMethods()
|
/external/protobuf/src/google/protobuf/compiler/java/ |
D | java_service.cc | 211 method->input_type()); in GenerateCallMethod() 259 method->input_type()); in GenerateCallBlockingMethod() 305 (which == REQUEST) ? method->input_type() : method->output_type()); in GenerateGetPrototype() 445 vars["input"] = name_resolver_->GetImmutableClassName(method->input_type()); in GenerateMethodSignature() 460 vars["input"] = name_resolver_->GetImmutableClassName(method->input_type()); in GenerateBlockingMethodSignature()
|
/external/v8/src/compiler/ |
D | change-lowering.cc | 427 Type* field_type, Type* input_type) { in ComputeWriteBarrierKind() argument 429 input_type->Is(Type::TaggedSigned())) { in ComputeWriteBarrierKind() 433 if (input_type->Is(Type::BooleanOrNullOrUndefined())) { in ComputeWriteBarrierKind() 440 if (input_type->IsConstant() && in ComputeWriteBarrierKind() 441 input_type->AsConstant()->Value()->IsHeapObject()) { in ComputeWriteBarrierKind() 443 Handle<HeapObject>::cast(input_type->AsConstant()->Value()); in ComputeWriteBarrierKind() 458 input_type->Is(Type::TaggedPointer())) { in ComputeWriteBarrierKind() 472 Type* input_type) { in ComputeWriteBarrierKind() argument 478 input_type); in ComputeWriteBarrierKind()
|
D | js-typed-lowering.cc | 731 Type* const input_type = NodeProperties::GetType(input); in ReduceJSToBoolean() local 733 if (input_type->Is(Type::Boolean())) { in ReduceJSToBoolean() 737 } else if (input_type->Is(Type::OrderedNumber())) { in ReduceJSToBoolean() 745 } else if (input_type->Is(Type::String())) { in ReduceJSToBoolean() 784 Type* input_type = NodeProperties::GetType(input); in ReduceJSToNumberInput() local 785 if (input_type->Is(Type::Number())) { in ReduceJSToNumberInput() 789 if (input_type->Is(Type::Undefined())) { in ReduceJSToNumberInput() 793 if (input_type->Is(Type::Null())) { in ReduceJSToNumberInput() 797 if (input_type->Is(Type::Boolean())) { in ReduceJSToNumberInput() 814 Type* const input_type = NodeProperties::GetType(input); in ReduceJSToNumber() local [all …]
|
D | common-operator-reducer.cc | 368 Type* const input_type = NodeProperties::GetTypeOrAny(input); in ReduceGuard() local 370 if (input_type->Is(guard_type)) return Replace(input); in ReduceGuard()
|
/external/nanopb-c/generator/google/protobuf/ |
D | descriptor.py | 630 input_type, output_type, options=None): argument 641 self.input_type = input_type
|
D | service_reflection.py | 187 return method_descriptor.input_type._concrete_class
|
/external/protobuf/python/google/protobuf/ |
D | descriptor.py | 683 input_type, output_type, options=None): argument 694 self.input_type = input_type
|
D | service_reflection.py | 187 return method_descriptor.input_type._concrete_class
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | radeonsi_shader.c | 327 LLVMTypeRef input_type = LLVMFloatTypeInContext(gallivm->context); in declare_input_fs() local 333 input_type, args, 3, LLVMReadOnlyAttribute); in declare_input_fs()
|
/external/autotest/server/hosts/ |
D | cros_host.py | 2725 input_type = player._determine_input_type(properties) 2726 if input_type in looking_for: 2727 labels.append(input_type) 2728 looking_for.remove(input_type)
|
/external/protobuf/src/google/protobuf/ |
D | descriptor.cc | 1720 if (!input_type()->is_unqualified_placeholder_) { in CopyTo() 1723 proto->mutable_input_type()->append(input_type()->full_name()); in CopyTo() 2108 input_type()->full_name(), in DebugString() 4409 Symbol input_type = LookupSymbol(proto.input_type(), method->full_name()); in CrossLinkMethod() local 4410 if (input_type.IsNull()) { in CrossLinkMethod() 4413 proto.input_type()); in CrossLinkMethod() 4414 } else if (input_type.type != Symbol::MESSAGE) { in CrossLinkMethod() 4417 "\"" + proto.input_type() + "\" is not a message type."); in CrossLinkMethod() 4419 method->input_type_ = input_type.descriptor; in CrossLinkMethod()
|
D | descriptor.h | 931 const Descriptor* input_type() const; 1544 PROTOBUF_DEFINE_ACCESSOR(MethodDescriptor, input_type, const Descriptor*)
|