Home
last modified time | relevance | path

Searched refs:to_add (Results 1 – 4 of 4) sorted by relevance

/external/autotest/server/hosts/
Dgce_host.py56 def _modify_ssh_keys(self, to_add, to_remove): argument
66 new_key_set = (key_set | set(to_add)) - set(to_remove)
/external/toolchain-utils/binary_search_tool/
Dbinary_search_perforce.py137 to_add = (element[0], (element[0] + element[1]) / 2, element[1])
138 q.append(to_add)
140 to_add = (element[1], (element[1] + element[2]) / 2, element[2])
141 q.append(to_add)
/external/v8/src/builtins/
Dbuiltins-array.cc174 int to_add = args.length() - 1; in BUILTIN() local
177 if (to_add == 0) return Smi::FromInt(len); in BUILTIN()
180 DCHECK_LE(to_add, Smi::kMaxValue - Smi::cast(array->length())->value()); in BUILTIN()
187 int new_length = accessor->Push(array, &args, to_add); in BUILTIN()
419 int to_add = args.length() - 1; in BUILTIN() local
420 if (to_add == 0) return array->length(); in BUILTIN()
423 DCHECK_LE(to_add, Smi::kMaxValue - Smi::cast(array->length())->value()); in BUILTIN()
430 int new_length = accessor->Unshift(array, &args, to_add); in BUILTIN()
/external/v8/src/compiler/
Dregister-allocator.cc2758 for (LiveRange* to_add = range; to_add != nullptr; in AllocateRegisters() local
2759 to_add = to_add->next()) { in AllocateRegisters()
2760 if (!to_add->spilled()) { in AllocateRegisters()
2761 AddToUnhandledUnsorted(to_add); in AllocateRegisters()