Lines Matching refs:entry
508 struct { uint32_t tag; uint32_t value; } entry; in get_elf_hwcap_from_proc_self_auxv() local
512 int ret = TEMP_FAILURE_RETRY(read(fd, (char*)&entry, sizeof entry)); in get_elf_hwcap_from_proc_self_auxv()
518 if (ret == 0 || (entry.tag == 0 && entry.value == 0)) in get_elf_hwcap_from_proc_self_auxv()
520 if (entry.tag == AT_HWCAP) { in get_elf_hwcap_from_proc_self_auxv()
521 result = entry.value; in get_elf_hwcap_from_proc_self_auxv()
820 const struct CpuIdEntry* entry = &cpu_id_entries[i]; in android_cpuInit() local
823 entry->field); in android_cpuInit()
827 D("field=%s value='%s'\n", entry->field, value); in android_cpuInit()
835 } else if (entry->format == 'x') in android_cpuInit()
841 val &= ((1 << entry->bit_length)-1); in android_cpuInit()
842 val <<= entry->bit_lshift; in android_cpuInit()
862 const struct CpuFix* entry = &cpu_fixes[n]; in android_cpuInit() local
864 if (g_cpuIdArm == entry->cpuid) in android_cpuInit()
865 g_cpuFeatures |= entry->or_flags; in android_cpuInit()