HomeSort by relevance Sort by last modified time
    Searched defs:use_pos (Results 1 - 5 of 5) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cStringIO.c 112 "getvalue([use_pos]) -- Get the string value."
114 "If use_pos is specified and is a true value, then the string returned\n"
127 PyObject *use_pos=Py_None; local
132 if (!PyArg_UnpackTuple(args,"getval", 0, 1,&use_pos)) return NULL;
134 b = PyObject_IsTrue(use_pos);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cStringIO.c 114 "getvalue([use_pos]) -- Get the string value."
116 "If use_pos is specified and is a true value, then the string returned\n"
129 PyObject *use_pos=Py_None; local
133 if (!PyArg_UnpackTuple(args,"getval", 0, 1,&use_pos)) return NULL;
135 if (PyObject_IsTrue(use_pos)) {
  /external/python/cpython2/Modules/
cStringIO.c 112 "getvalue([use_pos]) -- Get the string value."
114 "If use_pos is specified and is a true value, then the string returned\n"
127 PyObject *use_pos=Py_None; local
132 if (!PyArg_UnpackTuple(args,"getval", 0, 1,&use_pos)) return NULL;
134 b = PyObject_IsTrue(use_pos);
  /external/v8/src/crankshaft/
lithium-allocator.cc 150 UsePosition* use_pos = last_processed_use_; local
151 if (use_pos == NULL) use_pos = first_pos();
152 while (use_pos != NULL && use_pos->pos().Value() < start.Value()) {
153 use_pos = use_pos->next();
155 last_processed_use_ = use_pos;
156 return use_pos;
194 UsePosition* use_pos = NextRegisterPosition(pos) local
429 UsePosition* use_pos = new(zone) UsePosition(pos, operand, hint); local
455 UsePosition* use_pos = first_pos(); local
973 LifetimePosition use_pos; local
1850 LifetimePosition use_pos[DoubleRegister::kMaxNumRegisters]; local
    [all...]
  /external/v8/src/compiler/
register-allocator.cc 299 UsePosition* use_pos = reinterpret_cast<UsePosition*>(hint_); local
300 int assigned_register = AssignedRegisterField::decode(use_pos->flags_);
348 void UsePosition::SetHint(UsePosition* use_pos) {
349 DCHECK_NOT_NULL(use_pos);
350 hint_ = use_pos;
354 void UsePosition::ResolveHint(UsePosition* use_pos) {
355 DCHECK_NOT_NULL(use_pos);
357 hint_ = use_pos;
483 UsePosition* use_pos = last_processed_use_; local
484 if (use_pos == nullptr || use_pos->pos() > start)
545 UsePosition* use_pos = NextRegisterPosition(pos); local
1207 UsePosition* use_pos = range->first_pos(); local
2005 UsePosition* use_pos = local
2130 LifetimePosition use_pos; local
2349 UsePosition* use_pos = Define(block_start, &phi->output(), hint, local
3185 LifetimePosition use_pos[RegisterConfiguration::kMaxFPRegisters]; local
    [all...]

Completed in 192 milliseconds