Searched refs:str (Results 1 - 21 of 21) sorted by relevance

/ndk/build/platforms/android-3/arch-arm/usr/include/linux/
H A Dinit.h62 const char *str; member in struct:obs_kernel_param
67 #define __setup_param(str, unique_id, fn, early) static char __setup_str_##unique_id[] __initdata = str; static struct obs_kernel_param __setup_##unique_id __attribute_used__ __attribute__((__section__(".init.setup"))) __attribute__((aligned((sizeof(long))))) = { __setup_str_##unique_id, fn, early }
69 #define __setup_null_param(str, unique_id) __setup_param(str, unique_id, NULL, 0)
71 #define __setup(str, fn) __setup_param(str, fn, fn, 0)
73 #define __obsolete_setup(str) __setup_null_param(str, __LINE__)
75 #define early_param(str, f
[all...]
/ndk/build/platforms/android-4/arch-arm/usr/include/linux/
H A Dinit.h62 const char *str; member in struct:obs_kernel_param
67 #define __setup_param(str, unique_id, fn, early) static char __setup_str_##unique_id[] __initdata = str; static struct obs_kernel_param __setup_##unique_id __attribute_used__ __attribute__((__section__(".init.setup"))) __attribute__((aligned((sizeof(long))))) = { __setup_str_##unique_id, fn, early }
69 #define __setup_null_param(str, unique_id) __setup_param(str, unique_id, NULL, 0)
71 #define __setup(str, fn) __setup_param(str, fn, fn, 0)
73 #define __obsolete_setup(str) __setup_null_param(str, __LINE__)
75 #define early_param(str, f
[all...]
/ndk/build/platforms/android-5/arch-arm/usr/include/linux/
H A Dinit.h62 const char *str; member in struct:obs_kernel_param
67 #define __setup_param(str, unique_id, fn, early) static char __setup_str_##unique_id[] __initdata = str; static struct obs_kernel_param __setup_##unique_id __attribute_used__ __attribute__((__section__(".init.setup"))) __attribute__((aligned((sizeof(long))))) = { __setup_str_##unique_id, fn, early }
69 #define __setup_null_param(str, unique_id) __setup_param(str, unique_id, NULL, 0)
71 #define __setup(str, fn) __setup_param(str, fn, fn, 0)
73 #define __obsolete_setup(str) __setup_null_param(str, __LINE__)
75 #define early_param(str, f
[all...]
/ndk/build/platforms/android-5/arch-x86/usr/include/linux/
H A Dinit.h62 const char *str; member in struct:obs_kernel_param
67 #define __setup_param(str, unique_id, fn, early) static char __setup_str_##unique_id[] __initdata = str; static struct obs_kernel_param __setup_##unique_id __attribute_used__ __attribute__((__section__(".init.setup"))) __attribute__((aligned((sizeof(long))))) = { __setup_str_##unique_id, fn, early }
69 #define __setup_null_param(str, unique_id) __setup_param(str, unique_id, NULL, 0)
71 #define __setup(str, fn) __setup_param(str, fn, fn, 0)
73 #define __obsolete_setup(str) __setup_null_param(str, __LINE__)
75 #define early_param(str, f
[all...]
/ndk/build/platforms/android-8/arch-arm/usr/include/linux/
H A Dinit.h62 const char *str; member in struct:obs_kernel_param
67 #define __setup_param(str, unique_id, fn, early) static char __setup_str_##unique_id[] __initdata = str; static struct obs_kernel_param __setup_##unique_id __attribute_used__ __attribute__((__section__(".init.setup"))) __attribute__((aligned((sizeof(long))))) = { __setup_str_##unique_id, fn, early }
69 #define __setup_null_param(str, unique_id) __setup_param(str, unique_id, NULL, 0)
71 #define __setup(str, fn) __setup_param(str, fn, fn, 0)
73 #define __obsolete_setup(str) __setup_null_param(str, __LINE__)
75 #define early_param(str, f
[all...]
/ndk/build/platforms/android-8/arch-x86/usr/include/linux/
H A Dinit.h62 const char *str; member in struct:obs_kernel_param
67 #define __setup_param(str, unique_id, fn, early) static char __setup_str_##unique_id[] __initdata = str; static struct obs_kernel_param __setup_##unique_id __attribute_used__ __attribute__((__section__(".init.setup"))) __attribute__((aligned((sizeof(long))))) = { __setup_str_##unique_id, fn, early }
69 #define __setup_null_param(str, unique_id) __setup_param(str, unique_id, NULL, 0)
71 #define __setup(str, fn) __setup_param(str, fn, fn, 0)
73 #define __obsolete_setup(str) __setup_null_param(str, __LINE__)
75 #define early_param(str, f
[all...]
/ndk/samples/hello-neon/jni/
H A Dhelloneon.c83 char* str; local
109 asprintf(&str, "FIR Filter benchmark:\nC version : %g ms\n", time_c);
110 strlcpy(buffer, str, sizeof buffer);
111 free(str);
143 asprintf(&str, "%g ms (x%g faster)\n", time_neon, time_c / (time_neon < 1e-6 ? 1. : time_neon));
144 strlcat(buffer, str, sizeof buffer);
145 free(str);
/ndk/build/platforms/android-3/arch-arm/usr/include/
H A Dtime.h43 extern char *strtotimeval(const char *str, struct timeval *tv);
H A Djni.h990 void GetStringRegion(jstring str, jsize start, jsize len, jchar* buf) argument
991 { functions->GetStringRegion(this, str, start, len, buf); }
993 void GetStringUTFRegion(jstring str, jsize start, jsize len, char* buf) argument
994 { return functions->GetStringUTFRegion(this, str, start, len, buf); }
1070 const char* name; /* NULL or name of thread as modified UTF-8 str */
/ndk/build/platforms/android-4/arch-arm/usr/include/
H A Dtime.h43 extern char *strtotimeval(const char *str, struct timeval *tv);
H A Djni.h990 void GetStringRegion(jstring str, jsize start, jsize len, jchar* buf) argument
991 { functions->GetStringRegion(this, str, start, len, buf); }
993 void GetStringUTFRegion(jstring str, jsize start, jsize len, char* buf) argument
994 { return functions->GetStringUTFRegion(this, str, start, len, buf); }
1070 const char* name; /* NULL or name of thread as modified UTF-8 str */
/ndk/build/platforms/android-5/arch-arm/usr/include/
H A Dtime.h43 extern char *strtotimeval(const char *str, struct timeval *tv);
H A Djni.h990 void GetStringRegion(jstring str, jsize start, jsize len, jchar* buf) argument
991 { functions->GetStringRegion(this, str, start, len, buf); }
993 void GetStringUTFRegion(jstring str, jsize start, jsize len, char* buf) argument
994 { return functions->GetStringUTFRegion(this, str, start, len, buf); }
1070 const char* name; /* NULL or name of thread as modified UTF-8 str */
/ndk/build/platforms/android-5/arch-x86/usr/include/
H A Dtime.h43 extern char *strtotimeval(const char *str, struct timeval *tv);
H A Djni.h990 void GetStringRegion(jstring str, jsize start, jsize len, jchar* buf) argument
991 { functions->GetStringRegion(this, str, start, len, buf); }
993 void GetStringUTFRegion(jstring str, jsize start, jsize len, char* buf) argument
994 { return functions->GetStringUTFRegion(this, str, start, len, buf); }
1070 const char* name; /* NULL or name of thread as modified UTF-8 str */
/ndk/build/platforms/android-8/arch-arm/usr/include/
H A Dtime.h43 extern char *strtotimeval(const char *str, struct timeval *tv);
H A Djni.h990 void GetStringRegion(jstring str, jsize start, jsize len, jchar* buf) argument
991 { functions->GetStringRegion(this, str, start, len, buf); }
993 void GetStringUTFRegion(jstring str, jsize start, jsize len, char* buf) argument
994 { return functions->GetStringUTFRegion(this, str, start, len, buf); }
1070 const char* name; /* NULL or name of thread as modified UTF-8 str */
/ndk/build/platforms/android-8/arch-x86/usr/include/
H A Dtime.h43 extern char *strtotimeval(const char *str, struct timeval *tv);
H A Djni.h990 void GetStringRegion(jstring str, jsize start, jsize len, jchar* buf) argument
991 { functions->GetStringRegion(this, str, start, len, buf); }
993 void GetStringUTFRegion(jstring str, jsize start, jsize len, char* buf) argument
994 { return functions->GetStringUTFRegion(this, str, start, len, buf); }
1070 const char* name; /* NULL or name of thread as modified UTF-8 str */
/ndk/build/platforms/android-5/arch-x86/usr/include/asm/
H A Duaccess_32.h81 #define strlen_user(str) strnlen_user(str, LONG_MAX)
/ndk/build/platforms/android-8/arch-x86/usr/include/asm/
H A Duaccess_32.h81 #define strlen_user(str) strnlen_user(str, LONG_MAX)

Completed in 2831 milliseconds