Searched refs:type (Results 126 - 150 of 2536) sorted by relevance

1234567891011>>

/frameworks/ml/nn/runtime/test/generated/vts_models/
H A Dlstm3_state3_relaxed.model.cpp6 .type = OperandType::TENSOR_FLOAT32,
15 .type = OperandType::TENSOR_FLOAT32,
24 .type = OperandType::TENSOR_FLOAT32,
33 .type = OperandType::TENSOR_FLOAT32,
42 .type = OperandType::TENSOR_FLOAT32,
51 .type = OperandType::TENSOR_FLOAT32,
60 .type = OperandType::TENSOR_FLOAT32,
69 .type = OperandType::TENSOR_FLOAT32,
78 .type = OperandType::TENSOR_FLOAT32,
87 .type
[all...]
H A Dlstm3_state_relaxed.model.cpp6 .type = OperandType::TENSOR_FLOAT32,
15 .type = OperandType::TENSOR_FLOAT32,
24 .type = OperandType::TENSOR_FLOAT32,
33 .type = OperandType::TENSOR_FLOAT32,
42 .type = OperandType::TENSOR_FLOAT32,
51 .type = OperandType::TENSOR_FLOAT32,
60 .type = OperandType::TENSOR_FLOAT32,
69 .type = OperandType::TENSOR_FLOAT32,
78 .type = OperandType::TENSOR_FLOAT32,
87 .type
[all...]
H A Dlstm_relaxed.model.cpp6 .type = OperandType::TENSOR_FLOAT32,
15 .type = OperandType::TENSOR_FLOAT32,
24 .type = OperandType::TENSOR_FLOAT32,
33 .type = OperandType::TENSOR_FLOAT32,
42 .type = OperandType::TENSOR_FLOAT32,
51 .type = OperandType::TENSOR_FLOAT32,
60 .type = OperandType::TENSOR_FLOAT32,
69 .type = OperandType::TENSOR_FLOAT32,
78 .type = OperandType::TENSOR_FLOAT32,
87 .type
[all...]
H A Dlstm_state.model.cpp6 .type = OperandType::TENSOR_FLOAT32,
15 .type = OperandType::TENSOR_FLOAT32,
24 .type = OperandType::TENSOR_FLOAT32,
33 .type = OperandType::TENSOR_FLOAT32,
42 .type = OperandType::TENSOR_FLOAT32,
51 .type = OperandType::TENSOR_FLOAT32,
60 .type = OperandType::TENSOR_FLOAT32,
69 .type = OperandType::TENSOR_FLOAT32,
78 .type = OperandType::TENSOR_FLOAT32,
87 .type
[all...]
H A Dlstm_state2.model.cpp6 .type = OperandType::TENSOR_FLOAT32,
15 .type = OperandType::TENSOR_FLOAT32,
24 .type = OperandType::TENSOR_FLOAT32,
33 .type = OperandType::TENSOR_FLOAT32,
42 .type = OperandType::TENSOR_FLOAT32,
51 .type = OperandType::TENSOR_FLOAT32,
60 .type = OperandType::TENSOR_FLOAT32,
69 .type = OperandType::TENSOR_FLOAT32,
78 .type = OperandType::TENSOR_FLOAT32,
87 .type
[all...]
H A Dlstm_state2_relaxed.model.cpp6 .type = OperandType::TENSOR_FLOAT32,
15 .type = OperandType::TENSOR_FLOAT32,
24 .type = OperandType::TENSOR_FLOAT32,
33 .type = OperandType::TENSOR_FLOAT32,
42 .type = OperandType::TENSOR_FLOAT32,
51 .type = OperandType::TENSOR_FLOAT32,
60 .type = OperandType::TENSOR_FLOAT32,
69 .type = OperandType::TENSOR_FLOAT32,
78 .type = OperandType::TENSOR_FLOAT32,
87 .type
[all...]
H A Dlstm_state_relaxed.model.cpp6 .type = OperandType::TENSOR_FLOAT32,
15 .type = OperandType::TENSOR_FLOAT32,
24 .type = OperandType::TENSOR_FLOAT32,
33 .type = OperandType::TENSOR_FLOAT32,
42 .type = OperandType::TENSOR_FLOAT32,
51 .type = OperandType::TENSOR_FLOAT32,
60 .type = OperandType::TENSOR_FLOAT32,
69 .type = OperandType::TENSOR_FLOAT32,
78 .type = OperandType::TENSOR_FLOAT32,
87 .type
[all...]
/frameworks/base/core/java/android/net/
H A DNetworkConfig.java35 public int type; field in class:NetworkConfig
61 * [Connection name],[ConnectivityManager connection type],
62 * [associated radio-type],[priority],[dependencyMet]
67 type = Integer.parseInt(fragments[1]);
78 return (type == radio);
/frameworks/compile/mclinker/lib/Support/
H A DFileSystem.cpp19 return (file_status.type() != mcld::sys::fs::StatusError) &&
20 (file_status.type() != mcld::sys::fs::FileNotFound);
26 return (file_status.type() == mcld::sys::fs::DirectoryFile);
/frameworks/support/lifecycle/common/src/main/java/androidx/lifecycle/
H A DMethodCallsLogger.java35 public boolean approveCall(String name, int type) { argument
38 boolean wasCalled = (mask & type) != 0;
39 mCalledMethods.put(name, mask | type);
/frameworks/base/services/usb/java/com/android/server/usb/descriptors/
H A DUsbACInterface.java84 public UsbACInterface(int length, byte type, byte subtype, int subclass) { argument
85 super(length, type);
99 ByteStream stream, int length, byte type, byte subtype, int subClass) {
106 return new Usb20ACHeader(length, type, subtype, subClass, acInterfaceSpec);
108 return new Usb10ACHeader(length, type, subtype, subClass, acInterfaceSpec);
116 return new Usb20ACInputTerminal(length, type, subtype, subClass);
118 return new Usb10ACInputTerminal(length, type, subtype, subClass);
126 return new Usb20ACOutputTerminal(length, type, subtype, subClass);
128 return new Usb10ACOutputTerminal(length, type, subtype, subClass);
133 return new UsbACSelectorUnit(length, type, subtyp
98 allocAudioControlDescriptor(UsbDescriptorParser parser, ByteStream stream, int length, byte type, byte subtype, int subClass) argument
159 allocAudioStreamingDescriptor(UsbDescriptorParser parser, ByteStream stream, int length, byte type, byte subtype, int subClass) argument
184 allocMidiStreamingDescriptor(int length, byte type, byte subtype, int subClass) argument
211 allocDescriptor(UsbDescriptorParser parser, ByteStream stream, int length, byte type) argument
[all...]
/frameworks/base/wifi/java/android/net/wifi/aware/
H A DTlvBufferUtils.java50 * in LV type format.
141 * Copies a byte into the TLV with the indicated type. For an LV
143 * TlvConstructor(int, int)} ) the type field is ignored.
145 * @param type The value to be placed into the Type field.
150 public TlvConstructor putByte(int type, byte b) { argument
152 addHeader(type, 1);
158 * Copies a byte array into the TLV with the indicated type. For an LV
160 * TlvConstructor(int, int)} ) the type field is ignored.
162 * @param type The value to be placed into the Type field.
170 public TlvConstructor putByteArray(int type, argument
191 putByteArray(int type, @Nullable byte[] array) argument
205 putZeroLengthElement(int type) argument
221 putShort(int type, short data) argument
239 putInt(int type, int data) argument
259 putString(int type, @Nullable String data) argument
297 addHeader(int type, int length) argument
325 public int type; field in class:TlvBufferUtils.TlvElement
344 TlvElement(int type, int length, @Nullable byte[] refArray, int offset) argument
[all...]
/frameworks/base/drm/java/android/drm/
H A DDrmEvent.java27 // Please do not add type constants in this class. More event type constants
58 * @param type Type of information.
62 protected DrmEvent(int uniqueId, int type, String message, argument
65 mType = type;
80 * @param type Type of information.
83 protected DrmEvent(int uniqueId, int type, String message) { argument
85 mType = type;
102 * Retrieves the type of information that is associated with this object.
104 * @return The type o
[all...]
/frameworks/base/libs/hwui/
H A DGpuMemoryTracker.h30 "Error, %p of type %d (size=%d) used on wrong thread! cur thread %lu " \
51 static int getInstanceCount(GpuObjectType type);
52 static int getTotalSize(GpuObjectType type);
56 explicit GpuMemoryTracker(GpuObjectType type) : mType(type) { argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGenerateProgramPort.java29 Class type(); method in interface:GenerateProgramPort
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DAnglesVarianceEvaluator.java20 public static float evaluate(float value, int type) { argument
/frameworks/base/services/net/java/android/net/netlink/
H A DStructNlAttr.java40 public static short makeNestedType(short type) { argument
41 return (short) (type | NLA_F_NESTED);
44 // Return a (length, type) object only, without consuming any bytes in
47 // looking for instances of a particular type.
98 // type members are always read/written in native order.
107 public StructNlAttr(short type, byte value) { argument
108 nla_type = type;
113 public StructNlAttr(short type, short value) { argument
114 this(type, value, ByteOrder.nativeOrder());
117 public StructNlAttr(short type, shor argument
124 StructNlAttr(short type, int value) argument
128 StructNlAttr(short type, int value, ByteOrder order) argument
135 StructNlAttr(short type, InetAddress ip) argument
140 StructNlAttr(short type, StructNlAttr... nested) argument
[all...]
/frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
H A DBindingMethod.java32 Class type(); method in interface:BindingMethod
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DAbsSeekBarBindingAdapter.java22 @BindingMethod(type = android.widget.AbsSeekBar.class, attribute = "android:thumbTint", method = "setThumbTintList"),
H A DActionMenuViewBindingAdapter.java23 @BindingMethod(type = ActionMenuView.class, attribute = "android:onMenuItemClick", method = "setOnMenuItemClickListener"),
H A DChronometerBindingAdapter.java23 @BindingMethod(type = Chronometer.class, attribute = "android:onChronometerTick", method = "setOnChronometerTickListener"),
H A DFrameLayoutBindingAdapter.java22 @BindingMethod(type = android.widget.FrameLayout.class, attribute = "android:foregroundTint", method = "setForegroundTintList"),
H A DSpinnerBindingAdapter.java22 @BindingMethod(type = android.widget.Spinner.class, attribute = "android:popupBackground", method = "setPopupBackgroundDrawable"),
/frameworks/layoutlib/bridge/src/android/text/
H A DPrimitive.java24 public final @NonNull PrimitiveType type; field in class:Primitive
36 private Primitive(@NonNull PrimitiveType type, int location, float width, float penalty) { argument
37 this.type = type;
/frameworks/native/opengl/include/EGL/
H A Deglplatform.h43 * EGLAPI return-type EGLAPIENTRY eglFunction(arguments);
44 * typedef return-type (EXPAPIENTRYP PFNEGLFUNCTIONPROC) (arguments);
115 /* Define EGLint. This must be a signed integral type large enough to contain
117 * their type is boolean, bitmask, enumerant (symbolic constant), integer,
120 * integer type.
127 #define EGL_CAST(type, value) (static_cast<type>(value))
129 #define EGL_CAST(type, value) ((type) (value))

Completed in 408 milliseconds

1234567891011>>