HomeSort by relevance Sort by last modified time
    Searched refs:list_size (Results 1 - 22 of 22) sorted by null

  /external/libusb/tests/
stress.c 60 ssize_t list_size = libusb_get_device_list(ctx, &device_list); local
61 if (list_size < 0 || device_list == NULL) {
64 i, -list_size, device_list);
90 ssize_t list_size = libusb_get_device_list(ctx, &(device_lists[i])); local
91 if (list_size < 0 || device_lists[i] == NULL) {
94 i, -list_size, device_lists[i]);
  /system/nvram/client/
nvram_client.c 153 uint32_t list_size = 0; local
154 nvram_result_t result = device->get_space_list(device, 0, NULL, &list_size);
159 uint32_t* space_index_list = calloc(list_size, sizeof(uint32_t));
165 device->get_space_list(device, list_size, space_index_list, &list_size);
171 for (uint32_t i = 0; i < list_size; ++i) {
197 uint32_t list_size = 0; local
199 device->get_space_controls(device, index, 0, NULL, &list_size);
204 uint32_t* controls_list = calloc(list_size, sizeof(nvram_control_t));
209 result = device->get_space_controls(device, index, list_size, controls_list
264 uint32_t list_size = 0; local
    [all...]
  /hardware/libhardware/include/hardware/
nvram.h 104 * 0, only |list_size| is populated.
112 * list_size - Receives the number of items populated in
119 uint32_t* list_size);
140 * list_size - Receives the number of items populated in
147 uint32_t* list_size);
175 * list_size - The number of items in |control_list|.
190 uint32_t list_size,
  /system/nvram/hal/
nvram_device_adapter.cpp 104 uint32_t* list_size) {
111 *list_size = std::min(get_info_response.space_list.size(),
113 for (size_t i = 0; i < *list_size; ++i) {
117 *list_size = get_info_response.space_list.size();
139 uint32_t* list_size) {
147 *list_size = std::min(get_space_info_response.controls.size(),
149 for (size_t i = 0; i < *list_size; ++i) {
153 *list_size = get_space_info_response.controls.size();
177 uint32_t list_size,
183 if (!create_space_request.controls.Resize(list_size)) {
    [all...]
  /system/nvram/hal/tests/
scoped_nvram_device.cc 109 uint32_t list_size = 0; local
111 space_index_list->data(), &list_size);
115 space_index_list->resize(list_size);
134 uint32_t list_size = 0; local
136 device_, index, kMaxControls, control_list->data(), &list_size);
140 control_list->resize(list_size);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dynload_beos.c 71 int list_size; local
80 list_size = PyList_Size( id_list );
81 for( idx = 0; idx < list_size; idx++ ) {
  /external/python/cpython2/Python/
dynload_beos.c 71 int list_size; local
80 list_size = PyList_Size( id_list );
81 for( idx = 0; idx < list_size; idx++ ) {
  /external/syslinux/com32/mboot/
mboot.c 51 size_t list_size = nmodules * sizeof *mod_list; local
54 mod_list = malloc(list_size);
60 map_list = map_data(mod_list, list_size, 16, 0);
  /external/tensorflow/tensorflow/python/ops/
list_ops.py 74 list_size = gen_list_ops.tensor_list_length(op.inputs[0])
79 list_size, element_dtype=ditem.dtype),
  /hardware/qcom/audio/legacy/libalsa-intf/
alsa_ucm.c 110 int verb_index, list_size, index = 0; local
193 list_size =
195 uc_mgr->device_list_count = list_size;
196 if (list_size > 0) {
198 (char **)malloc(sizeof(char *)*list_size);
204 for (index = 0; index < list_size; index++) {
212 return (list_size);
223 list_size =
225 uc_mgr->modifier_list_count = list_size;
226 if (list_size > 0)
468 int index, list_size, ret = -EINVAL; local
542 int index = 0, list_size = 0, rx_dev_status = 0, tx_dev_status = 0; local
582 int list_size, index, verb_index, ret = 0, voice_acdb = 0, rx_id, tx_id; local
962 int list_size, index, uc_index, ret = 0, intdev_flag = 0; local
1056 int list_size, index, dev_index, uc_index, ret = 0; local
1117 int list_size, index = 0, ret = -ENODEV, flag = 0, intdev_flag = 0; local
1386 int verb_index, list_size, index = 0, ret = -EINVAL; local
1611 int verb_index, list_size, index = 0, ret = -EINVAL; local
2038 int index, list_size, ret = 0; local
    [all...]
  /external/tensorflow/tensorflow/c/
c_api_test.cc 1833 const size_t list_size = TF_ARRAYSIZE(list); local
1864 const size_t list_size = TF_ARRAYSIZE(list); local
1895 const size_t list_size = TF_ARRAYSIZE(list); local
1926 const size_t list_size = TF_ARRAYSIZE(list); local
1970 const size_t list_size = TF_ARRAYSIZE(list); local
    [all...]
c_api.cc     [all...]
c_api.h 670 int64_t list_size; member in struct:TF_AttrMetadata
    [all...]
  /external/tensorflow/tensorflow/core/kernels/data/
shuffle_dataset_op.cc 242 int64 list_size; variable
245 &list_size));
246 buffer_[index] = std::vector<Tensor>(list_size);
247 for (int k = 0; k < list_size; ++k) {
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_avrcp_target.cpp 555 jint list_size = sCallbackEnv->CallIntMethod(player_list, method_size); local
556 if (list_size == 0) {
570 for (jsize i = 0; i < list_size; i++) {
664 jint list_size = env->CallIntMethod(list, method_size); local
665 if (list_size == 0) {
679 for (jsize i = 0; i < list_size; i++) {
  /external/webrtc/talk/media/devices/
devicemanager_unittest.cc 238 const char* const device_list[], int list_size) {
239 if (list_size != static_cast<int>(devices.size())) {
242 for (int i = 0; i < list_size; ++i) {
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_descriptors.c 165 unsigned list_size = desc->num_elements * desc->element_dw_size * 4; local
172 list_size = align(list_size, 32);
177 radeon_emit(ib, list_size / 4);
206 unsigned list_size = desc->num_elements * desc->element_dw_size * 4; local
231 if (!si_ce_upload(sctx, desc->ce_offset, list_size,
237 u_upload_alloc(sctx->b.uploader, 0, list_size, 256,
243 util_memcpy_cpu_to_le32(ptr, desc->list, list_size);
    [all...]
  /external/mesa3d/src/glx/
glxcmds.c 1605 int list_size; local
1630 int list_size; local
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse_dpb.c 240 int32_t h264_dpb_gen_pic_list_from_frame_list(h264_DecodedPictureBuffer *p_dpb, uint8_t *pic_list, uint8_t *frame_list, int32_t currPicStructure, int32_t list_size, int32_t long_term)
248 if(list_size){
255 while ((top_idx < list_size)||(bot_idx < list_size))
259 while ((top_idx < list_size) & ~got_pic)
276 while ((bot_idx < list_size) & ~got_pic)
295 while ((top_idx < list_size)||(bot_idx < list_size))
299 while ((bot_idx < list_size) && (!(got_pic)))
315 while ((top_idx < list_size) && (!(got_pic))
    [all...]
  /external/curl/lib/vtls/
gtls.c 390 set_ssl_version_min_max(int *list, size_t list_size, struct connectdata *conn)
408 protocol_priority_idx < list_size; ++i) {
    [all...]
  /external/squashfs-tools/squashfs-tools/
mksquashfs.c 1718 int compressed_size, i, list_size = meta_blocks * sizeof(long long); local
    [all...]
  /external/python/cpython3/Objects/
listobject.c     [all...]

Completed in 1646 milliseconds