Home
last modified time | relevance | path

Searched refs:func (Results 1 – 25 of 463) sorted by relevance

12345678910>>...19

/device/google/contexthub/firmware/os/platform/stm32/inc/plat/
Di2c.h33 enum StmGpioAltFunc func; member
51 #define I2C1_GPIO_SCL_PB6 { .gpioNum = GPIO_PB(6), .func = GPIO_AF_I2C1 }
52 #define I2C1_GPIO_SCL_PB8 { .gpioNum = GPIO_PB(8), .func = GPIO_AF_I2C1 }
53 #define I2C1_GPIO_SDA_PB7 { .gpioNum = GPIO_PB(7), .func = GPIO_AF_I2C1 }
54 #define I2C1_GPIO_SDA_PB9 { .gpioNum = GPIO_PB(9), .func = GPIO_AF_I2C1 }
61 #define I2C2_GPIO_SCL_PB10 { .gpioNum = GPIO_PB(10), .func = GPIO_AF_I2C2_A }
62 #define I2C2_GPIO_SDA_PB3 { .gpioNum = GPIO_PB(3), .func = GPIO_AF_I2C2_B }
63 #define I2C2_GPIO_SDA_PB9 { .gpioNum = GPIO_PB(9), .func = GPIO_AF_I2C2_B }
64 #define I2C2_GPIO_SDA_PB11 { .gpioNum = GPIO_PB(11), .func = GPIO_AF_I2C2_A }
69 #define I2C3_GPIO_SCL_PA8 { .gpioNum = GPIO_PA(8), .func = GPIO_AF_I2C3_A }
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_copy_reg.py46 mod, func, code = 'junk1 ', ' junk2', 0xabcd
51 mod, func, code)
52 copy_reg.add_extension(mod, func, code)
54 self.assertTrue(copy_reg._extension_registry[mod, func] == code)
55 self.assertTrue(copy_reg._inverted_registry[code] == (mod, func))
59 copy_reg.add_extension(mod, func, code) # shouldn't blow up
62 mod, func, code + 1)
64 mod, func, code + 1)
67 mod[1:], func, code )
69 mod[1:], func, code )
[all …]
Dtest_decorators.py5 def decorate(func): argument
6 func.__dict__.update(kwds)
7 return func
13 def decorate(func): argument
14 func.__dict__['author'] = name
15 return func
21 def __init__(self, exprstr, func, args, kwds): argument
24 (exprstr, func, args, kwds))
29 def decorate(func): argument
30 expr = compile(exprstr, "dbcheck-%s" % func.func_name, "eval")
[all …]
/device/linaro/bootloader/arm-trusted-firmware/plat/common/aarch64/
Dplatform_helpers.S55 func plat_report_exception label
64 func plat_crash_console_init label
74 func plat_crash_console_putc label
83 func plat_crash_console_flush label
92 func plat_reset_handler label
102 func plat_disable_acp label
111 func bl1_plat_prepare_exit label
120 func plat_error_handler label
130 func plat_panic_handler label
140 func bl2_plat_preload_setup label
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
Dfix_apply.py34 func = results["func"]
38 func = func.clone()
39 if (func.type not in (token.NAME, syms.atom) and
40 (func.type != syms.power or
41 func.children[-2].type == token.DOUBLESTAR)):
43 func = parenthesize(func)
44 func.prefix = ""
59 return Call(func, l_newargs, prefix=prefix)
Dfix_itertools.py30 func = results['func'][0]
32 func.value not in (u'ifilterfalse', u'izip_longest')):
40 func.parent.replace(func)
42 prefix = prefix or func.prefix
43 func.replace(Name(func.value[1:], prefix=prefix))
/device/linaro/bootloader/arm-trusted-firmware/lib/cpus/aarch64/
Dcortex_a57.S19 func cortex_a57_disable_dcache label
31 func cortex_a57_disable_l2_prefetch label
47 func cortex_a57_disable_smp label
58 func cortex_a57_disable_ext_debug label
74 func errata_a57_806969_wa label
88 func check_errata_806969 label
98 func check_errata_813419 label
116 func errata_a57_813420_wa label
130 func check_errata_813420 label
146 func a57_disable_ldnp_overread label
[all …]
Dcortex_a53.S23 func cortex_a53_disable_dcache label
35 func cortex_a53_disable_smp label
52 func errata_a53_826319_wa label
67 func check_errata_826319 label
89 func a53_disable_non_temporal_hint label
103 func check_errata_disable_non_temporal_hint label
121 func errata_a53_855873_wa label
136 func check_errata_855873 label
146 func check_errata_835769 label
156 func check_errata_843419 label
[all …]
Dcortex_a72.S17 func cortex_a72_disable_dcache label
29 func cortex_a72_disable_l2_prefetch label
44 func cortex_a72_disable_hw_prefetcher label
57 func cortex_a72_disable_smp label
68 func cortex_a72_disable_ext_debug label
84 func errata_a72_859971_wa label
95 func check_errata_859971 label
104 func cortex_a72_reset_func label
128 func cortex_a72_core_pwr_dwn label
174 func cortex_a72_cluster_pwr_dwn label
[all …]
/device/linaro/bootloader/arm-trusted-firmware/plat/common/aarch32/
Dplatform_helpers.S25 func plat_crash_console_init label
35 func plat_crash_console_putc label
44 func plat_crash_console_flush label
54 func plat_reset_handler label
63 func plat_disable_acp label
72 func platform_mem_init label
81 func plat_panic_handler label
91 func bl2_plat_preload_setup label
100 func plat_try_next_boot_source label
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dfuncobject.h55 #define PyFunction_GET_CODE(func) \ argument
56 (((PyFunctionObject *)func) -> func_code)
57 #define PyFunction_GET_GLOBALS(func) \ argument
58 (((PyFunctionObject *)func) -> func_globals)
59 #define PyFunction_GET_MODULE(func) \ argument
60 (((PyFunctionObject *)func) -> func_module)
61 #define PyFunction_GET_DEFAULTS(func) \ argument
62 (((PyFunctionObject *)func) -> func_defaults)
63 #define PyFunction_GET_CLOSURE(func) \ argument
64 (((PyFunctionObject *)func) -> func_closure)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dfuncobject.h55 #define PyFunction_GET_CODE(func) \ argument
56 (((PyFunctionObject *)func) -> func_code)
57 #define PyFunction_GET_GLOBALS(func) \ argument
58 (((PyFunctionObject *)func) -> func_globals)
59 #define PyFunction_GET_MODULE(func) \ argument
60 (((PyFunctionObject *)func) -> func_module)
61 #define PyFunction_GET_DEFAULTS(func) \ argument
62 (((PyFunctionObject *)func) -> func_defaults)
63 #define PyFunction_GET_CLOSURE(func) \ argument
64 (((PyFunctionObject *)func) -> func_closure)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dpstats.py140 for func, (cc, nc, tt, ct, callers) in self.stats.items():
145 self.top_level[func] = None
146 if len(func_std_string(func)) > self.max_name_len:
147 self.max_name_len = len(func_std_string(func))
159 for func in other.top_level:
160 self.top_level[func] = None
167 for func, stat in other.stats.iteritems():
168 if func in self.stats:
169 old_func_stat = self.stats[func]
172 self.stats[func] = add_func_stats(old_func_stat, stat)
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dclassobject.c756 register PyObject *func, *res; in instance_getattr() local
758 if (res == NULL && (func = inst->in_class->cl_getattr) != NULL) { in instance_getattr()
766 res = PyEval_CallObject(func, args); in instance_getattr()
812 PyObject *func, *args, *res, *tmp; in instance_setattr() local
854 func = inst->in_class->cl_delattr; in instance_setattr()
856 func = inst->in_class->cl_setattr; in instance_setattr()
857 if (func == NULL) in instance_setattr()
865 res = PyEval_CallObject(func, args); in instance_setattr()
876 PyObject *func; in instance_repr() local
885 func = instance_getattr(inst, reprstr); in instance_repr()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dclassobject.c773 register PyObject *func, *res; in instance_getattr() local
775 if (res == NULL && (func = inst->in_class->cl_getattr) != NULL) { in instance_getattr()
783 res = PyEval_CallObject(func, args); in instance_getattr()
829 PyObject *func, *args, *res, *tmp; in instance_setattr() local
878 func = inst->in_class->cl_delattr; in instance_setattr()
880 func = inst->in_class->cl_setattr; in instance_setattr()
881 if (func == NULL) in instance_setattr()
889 res = PyEval_CallObject(func, args); in instance_setattr()
900 PyObject *func; in instance_repr() local
909 func = instance_getattr(inst, reprstr); in instance_repr()
[all …]
/device/linaro/bootloader/arm-trusted-firmware/lib/cpus/aarch32/
Dcortex_a57.S18 func cortex_a57_disable_smp label
30 func cortex_a57_disable_l2_prefetch label
45 func cortex_a57_disable_ext_debug label
61 func errata_a57_806969_wa label
77 func check_errata_806969 label
87 func check_errata_813419 label
105 func errata_a57_813420_wa label
121 func check_errata_813420 label
137 func a57_disable_ldnp_overread label
153 func check_errata_disable_ldnp_overread label
[all …]
Dcortex_a53.S22 func cortex_a53_disable_smp label
39 func errata_a53_826319_wa label
56 func check_errata_826319 label
78 func a53_disable_non_temporal_hint label
94 func check_errata_disable_non_temporal_hint label
112 func errata_a53_855873_wa label
128 func check_errata_855873 label
138 func cortex_a53_reset_func label
173 func cortex_a53_core_pwr_dwn label
203 func cortex_a53_cluster_pwr_dwn label
[all …]
/device/google/sunfish/vibrator/drv2624/tests/
Dtest-hwapi.cpp189 static auto MakeParam(std::string name, std::function<T> func) { in MakeParam() argument
190 return std::make_tuple(name, func); in MakeParam()
198 auto func = std::get<1>(param); in TEST_P() local
200 EXPECT_TRUE(func(*mHwApi)); in TEST_P()
205 auto func = std::get<1>(param); in TEST_P() local
207 EXPECT_FALSE(func(*mNoApi)); in TEST_P()
221 auto func = std::get<1>(param); in TEST_P() local
225 EXPECT_TRUE(func(*mHwApi, true)); in TEST_P()
231 auto func = std::get<1>(param); in TEST_P() local
235 EXPECT_TRUE(func(*mHwApi, false)); in TEST_P()
[all …]
/device/generic/goldfish-opengl/android-emu/android/base/threads/
DAndroidFunctorThread.h36 explicit FunctorThread(const Functor& func,
38 : FunctorThread(Functor(func), flags) {} in FunctorThread() argument
40 explicit FunctorThread(Functor&& func,
45 explicit FunctorThread(Func&& func,
47 : Thread(flags), mThreadFunc([func = std::move(func)]() { in Thread()
48 func(); in Thread()
/device/google/contexthub/firmware/os/core/
DosApi.c493 [SYSCALL_OS_MAIN_EVTQ_SUBCRIBE] = { .func = osExpApiEvtqSubscribe, }, in osApiExport()
494 [SYSCALL_OS_MAIN_EVTQ_UNSUBCRIBE] = { .func = osExpApiEvtqUnsubscribe, }, in osApiExport()
495 [SYSCALL_OS_MAIN_EVTQ_ENQUEUE] = { .func = osExpApiEvtqEnqueue, }, in osApiExport()
496 [SYSCALL_OS_MAIN_EVTQ_ENQUEUE_PRIVATE] = { .func = osExpApiEvtqEnqueuePrivate, }, in osApiExport()
497 [SYSCALL_OS_MAIN_EVTQ_RETAIN_EVT] = { .func = osExpApiEvtqRetainEvt, }, in osApiExport()
498 [SYSCALL_OS_MAIN_EVTQ_FREE_RETAINED] = { .func = osExpApiEvtqFreeRetained, }, in osApiExport()
505 [SYSCALL_OS_MAIN_LOG_LOGV] = { .func = osExpApiLogLogv, }, in osApiExport()
512 [SYSCALL_OS_MAIN_SENSOR_SIGNAL] = { .func = osExpApiSensorSignal, }, in osApiExport()
513 [SYSCALL_OS_MAIN_SENSOR_REG] = { .func = osExpApiSensorReg, }, in osApiExport()
514 [SYSCALL_OS_MAIN_SENSOR_UNREG] = { .func = osExpApiSensorUnreg, }, in osApiExport()
[all …]
Dnanohub_chre.c651 [SYSCALL_CHRE_MAIN_API_LOG_OLD] = { .func = osChreApiLogLogvOld },
652 [SYSCALL_CHRE_MAIN_API_LOG] = { .func = osChreApiLogLogv },
653 [SYSCALL_CHRE_MAIN_API_GET_APP_ID] = { .func = osChreApiGetAppId },
654 [SYSCALL_CHRE_MAIN_API_GET_INST_ID] = { .func = osChreApiGetInstanceId },
655 [SYSCALL_CHRE_MAIN_API_GET_TIME] = { .func = osChreApiGetTime },
656 [SYSCALL_CHRE_MAIN_API_GET_HOST_TIME_OFFSET] = { .func = osChreApiGetHostTimeOffset },
657 [SYSCALL_CHRE_MAIN_API_TIMER_SET] = { .func = osChreApiTimerSet },
658 [SYSCALL_CHRE_MAIN_API_TIMER_CANCEL] = { .func = osChreApiTimerCancel },
659 [SYSCALL_CHRE_MAIN_API_ABORT] = { .func = osChreApiAbort },
660 [SYSCALL_CHRE_MAIN_API_HEAP_ALLOC] = { .func = osChreApiHeapAlloc },
[all …]
/device/linaro/bootloader/arm-trusted-firmware/plat/arm/common/aarch64/
Darm_helpers.S24 func plat_my_core_pos label
36 func plat_arm_calc_core_pos label
50 func plat_crash_console_init label
64 func plat_crash_console_putc label
77 func plat_crash_console_flush label
87 func platform_mem_init label
96 func arm_disable_spe label
138 func plat_get_my_stack label
151 func plat_set_my_stack label
/device/linaro/bootloader/arm-trusted-firmware/plat/qemu/aarch64/
Dplat_helpers.S23 func plat_my_core_pos label
32 func plat_qemu_calc_core_pos label
46 func plat_is_my_cpu_primary label
63 func plat_secondary_cold_boot_setup label
81 func plat_get_my_entrypoint label
87 func platform_mem_init label
98 func plat_crash_console_init label
112 func plat_crash_console_putc label
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dthread_solaris.h20 void (*func)(void *); member
27 void (*func)(void *); in new_func() local
30 func = ((struct func_arg *) funcarg)->func; in new_func()
33 (*func)(arg); in new_func()
39 PyThread_start_new_thread(void (*func)(void *), void *arg) in PyThread_start_new_thread()
48 funcarg->func = func; in PyThread_start_new_thread()
/device/linaro/bootloader/arm-trusted-firmware/plat/hisilicon/hikey960/aarch64/
Dhikey960_helpers.S24 func plat_my_core_pos label
39 func platform_mem_init label
50 func plat_crash_console_init label
64 func plat_crash_console_putc label
77 func plat_report_exception label
137 func plat_reset_handler label
146 func set_retention_ticks label
161 func clr_retention_ticks label
174 func clr_ex label
183 func nop label

12345678910>>...19