HomeSort by relevance Sort by last modified time
    Searched refs:array (Results 1226 - 1250 of 7929) sorted by null

<<41424344454647484950>>

  /external/vboot_reference/futility/
futility.h 67 /* Size of an array */
69 #define ARRAY_SIZE(array) (sizeof(array)/sizeof(array[0]))
  /external/webrtc/webrtc/common_audio/
real_fourier_ooura.cc 25 void Conjugate(complex<float>* array, size_t complex_length) {
26 std::for_each(array, array + complex_length,
67 // The real output array is shorter than the input complex array by one
  /external/wpa_supplicant_8/wpa_supplicant/hidl/1.0/
sta_iface.h 13 #include <array>
177 const std::array<uint8_t, 6>& mac_address);
179 const std::array<uint8_t, 6>& mac_address);
181 const std::array<uint8_t, 6>& mac_address);
183 const std::array<uint8_t, 6>& mac_address,
188 const std::array<uint8_t, 6>& mac_address,
190 std::pair<SupplicantStatus, std::array<uint8_t, 6>>
203 const std::array<int8_t, 2>& code);
205 const std::array<uint8_t, 6>& bssid, const std::string& pin);
207 const std::array<uint8_t, 6>& bssid)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/hidl/1.1/
sta_iface.h 13 #include <array>
183 const std::array<uint8_t, 6>& mac_address);
185 const std::array<uint8_t, 6>& mac_address);
187 const std::array<uint8_t, 6>& mac_address);
189 const std::array<uint8_t, 6>& mac_address,
194 const std::array<uint8_t, 6>& mac_address,
196 std::pair<SupplicantStatus, std::array<uint8_t, 6>>
209 const std::array<int8_t, 2>& code);
211 const std::array<uint8_t, 6>& bssid, const std::string& pin);
213 const std::array<uint8_t, 6>& bssid)
    [all...]
  /frameworks/base/libs/androidfw/tests/
AppAsLib_test.cpp 41 ASSERT_EQ(app::R::array::integerArray1, val.data);
60 ASSERT_EQ(lib::R::array::integerArray1, val.data);
79 ASSERT_EQ(lib::R::array::integerArray1, val.data);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameValues.java 19 import java.lang.reflect.Array;
26 * This returns 1, if the Frame value is null, or if the value is not an array.
35 return Array.getLength(super.getValue());
40 * Returns the values in the Frame as an array.
42 * Note, that this may be called on Frames that have a non-array object assigned to them. In
43 * that case, this method will wrap the object in an array and return that. This way, filters
46 * @return The array of values in this frame.
53 // Allow reading a single as an array.
54 Object[] array = (Object[])Array.newInstance(value.getClass(), 1) local
    [all...]
  /frameworks/layoutlib/create/src/com/android/tools/layoutlib/java/
Charsets.java 49 * Returns a new byte array containing the bytes corresponding to the given characters,
55 return US_ASCII.encode(cb).array();
59 * Returns a new byte array containing the bytes corresponding to the given characters,
65 return ISO_8859_1.encode(cb).array();
69 * Returns a new byte array containing the bytes corresponding to the given characters,
75 return UTF_8.encode(cb).array();
79 * Returns a new byte array containing the bytes corresponding to the given characters,
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UT_script_group2_pointwise.java 39 int[] array = new int[ARRAY_SIZE * 4]; local
42 array[i] = i;
46 input.copyFrom(array);
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UT_script_group2_pointwise.java 41 int[] array = new int[ARRAY_SIZE * 4]; local
44 array[i] = i;
48 input.copyFrom(array);
  /hardware/google/av/codec2/vndk/bufferpool/vts/
allocator.cpp 25 uint8_t array[0]; member in union:Params
85 params->assign(ionParams.array, ionParams.array + sizeof(ionParams));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceContentProvider.java 73 Object[] array = mResources.getResourceItemsOfType( local
75 Arrays.sort(array);
76 return array;
  /art/benchmark/type-check/src/
TypeCheckBenchmark.java 123 Object[] array = new Object[1024]; local
124 for (int i = 0; i < array.length; ++i) {
125 array[i] = l.newInstance();
127 return array;
  /art/runtime/interpreter/mterp/arm/
op_aget.S 3 * Array get, 32 bits or less. vAA <- vBB[vCC].
17 GET_VREG r0, r2 @ r0<- vBB (array object)
19 cmp r0, #0 @ null array object?
op_aput.S 3 * Array put, 32 bits or less. vBB[vCC] <- vAA.
17 GET_VREG r0, r2 @ r0<- vBB (array object)
19 cmp r0, #0 @ null array object?
op_aput_wide.S 2 * Array put, 64 bits. vBB[vCC] <- vAA.
11 GET_VREG r0, r2 @ r0<- vBB (array object)
13 cmp r0, #0 @ null array object?
  /art/runtime/interpreter/mterp/mips/
op_aget.S 3 * Array get, 32 bits or less. vAA <- vBB[vCC].
17 GET_VREG(a0, a2) # a0 <- vBB (array object)
19 # null array object?
op_aget_wide.S 2 * Array get, 64 bits. vAA <- vBB[vCC].
11 GET_VREG(a0, a2) # a0 <- vBB (array object)
13 # null array object?
op_aput.S 4 * Array put, 32 bits or less. vBB[vCC] <- vAA.
15 GET_VREG(a0, a2) # a0 <- vBB (array object)
17 # null array object?
op_aput_wide.S 2 * Array put, 64 bits. vBB[vCC] <- vAA.
9 GET_VREG(a0, a2) # a0 <- vBB (array object)
11 # null array object?
  /art/runtime/interpreter/mterp/mips64/
op_aget.S 3 * Array get, 32 bits or less. vAA <- vBB[vCC].
14 GET_VREG_U a0, a2 # a0 <- vBB (array object)
16 beqz a0, common_errNullObject # bail if null array object
op_aget_wide.S 2 * Array get, 64 bits. vAA <- vBB[vCC].
9 GET_VREG_U a0, a2 # a0 <- vBB (array object)
11 beqz a0, common_errNullObject # bail if null array object
op_aput.S 3 * Array put, 32 bits or less. vBB[vCC] <- vAA.
14 GET_VREG_U a0, a2 # a0 <- vBB (array object)
16 beqz a0, common_errNullObject # bail if null array object
op_aput_wide.S 2 * Array put, 64 bits. vBB[vCC] <- vAA.
9 GET_VREG_U a0, a2 # a0 <- vBB (array object)
11 beqz a0, common_errNullObject # bail if null array object
  /cts/tests/tests/view/src/android/view/cts/
View_BaseSavedStateTest.java 80 BaseSavedState[] array = BaseSavedState.CREATOR.newArray(size); local
81 assertNotNull(array);
82 assertEquals(size, array.length);
83 for (BaseSavedState state : array) {
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
record-event-listener.rb 9 A debug listener that records intercepted events as strings in an array.

Completed in 816 milliseconds

<<41424344454647484950>>