Home
last modified time | relevance | path

Searched refs:value_array (Results 1 – 14 of 14) sorted by relevance

/aosp_15_r20/system/media/audio_route/
H A Daudio_route.c512 long* value_array = NULL; in start_tag() local
575 value_array = calloc(num_values, sizeof(long)); in start_tag()
576 if (!value_array) { in start_tag()
588 value_array[i] = strtol((char *)attr_sub_value, NULL, 0); in start_tag()
590 value_array[i] = in start_tag()
629 ar->mixer_state[ctl_index].new_value.bytes[id] = value_array[0]; in start_tag()
631 ar->mixer_state[ctl_index].new_value.integer[id] = value_array[0]; in start_tag()
643 ar->mixer_state[ctl_index].new_value.bytes[i] = value_array[i]; in start_tag()
645 ar->mixer_state[ctl_index].new_value.integer[i] = value_array[i]; in start_tag()
657 mixer_value.values = value_array; in start_tag()
[all …]
/aosp_15_r20/packages/modules/Bluetooth/system/gd/os/android/
Dsystem_properties.cc31 std::array<char, PROPERTY_VALUE_MAX> value_array{0}; in GetSystemProperty() local
32 auto value_len = property_get(property.c_str(), value_array.data(), nullptr); in GetSystemProperty()
36 return std::string(value_array.data(), value_len); in GetSystemProperty()
/aosp_15_r20/external/pytorch/torch/csrc/profiler/standalone/
H A Dexecution_trace_observer.cpp409 std::vector<std::string> value_array; in convertIValue() local
415 value_array.push_back(std::get<3>(tuple)); in convertIValue()
423 vectorToString(value_array)); in convertIValue()
430 std::vector<std::string> value_array; in convertIValue() local
436 value_array.push_back(std::get<3>(tuple)); in convertIValue()
449 vectorToString(value_array)); in convertIValue()
/aosp_15_r20/external/harfbuzz_ng/test/fuzzing/
H A Dhb-set-fuzzer.cc30 static hb_set_t *create_set (const uint32_t *value_array, int count) in create_set() argument
34 hb_set_add (set, value_array[i]); in create_set()
/aosp_15_r20/hardware/interfaces/bluetooth/aidl/default/
H A DBluetoothHci.cpp54 std::array<char, PROPERTY_VALUE_MAX> value_array{0}; in GetSystemProperty() local
55 auto value_len = property_get(property.c_str(), value_array.data(), nullptr); in GetSystemProperty()
59 return std::string(value_array.data(), value_len); in GetSystemProperty()
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/upb/protos_generator/tests/
Dtest_generated.cc373 EXPECT_EQ(5, test_model.value_array(0)); in TEST()
374 EXPECT_EQ(6, test_model.value_array(1)); in TEST()
378 EXPECT_EQ(5, test_model.value_array(0)); in TEST()
379 EXPECT_EQ(6, test_model.value_array(1)); in TEST()
380 EXPECT_EQ(7, test_model.value_array(2)); in TEST()
Dtest_model.proto14 repeated int32 value_array = 2; // _UPB_MODE_ARRAY field
/aosp_15_r20/external/tensorflow/tensorflow/security/advisory/
H A Dtfsa-2021-033.md16 value_array = np.array([0.0], dtype=np.float32)
19 st = tf.SparseTensor(indices_array, value_array, dense_shape)
H A Dtfsa-2021-018.md16 value_array = np.array([-10.0], dtype=np.float32)
18 st = tf.SparseTensor(indices_array, value_array, dense_shape)
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/serde_json-1.0.115/tests/
H A Ddebug.rs40 fn value_array() { in value_array() function
/aosp_15_r20/external/rust/android-crates-io/crates/serde_json/tests/
Ddebug.rs40 fn value_array() { in value_array() function
/aosp_15_r20/external/skia/modules/pathkit/
H A Dpathkit_wasm_bindings.cpp623 value_array<SimpleMatrix>("SkMatrix") in EMSCRIPTEN_BINDINGS()
636 value_array<SkPoint>("SkPoint") in EMSCRIPTEN_BINDINGS()
/aosp_15_r20/external/mesa3d/src/util/
H A Dparson.c2312 JSON_Array *schema_array = NULL, *value_array = NULL; in json_validate() local
2328 value_array = json_value_get_array(value); in json_validate()
2335 for (i = 0; i < json_array_get_count(value_array); i++) { in json_validate()
2336 temp_value = json_array_get_value(value_array, i); in json_validate()
/aosp_15_r20/cts/tools/cts-api-coverage/proto/
H A Dcts_report.proto344 repeated ValueArray value_array = 1; field