Lines Matching refs:entry
540 struct { uint32_t tag; uint32_t value; } entry; in get_elf_hwcap_from_proc_self_auxv() local
544 int ret = TEMP_FAILURE_RETRY(read(fd, (char*)&entry, sizeof entry)); in get_elf_hwcap_from_proc_self_auxv()
550 if (ret == 0 || (entry.tag == 0 && entry.value == 0)) in get_elf_hwcap_from_proc_self_auxv()
552 if (entry.tag == AT_HWCAP) { in get_elf_hwcap_from_proc_self_auxv()
553 result = entry.value; in get_elf_hwcap_from_proc_self_auxv()
873 const struct CpuIdEntry* entry = &cpu_id_entries[i]; in android_cpuInit() local
876 entry->field); in android_cpuInit()
880 D("field=%s value='%s'\n", entry->field, value); in android_cpuInit()
888 } else if (entry->format == 'x') in android_cpuInit()
894 val &= ((1 << entry->bit_length)-1); in android_cpuInit()
895 val <<= entry->bit_lshift; in android_cpuInit()
917 const struct CpuFix* entry = &cpu_fixes[n]; in android_cpuInit() local
919 if (g_cpuIdArm == entry->cpuid) in android_cpuInit()
920 g_cpuFeatures |= entry->or_flags; in android_cpuInit()