Home
last modified time | relevance | path

Searched refs:to_add (Results 1 – 3 of 3) 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/v8/src/compiler/
Dregister-allocator.cc2428 for (LiveRange* to_add = range; to_add != nullptr; in AllocateRegisters() local
2429 to_add = to_add->next()) { in AllocateRegisters()
2430 if (!to_add->spilled()) { in AllocateRegisters()
2431 AddToUnhandledUnsorted(to_add); in AllocateRegisters()
/external/v8/src/
Dbuiltins.cc433 int to_add = args.length() - 1; in BUILTIN() local
434 if (to_add == 0) { in BUILTIN()
439 DCHECK(to_add <= (Smi::kMaxValue - Smi::cast(array->length())->value())); in BUILTIN()
441 if (to_add > 0 && JSArray::HasReadOnlyLength(array)) { in BUILTIN()
446 int new_length = accessor->Unshift(array, elms_obj, &args, to_add); in BUILTIN()