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

  /external/clang/utils/VtableTest/
gen.cc 191 int new_base = final_override[base][fn]; local
192 if (new_base == 0)
202 if (prev_base == new_base)
207 final_override[s][fn] = new_base;
211 if (base_present[prev_base][new_base]) {
214 fn, s, prev_base, new_base);
218 if (base_present[new_base][prev_base]) {
221 fn, s, new_base, prev_base);
223 final_override[s][fn] = new_base;
  /external/linux-kselftest/tools/testing/selftests/x86/
ldt_gdt.c 738 unsigned long new_base; local
828 syscall(SYS_arch_prctl, ARCH_GET_FS, &new_base);
848 if (sel == 0 && new_base != 0) {
850 printf("[FAIL]\tNew FSBASE was 0x%lx\n", new_base);
881 syscall(SYS_arch_prctl, ARCH_GET_GS, &new_base);
901 if (sel == 0 && new_base != 0) {
903 printf("[FAIL]\tNew GSBASE was 0x%lx\n", new_base);
  /external/protobuf/src/google/protobuf/
dynamic_message.cc 571 void* new_base = operator new(type_info_->size); local
572 memset(new_base, 0, type_info_->size);
573 return new(new_base) DynamicMessage(type_info_);
  /external/webp/src/dec/
idec_dec.c 114 const uint8_t* const new_base = mem->buf_ + mem->start_; local
117 idec->io_.data = new_base;
157 VP8LBitReaderSetBuffer(&dec->br_, new_base, MemDataSize(mem));
  /external/python/cpython3/Python/
bltinmodule.c 58 PyObject *base, *meth, *new_base, *result, *new_bases = NULL; local
85 new_base = _PyObject_FastCall(meth, stack, 1);
87 if (!new_base) {
90 if (!PyTuple_Check(new_base)) {
93 Py_DECREF(new_base);
109 if (PyList_SetSlice(new_bases, j, j, new_base) < 0) {
112 Py_DECREF(new_base);
    [all...]
  /art/compiler/optimizing/
code_generator_arm64.cc 195 Register new_base = temps.AcquireSameSizeAs(base); local
196 __ Add(new_base, base, Operand(spill_offset + core_spill_size));
197 base = new_base;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
typeobject.c 426 PyTypeObject *new_base, *old_base; local
469 new_base = best_base(value);
471 if (!new_base) {
475 if (!compatible_for_assignment(type->tp_base, new_base, "__bases__"))
478 Py_INCREF(new_base);
486 type->tp_base = new_base;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
typeobject.c 420 PyTypeObject *new_base, *old_base; local
463 new_base = best_base(value);
465 if (!new_base) {
469 if (!compatible_for_assignment(type->tp_base, new_base, "__bases__"))
472 Py_INCREF(new_base);
480 type->tp_base = new_base;
    [all...]
  /external/expat/tests/
runtests.c 3041 const XML_Char *new_base = XCS("\/local\/file\/name.xml"); local
8871 const XML_Char *new_base = XCS("\/local\/file\/name.xml"); local
    [all...]
  /external/python/cpython2/Objects/
typeobject.c 446 PyTypeObject *new_base, *old_base; local
489 new_base = best_base(value);
491 if (!new_base) {
495 if (!compatible_for_assignment(type->tp_base, new_base, "__bases__"))
498 Py_INCREF(new_base);
506 type->tp_base = new_base;
    [all...]
  /external/python/cpython3/Objects/
typeobject.c 663 PyTypeObject *new_base, *old_base; local
711 new_base = best_base(new_bases);
712 if (new_base == NULL)
715 if (!compatible_for_assignment(type->tp_base, new_base, "__bases__"))
719 Py_INCREF(new_base);
725 type->tp_base = new_base;
773 assert(type->tp_base == new_base);
779 Py_DECREF(new_base);
    [all...]

Completed in 454 milliseconds