HomeSort by relevance Sort by last modified time
    Searched refs:ee (Results 1 - 25 of 816) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r11/sources/android/support/src/musl-math/
frexp.c 7 int ee = y.i>>52 & 0x7ff; local
9 if (!ee) {
15 } else if (ee == 0x7ff) {
19 *e = ee - 0x3fe;
frexpf.c 7 int ee = y.i>>23 & 0xff; local
9 if (!ee) {
15 } else if (ee == 0xff) {
19 *e = ee - 0x7e;
frexpl.c 12 int ee = u.i.se & 0x7fff; local
14 if (!ee) {
20 } else if (ee == 0x7fff) {
24 *e = ee - 0x3ffe;
  /prebuilts/ndk/r13/sources/android/support/src/musl-math/
frexp.c 7 int ee = y.i>>52 & 0x7ff; local
9 if (!ee) {
15 } else if (ee == 0x7ff) {
19 *e = ee - 0x3fe;
frexpf.c 7 int ee = y.i>>23 & 0xff; local
9 if (!ee) {
15 } else if (ee == 0xff) {
19 *e = ee - 0x7e;
frexpl.c 12 int ee = u.i.se & 0x7fff; local
14 if (!ee) {
20 } else if (ee == 0x7fff) {
24 *e = ee - 0x3ffe;
  /external/llvm/bindings/go/llvm/
executionengine.go 92 func NewExecutionEngine(m Module) (ee ExecutionEngine, err error) {
94 fail := C.LLVMCreateExecutionEngineForModule(&ee.C, m.C, &cmsg)
96 ee.C = nil
103 func NewInterpreter(m Module) (ee ExecutionEngine, err error) {
105 fail := C.LLVMCreateInterpreterForModule(&ee.C, m.C, &cmsg)
107 ee.C = nil
120 func NewMCJITCompiler(m Module, options MCJITCompilerOptions) (ee ExecutionEngine, err error) {
122 fail := C.LLVMCreateMCJITCompilerForModule(&ee.C, m.C, &options.C, C.size_t(unsafe.Sizeof(C.struct_LLVMMCJITCompilerOptions{})), &cmsg)
124 ee.C = nil
131 func (ee ExecutionEngine) Dispose() { C.LLVMDisposeExecutionEngine(ee.C)
    [all...]
  /external/syslinux/gpxe/src/drivers/net/ath5k/
ath5k_eeprom.c 72 static u16 ath5k_eeprom_bin2freq(struct ath5k_eeprom_info *ee, u16 bin,
81 if (ee->ee_version > AR5K_EEPROM_VERSION_3_2)
87 if (ee->ee_version > AR5K_EEPROM_VERSION_3_2)
102 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
129 if (ee->ee_version >= AR5K_EEPROM_VERSION_4_3)
132 if (ee->ee_version >= AR5K_EEPROM_VERSION_5_0) {
141 ee->ee_ob[AR5K_EEPROM_MODE_11B][0] = val & 0x7;
142 ee->ee_db[AR5K_EEPROM_MODE_11B][0] = (val >> 3) & 0x7;
145 ee->ee_ob[AR5K_EEPROM_MODE_11G][0] = val & 0x7;
146 ee->ee_db[AR5K_EEPROM_MODE_11G][0] = (val >> 3) & 0x7
170 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
230 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
411 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
461 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
509 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
547 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
600 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
666 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
737 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
847 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
952 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
1132 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
1210 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
1401 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
1495 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
1527 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
1584 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; local
    [all...]
  /system/extras/simpleperf/
read_apk_test.cpp 36 EmbeddedElf* ee = inspector.FindElfInApkByOffset(GetTestData(APK_FILE), local
38 ASSERT_TRUE(ee != nullptr);
39 ASSERT_EQ(NATIVELIB_IN_APK, ee->entry_name());
40 ASSERT_EQ(NATIVELIB_OFFSET_IN_APK, ee->entry_offset());
41 ASSERT_EQ(NATIVELIB_SIZE_IN_APK, ee->entry_size());
47 auto ee = ApkInspector::FindElfInApkByName(GetTestData(APK_FILE), NATIVELIB_IN_APK); local
48 ASSERT_TRUE(ee != nullptr);
49 ASSERT_EQ(NATIVELIB_OFFSET_IN_APK, ee->entry_offset());
50 ASSERT_EQ(NATIVELIB_SIZE_IN_APK, ee->entry_size());
  /development/ndk/platforms/android-21/include/linux/
errqueue.h 41 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
  /development/ndk/platforms/android-9/include/linux/
errqueue.h 31 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
errqueue.h 23 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
errqueue.h 22 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
  /prebuilts/ndk/r10/platforms/android-12/arch-arm/usr/include/linux/
errqueue.h 31 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
  /prebuilts/ndk/r10/platforms/android-12/arch-mips/usr/include/linux/
errqueue.h 31 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
  /prebuilts/ndk/r10/platforms/android-12/arch-x86/usr/include/linux/
errqueue.h 31 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
  /prebuilts/ndk/r10/platforms/android-13/arch-arm/usr/include/linux/
errqueue.h 31 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
  /prebuilts/ndk/r10/platforms/android-13/arch-mips/usr/include/linux/
errqueue.h 31 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
  /prebuilts/ndk/r10/platforms/android-13/arch-x86/usr/include/linux/
errqueue.h 31 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
  /prebuilts/ndk/r10/platforms/android-14/arch-arm/usr/include/linux/
errqueue.h 31 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
  /prebuilts/ndk/r10/platforms/android-14/arch-mips/usr/include/linux/
errqueue.h 31 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
  /prebuilts/ndk/r10/platforms/android-14/arch-x86/usr/include/linux/
errqueue.h 31 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
  /prebuilts/ndk/r10/platforms/android-15/arch-arm/usr/include/linux/
errqueue.h 31 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
  /prebuilts/ndk/r10/platforms/android-15/arch-mips/usr/include/linux/
errqueue.h 31 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
  /prebuilts/ndk/r10/platforms/android-15/arch-x86/usr/include/linux/
errqueue.h 31 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))

Completed in 6936 milliseconds

1 2 3 4 5 6 7 8 91011>>