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;
158 VP8LBitReaderSetBuffer(&dec->br_, new_base, MemDataSize(mem));
  /art/compiler/optimizing/
code_generator_arm64.cc 201 Register new_base = temps.AcquireSameSizeAs(base); local
202 __ Add(new_base, base, Operand(spill_offset + core_spill_size));
203 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 3029 const XML_Char *new_base = XCS("\/local\/file\/name.xml"); local
8831 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 635 PyTypeObject *new_base, *old_base; local
683 new_base = best_base(new_bases);
684 if (new_base == NULL)
687 if (!compatible_for_assignment(type->tp_base, new_base, "__bases__"))
691 Py_INCREF(new_base);
697 type->tp_base = new_base;
744 assert(type->tp_base == new_base);
750 Py_DECREF(new_base);
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
tc-arm.c 1799 int new_base; local
    [all...]

Completed in 827 milliseconds