Searched defs:name (Results 1 - 25 of 129) sorted by relevance

123456

/bionic/libc/arch-x86/string/
H A Dsse2-strlen-atom.S15 * Neither the name of Intel Corporation nor the names of its contributors
66 # define ENTRY(name) \
67 .type name, @function; \
68 .globl name; \
70 name: \ label
75 # define END(name) \
77 .size name, .-name
H A Dsse2-wcslen-atom.S15 * Neither the name of Intel Corporation nor the names of its contributors
46 # define ENTRY(name) \
47 .type name, @function; \
48 .globl name; \
50 name: \ label
55 # define END(name) \
57 .size name, .-name
H A Dssse3-strcpy-atom.S15 * Neither the name of Intel Corporation nor the names of its contributors
58 # define ENTRY(name) \
59 .type name, @function; \
60 .globl name; \
62 name: \ label
67 # define END(name) \
69 .size name, .-name
H A Dssse3-wcscpy-atom.S15 * Neither the name of Intel Corporation nor the names of its contributors
58 # define ENTRY(name) \
59 .type name, @function; \
60 .globl name; \
62 name: \ label
67 # define END(name) \
69 .size name, .-name
H A Dsse2-memset-atom.S15 * Neither the name of Intel Corporation nor the names of its contributors
63 # define ENTRY(name) \
64 .type name, @function; \
65 .globl name; \
67 name: \ label
72 # define END(name) \
74 .size name, .-name
H A Dssse3-memcpy-atom.S15 * Neither the name of Intel Corporation nor the names of its contributors
63 # define ENTRY(name) \
64 .type name, @function; \
65 .globl name; \
67 name: \ label
72 # define END(name) \
74 .size name, .-name
H A Dssse3-strcmp-atom.S15 * Neither the name of Intel Corporation nor the names of its contributors
64 # define ENTRY(name) \
65 .type name, @function; \
66 .globl name; \
68 name: \ label
73 # define END(name) \
75 .size name, .-name
H A Dsse2-wcschr-atom.S15 * Neither the name of Intel Corporation nor the names of its contributors
56 # define ENTRY(name) \
57 .type name, @function; \
58 .globl name; \
60 name: \ label
65 # define END(name) \
67 .size name, .-name
H A Dsse2-memchr-atom.S15 * Neither the name of Intel Corporation nor the names of its contributors
56 # define ENTRY(name) \
57 .type name, @function; \
58 .globl name; \
60 name: \ label
65 # define END(name) \
67 .size name, .-name
H A Dsse2-memrchr-atom.S15 * Neither the name of Intel Corporation nor the names of its contributors
56 # define ENTRY(name) \
57 .type name, @function; \
58 .globl name; \
60 name: \ label
65 # define END(name) \
67 .size name, .-name
/bionic/libc/kernel/common/linux/netfilter/
H A Dxt_helper.h5 *** of the same name, to make information necessary for userspace to
24 char name[30]; member in struct:xt_helper_info
/bionic/libc/upstream-netbsd/libc/regex/
H A Dcname.h18 * 3. Neither the name of the University nor the names of its contributors
55 * 4. Neither the name of the University nor the names of its contributors
74 /* character-name table */
76 const char *name; member in struct:cname
H A Dcclass.h18 * 3. Neither the name of the University nor the names of its contributors
55 * 4. Neither the name of the University nor the names of its contributors
76 const char *name; member in struct:cclass
/bionic/libc/netbsd/net/
H A Dgetservbyname.c34 getservbyname(const char *name, const char *proto) argument
39 if (rs == NULL || proto == NULL || name == NULL) {
49 if ( !strcmp( s->s_name, name ) && !strcmp( s->s_proto, proto ) )
/bionic/libc/unistd/
H A Dcharclass.h11 const char *name; member in struct:cclass
/bionic/libc/bionic/
H A Ddebug_mapinfo.h38 char name[]; member in struct:mapinfo_t
H A Dgethostname.c35 struct utsname name; local
38 result = uname(&name);
41 int namelen = strlen(name.nodename);
47 memcpy( buff, name.nodename, namelen+1 );
H A Dname_mem.c32 * Local definitions of custom prctl arguments to set a vma name in some kernels
38 * Names a region of memory. The name is expected to show up in /proc/pid/maps
41 * mmap(MAP_ANONYMOUS), and only on regions that are page aligned. name should
49 int __bionic_name_mem(void *addr, size_t len, const char *name) argument
52 addr, len, name);
H A Dcrtbrand.c55 char name[sizeof ABI_VENDOR]; member in struct:__anon4
/bionic/libc/upstream-freebsd/lib/libc/stdio/
H A Dtempnam.c13 * 3. Neither the name of the University nor the names of its contributors
53 char *f, *name; local
55 if (!(name = malloc(MAXPATHLEN)))
62 (void)snprintf(name, MAXPATHLEN, "%s%s%sXXXXXX", f,
64 if ((f = _mktemp(name)))
69 (void)snprintf(name, MAXPATHLEN, "%s%s%sXXXXXX", f,
71 if ((f = _mktemp(name)))
76 (void)snprintf(name, MAXPATHLEN, "%s%sXXXXXX", f, pfx);
77 if ((f = _mktemp(name)))
81 (void)snprintf(name, MAXPATHLE
[all...]
/bionic/libc/kernel/common/linux/raid/
H A Dxor.h5 *** of the same name, to make information necessary for userspace to
26 const char *name; member in struct:xor_block_template
/bionic/libc/kernel/common/linux/
H A Dsw_sync.h5 *** of the same name, to make information necessary for userspace to
25 char name[32]; member in struct:sw_sync_create_fence_data
/bionic/libc/stdlib/
H A Dgetenv.c14 * 3. Neither the name of the University nor the names of its contributors
34 char *__findenv(const char *name, int *offset);
38 * Returns pointer to value associated with name, if any, else NULL.
39 * Sets offset to be the offset of the name/value combination in the
41 * Explicitly removes '=' in argument name.
46 __findenv(const char *name, int *offset) argument
53 if (name == NULL || environ == NULL)
55 for (np = name; *np && *np != '='; ++np)
57 len = np - name;
59 for (np = name,
75 getenv(const char *name) argument
[all...]
/bionic/libstdc++/src/
H A Dtypeinfo.cpp11 type_info::name() const { function in class:type_info
/bionic/tests/
H A Dbenchmark.h25 Benchmark(const char* name, void (*fn)(int)) { argument
26 Register(name, fn, NULL);
29 Benchmark(const char* name, void (*fn_range)(int, int)) { argument
30 Register(name, NULL, fn_range);
48 void Register(const char* name, void (*fn)(int), void (*fn_range)(int, int));

Completed in 425 milliseconds

123456