HomeSort by relevance Sort by last modified time
    Searched refs:type (Results 276 - 300 of 32510) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-ifunc/
ifunc-7-i386.s 2 .type foo, %gnu_indirect_function
4 .type foo, @function
9 .type start,"function"
12 .type _start,"function"
15 .type __start,"function"
18 .type __start,"function"
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_main.c 48 struct lp_type type)
51 type.sign ? (type.floating || type.fixed ? "" : "s") : "u",
52 type.floating ? "f" : (type.fixed ? "h" : "i"),
53 type.width,
54 type.norm ? "n" : "",
55 type.length);
60 read_elem(struct lp_type type, const void *src, unsigned index
    [all...]
  /external/opencv/cv/src/
_cvlist.h 84 #define DECLARE_LIST(type, prefix)\
86 struct prefix##element_##type\
88 struct prefix##element_##type* m_prev;\
89 struct prefix##element_##type* m_next;\
90 type m_data;\
92 typedef struct prefix##element_##type ELEMENT_##type;\
94 _LIST_INLINE _CVLIST* prefix##create_list_##type(long);\
95 _LIST_INLINE void prefix##destroy_list_##type(_CVLIST*);\
97 _LIST_INLINE CVPOS prefix##get_head_pos_##type(_CVLIST*);
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
identity_op.cc 49 #define REGISTER_SYCL_KERNEL(type) \
51 Name("Identity").Device(DEVICE_SYCL).TypeConstraint<type>("T"), \
54 Name("PreventGradient").Device(DEVICE_SYCL).TypeConstraint<type>("T"), \
57 Name("RefIdentity").Device(DEVICE_SYCL).TypeConstraint<type>("T"), \
60 Name("StopGradient").Device(DEVICE_SYCL).TypeConstraint<type>("T"), \
67 #define REGISTER_SYCL_HOST_KERNEL(type) \
72 .TypeConstraint<type>("T"), \
78 .TypeConstraint<type>("T"), \
88 #define REGISTER_GPU_KERNEL(type) \
90 Name("Identity").Device(DEVICE_GPU).TypeConstraint<type>("T"),
    [all...]
relu_op.cc 36 #define REGISTER_RELU_KERNELS(type) \
38 Name("Relu").Device(DEVICE_CPU).TypeConstraint<type>("T"), \
39 ReluOp<CPUDevice, type>); \
41 Name("ReluGrad").Device(DEVICE_CPU).TypeConstraint<type>("T"), \
42 ReluGradOp<CPUDevice, type>); \
44 Name("Relu6").Device(DEVICE_CPU).TypeConstraint<type>("T"), \
45 Relu6Op<CPUDevice, type>); \
47 Name("Relu6Grad").Device(DEVICE_CPU).TypeConstraint<type>("T"), \
48 Relu6GradOp<CPUDevice, type>)
53 #define REGISTER_ELU_KERNELS(type) \
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/types/parametrization/
ResolvedTypeParameterValueProvider.java 36 * Calculate the value for the given type parameter.
42 * Replace the type typeParametersValues present in the given type with the ones for which this type
45 default ResolvedType useThisTypeParametersOnTheGivenType(ResolvedType type) {
46 if (type.isTypeVariable()) {
47 ResolvedTypeParameterDeclaration typeParameter = type.asTypeParameter();
51 type = typeParam.get();
56 if (type.isWildcard() && type.asWildcard().isBounded())
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/body/
Parameter.java 25 import com.github.javaparser.ast.type.Type;
35 private Type type; field in class:Parameter
42 public Parameter(Type type, VariableDeclaratorId id) {
44 setType(type);
47 public Parameter(int modifiers, Type type, VariableDeclaratorId id) {
49 setType(type);
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/type/
PrimitiveType.java 22 package com.github.javaparser.ast.type;
32 public final class PrimitiveType extends Type {
62 private Primitive type; field in class:PrimitiveType
67 public PrimitiveType(final Primitive type) {
68 this.type = type;
72 final Primitive type) {
74 this.type = type;
86 return type;
    [all...]
  /external/objenesis/main/src/main/java/org/objenesis/strategy/
StdInstantiatorStrategy.java 53 * @param type Class to instantiate
56 public <T> ObjectInstantiator<T> newInstantiatorOf(Class<T> type) {
60 if(Serializable.class.isAssignableFrom(type)) {
61 return new ObjectInputStreamInstantiator<T>(type);
63 return new AccessibleInstantiator<T>(type);
67 return new SunReflectionFactoryInstantiator<T>(type);
72 return new UnsafeFactoryInstantiator<T>(type);
76 return new Android10Instantiator<T>(type);
80 return new Android17Instantiator<T>(type);
83 return new Android18Instantiator<T>(type);
    [all...]
  /external/webrtc/talk/app/webrtc/
fakemetricsobserver.cc 44 PeerConnectionEnumCounterType type,
48 if (counters_.size() <= static_cast<size_t>(type)) {
49 counters_.resize(type + 1);
51 auto& counters = counters_[type];
55 void FakeMetricsObserver::AddHistogramSample(PeerConnectionMetricsName type,
58 RTC_DCHECK_EQ(histogram_samples_[type], 0);
59 histogram_samples_[type] = value;
62 int FakeMetricsObserver::GetEnumCounter(PeerConnectionEnumCounterType type,
65 RTC_CHECK(counters_.size() > static_cast<size_t>(type));
66 const auto& it = counters_[type].find(counter)
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/utils/
TypeReference.java 22 import java.lang.reflect.Type;
29 * Super type token; allows capturing generic types at runtime by forcing them to be reified.
43 * <p>See <a href="http://gafter.blogspot.com/2007/05/limitation-of-super-type-tokens.html">
44 * http://gafter.blogspot.com/2007/05/limitation-of-super-type-tokens.html</a>
48 private final Type mType;
52 * Create a new type reference for {@code T}.
54 * @throws IllegalArgumentException if {@code T}'s actual type contains a type variable
65 * Prohibit type references with type variables such a
    [all...]
  /external/clang/test/SemaCXX/
unknown-type-name.cpp 16 foo::bar x; // expected-error{{no type named 'bar' in 'N::Wibble'}}
22 int f(foo::bar); // expected-error{{no type named 'bar' in 'N::Wibble'}}
26 int fun(zapotron); // expected-error{{unknown type name 'zapotron'}}
31 typedef T type; typedef in struct:A
33 type f();
35 type g();
38 static type m;
39 static int h(T::type, int); // expected-error{{missing 'typename'}}
40 static int h(T::type x, char); // expected-error{{missing 'typename'}}
44 A<T>::type g(T t) { return t; } // expected-error{{missing 'typename'}
    [all...]
typo-correction-crash.cpp 15 typedef int type; typedef in namespace:BarNamespace::NestedNamespace
19 FooRecord::NestedNamespace::type x; // expected-error {{no member named 'NestedNamespace' in 'FooRecord'; did you mean 'BarNamespace::NestedNamespace'?}}
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/types/
ResolvedWildcard.java 42 private BoundType type; field in class:ResolvedWildcard
45 private ResolvedWildcard(BoundType type, ResolvedType boundedType) {
46 if (type == null && boundedType != null) {
49 if (type != null && boundedType == null) {
52 this.type = type;
56 public static ResolvedWildcard superBound(ResolvedType type) {
57 return new ResolvedWildcard(BoundType.SUPER, type);
60 public static ResolvedWildcard extendsBound(ResolvedType type) {
61 return new ResolvedWildcard(BoundType.EXTENDS, type);
    [all...]
  /prebuilts/go/darwin-x86/test/
alias2.go 7 // Test basic restrictions on type aliases.
16 type T0 struct{}
18 // Valid type alias declarations.
20 type _ = T0
21 type _ = int
22 type _ = struct{}
23 type _ = reflect.Value
24 type _ = Value
26 type (
37 // Methods can be declared on the original named type and the alias
    [all...]
  /prebuilts/go/linux-x86/test/
alias2.go 7 // Test basic restrictions on type aliases.
16 type T0 struct{}
18 // Valid type alias declarations.
20 type _ = T0
21 type _ = int
22 type _ = struct{}
23 type _ = reflect.Value
24 type _ = Value
26 type (
37 // Methods can be declared on the original named type and the alias
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
TypeList.java 17 package com.android.dexgen.rop.type;
20 * List of {@link Type} instances (or of things that contain types).
49 public Type getType(int n);
65 * @param type {@code non-null;} item to append
68 public TypeList withAddedType(Type type);
  /dalvik/dx/src/com/android/dx/rop/type/
TypeList.java 17 package com.android.dx.rop.type;
20 * List of {@link Type} instances (or of things that contain types).
49 public Type getType(int n);
65 * @param type {@code non-null;} item to append
68 public TypeList withAddedType(Type type);
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
stdarg.h 47 #define va_arg(ap, type) \
48 __builtin_va_arg((ap), type)
63 #define __va_size(type) \
64 (((sizeof(type) + sizeof(long) - 1) / sizeof(long)) * sizeof(long))
67 #define va_arg(ap, type) \
68 (*(type *)((ap) += __va_size(type), (ap) - __va_size(type)))
  /external/annotation-tools/asmx/src/org/objectweb/asm/attrs/
StackMapType.java 36 * Verification type info used by {@link StackMapAttribute}.
69 private int type; field in class:StackMapType
73 private StackMapType(int type) {
74 this.type = type;
78 return type;
105 StringBuffer sb = new StringBuffer(ITEM_NAMES[type]);
106 if (type == ITEM_Object) {
109 if (type == ITEM_Uninitialized) {
  /external/clang/test/CXX/over/over.match/over.match.best/over.best.ics/over.ics.user/
p3-0x.cpp 5 { typedef T type; }; typedef in struct:PR6285::identity
9 operator typename identity<T>::type(); // expected-note{{candidate}}
  /external/clang/test/FixIt/
no-macro-fixit.c 4 #define va_arg(ap, type) __builtin_va_arg(ap, type)
  /external/clang/test/Modules/Inputs/
recursive_visibility_c.h 3 f(typename Y<A1_Inner::X>::type{});
4 f(typename Y<A2_More_Inner::X>::type{});
  /external/llvm/test/MC/COFF/
invalid-type.s 3 # CHECK: symbol type specified outside of a symbol definition
4 # CHECK: symbol type specified outside of a symbol definition
5 .type 65536
6 .type 65537
  /external/llvm/test/MC/ELF/
ifunc-reloc.s 3 .type sym, @gnu_indirect_function
6 .type alias, @function

Completed in 851 milliseconds

<<11121314151617181920>>