Searched refs:to_add (Results 1 - 8 of 8) sorted by relevance

/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_ble_bgconn.c74 BOOLEAN btm_update_dev_to_white_list(BOOLEAN to_add, BD_ADDR bd_addr, tBLE_ADDR_TYPE addr_type) argument
93 if ((to_add && p_cb->num_empty_filter == 0) ||
94 (!to_add && p_cb->num_empty_filter == p_cb->max_filter_entries))
103 if (to_add)
112 if (to_add)
120 if (to_add)
130 if (to_add)
260 BOOLEAN btm_update_bg_conn_list(BOOLEAN to_add, BD_ADDR bd_addr) argument
266 if ((to_add && (p_cb->bg_conn_dev_num == BTM_BLE_MAX_BG_CONN_DEV_NUM || p_cb->num_empty_filter == 0)) ||
267 (!to_add
[all...]
H A Dbtm_ble_int.h263 extern BOOLEAN btm_update_dev_to_white_list(BOOLEAN to_add, BD_ADDR bd_addr,tBLE_ADDR_TYPE addr_type);
264 extern BOOLEAN btm_update_bg_conn_list(BOOLEAN to_add, BD_ADDR bd_addr);
/external/chromium/net/disk_cache/
H A Dbitmap.cc302 uint32 to_add = 0xffffffff << len; local
303 to_add = (~to_add) << offset;
305 map_[word] |= to_add;
307 map_[word] &= ~to_add;
H A Dblock_files.cc64 uint32 to_add = ((1 << size) - 1) << index_offset; local
65 header->allocation_map[current] |= to_add;
392 int to_add = index - static_cast<int>(block_files_.size()) + 1; local
393 block_files_.resize(block_files_.size() + to_add);
H A Dentry_impl.cc278 int to_add = std::max(required - current_size, kMaxBlockSize * 4); local
279 to_add = std::max(current_size, to_add);
280 required = std::min(current_size + to_add, limit);
H A Dbackend_impl.cc1006 int to_add = new_size - current_size; local
1007 if (buffer_bytes_ + to_add > MaxBuffersSize())
1010 buffer_bytes_ += to_add;
/external/v8/src/
H A Dbuiltins.cc500 int to_add = args.length() - 1; local
501 if (to_add == 0) {
506 ASSERT(to_add <= (Smi::kMaxValue - len));
508 int new_length = len + to_add;
529 for (int index = 0; index < to_add; index++) {
636 int to_add = args.length() - 1; local
637 int new_length = len + to_add;
640 ASSERT(to_add <= (Smi::kMaxValue - len));
643 array->EnsureCanContainElements(&args, 1, to_add,
656 new_elms, FAST_ELEMENTS, to_add, le
[all...]
/external/chromium/net/base/
H A Dx509_certificate_win.cc425 PCCERT_CONTEXT to_add = NULL; local
433 &to_add) && to_add != NULL) {
439 results->insert(results->begin(), to_add);

Completed in 163 milliseconds