| /src/external/gpl3/gdb/dist/gnulib/import/ |
| memmem.c | 31 /* Return the first occurrence of NEEDLE in HAYSTACK. Return HAYSTACK 32 if NEEDLE_LEN is 0, otherwise NULL if NEEDLE is not found in 41 const unsigned char *needle = (const unsigned char *) needle_start; local 59 haystack = memchr (haystack, *needle, haystack_len); 65 return two_way_short_needle (haystack, haystack_len, needle, needle_len); 68 return two_way_long_needle (haystack, haystack_len, needle, needle_len);
|
| strstr.c | 35 /* Return the first occurrence of NEEDLE in HAYSTACK. Return HAYSTACK 36 if NEEDLE is empty, otherwise NULL if NEEDLE is not found in 42 const char *needle = needle_start; local 43 size_t needle_len; /* Length of NEEDLE. */ 45 bool ok = true; /* True if NEEDLE is prefix of HAYSTACK. */ 47 /* Determine length of NEEDLE, and in the process, make sure 49 NEEDLE if HAYSTACK is too short). */ 50 while (*haystack && *needle) 51 ok &= *haystack++ == *needle++ [all...] |
| /src/external/gpl3/gdb.old/dist/gnulib/import/ |
| memmem.c | 31 /* Return the first occurrence of NEEDLE in HAYSTACK. Return HAYSTACK 32 if NEEDLE_LEN is 0, otherwise NULL if NEEDLE is not found in 41 const unsigned char *needle = (const unsigned char *) needle_start; local 59 haystack = memchr (haystack, *needle, haystack_len); 65 return two_way_short_needle (haystack, haystack_len, needle, needle_len); 68 return two_way_long_needle (haystack, haystack_len, needle, needle_len);
|
| strstr.c | 35 /* Return the first occurrence of NEEDLE in HAYSTACK. Return HAYSTACK 36 if NEEDLE is empty, otherwise NULL if NEEDLE is not found in 42 const char *needle = needle_start; local 43 size_t needle_len; /* Length of NEEDLE. */ 45 bool ok = true; /* True if NEEDLE is prefix of HAYSTACK. */ 47 /* Determine length of NEEDLE, and in the process, make sure 49 NEEDLE if HAYSTACK is too short). */ 50 while (*haystack && *needle) 51 ok &= *haystack++ == *needle++ [all...] |
| /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/ |
| c-strstr.c | 39 register const unsigned char *haystack, *needle; local 43 needle = (const unsigned char *) pneedle; 45 b = *needle; 57 c = *++needle; 60 ++needle; 89 rneedle = needle; 98 a = *++needle; 104 a = *++needle; 108 needle = rneedle; /* took the register-poor approach */
|
| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| c-strstr.c | 39 register const unsigned char *haystack, *needle; local 43 needle = (const unsigned char *) pneedle; 45 b = *needle; 57 c = *++needle; 60 ++needle; 89 rneedle = needle; 98 a = *++needle; 104 a = *++needle; 108 needle = rneedle; /* took the register-poor approach */
|
| /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/ |
| c-strstr.c | 39 register const unsigned char *haystack, *needle; local 43 needle = (const unsigned char *) pneedle; 45 b = *needle; 57 c = *++needle; 60 ++needle; 89 rneedle = needle; 98 a = *++needle; 104 a = *++needle; 108 needle = rneedle; /* took the register-poor approach */
|
| /src/external/gpl3/gcc/dist/contrib/ |
| check-MAINTAINERS.py | 87 needle = 'Global Reviewers' variable 88 lines = list(dropwhile(lambda x: x.strip() != needle, lines)) 92 check_group(needle, chunk) 94 needle = 'Write After Approval' variable 95 lines = list(dropwhile(lambda x: needle not in x, lines)) 99 check_group(needle, chunk) 101 needle = 'Bug database only accounts' variable 102 lines = list(dropwhile(lambda x: needle not in x, lines)) 106 check_group(needle, chunk) 108 needle = 'Contributing under the DCO variable [all...] |
| /src/external/gpl3/gcc.old/dist/contrib/ |
| check-MAINTAINERS.py | 87 needle = 'Global Reviewers' variable 88 lines = list(dropwhile(lambda x: x.strip() != needle, lines)) 92 check_group(needle, chunk) 94 needle = 'Write After Approval' variable 95 lines = list(dropwhile(lambda x: needle not in x, lines)) 99 check_group(needle, chunk) 101 needle = 'Bug database only accounts' variable 102 lines = list(dropwhile(lambda x: needle not in x, lines)) 106 check_group(needle, chunk) 108 needle = 'Contributing under the DCO variable [all...] |
| /src/external/gpl3/binutils/dist/gas/ |
| hash.h | 64 string_tuple_t needle = { key, 0 }; local 65 string_tuple_t *tuple = htab_find (table, &needle); 72 string_tuple_t needle = { key, 0 }; local 73 string_tuple_t *tuple = htab_find (table, &needle); 83 string_tuple_t needle = { tmp, 0 }; local 84 string_tuple_t *tuple = htab_find (table, &needle); 92 string_tuple_t needle = { key, 0 }; local 93 htab_remove_elt (table, &needle);
|
| /src/external/gpl3/binutils.old/dist/gas/ |
| hash.h | 64 string_tuple_t needle = { key, 0 }; local 65 string_tuple_t *tuple = htab_find (table, &needle); 72 string_tuple_t needle = { key, 0 }; local 73 string_tuple_t *tuple = htab_find (table, &needle); 83 string_tuple_t needle = { tmp, 0 }; local 84 string_tuple_t *tuple = htab_find (table, &needle); 92 string_tuple_t needle = { key, 0 }; local 93 htab_remove_elt (table, &needle);
|
| /src/external/bsd/openldap/dist/libraries/libldap/ |
| abandon.c | 137 LDAPRequest needle = {0}; local 139 needle.lr_msgid = origid; 145 } else if ( (lr = ldap_tavl_find( ld->ld_requests, &needle, ldap_req_cmp )) != NULL ) { 159 needle.lr_msgid = lr->lr_msgid; 190 lr = ldap_tavl_find( ld->ld_requests, &needle, ldap_req_cmp );
|
| request.c | 1673 LDAPRequest *lr, needle = {0}; local 1674 needle.lr_msgid = msgid; 1676 lr = ldap_tavl_find( ld->ld_requests, &needle, ldap_req_cmp );
|
| /src/external/bsd/openldap/dist/servers/lloadd/ |
| extended.c | 132 ExopHandler *handler, needle = {}; local 155 needle.oid = bv; 157 handler = ldap_avl_find( lload_exop_handlers, &needle, exop_handler_cmp );
|
| bind.c | 211 LloadOperation *pinned_op, needle = { local 222 ldap_tavl_delete( &client->c_ops, &needle, operation_client_cmp ); 230 needle.o_ber = pinned_op->o_ber; 232 op->o_ber = needle.o_ber;
|
| client.c | 43 LloadOperation *request, needle = { .o_client_connid = c->c_connid }; local 48 if ( ber_decode_int( &op->o_request, &needle.o_client_msgid ) ) { 59 request = ldap_tavl_find( c->c_ops, &needle, operation_client_cmp ); 64 c->c_connid, op->o_client_msgid, needle.o_client_msgid ); 72 c->c_connid, op->o_client_msgid, needle.o_client_msgid ); 79 lload_msgtype2str( request->o_tag ), needle.o_client_msgid ); 112 struct restriction_entry *entry, needle = {}; local 118 if ( ber_skip_element( control_ber, &needle.oid ) == LBER_ERROR ) { 127 lload_control_actions, &needle, lload_restriction_cmp );
|
| upstream.c | 198 LloadOperation *op = NULL, needle = { .o_upstream_connid = c->c_connid }; local 207 tag = ber_get_int( ber, &needle.o_upstream_msgid ); 215 if ( needle.o_upstream_msgid == 0 ) { 218 c->c_ops, &needle, operation_upstream_cmp ) ) ) { 287 needle.o_upstream_msgid );
|
| /src/external/gpl3/binutils/dist/bfd/ |
| coff-x86_64.c | 789 struct bfd_section needle; local 791 needle.index = sym->n_scnum - 1; 792 s = htab_find (table, &needle);
|
| /src/external/gpl3/binutils.old/dist/bfd/ |
| coff-x86_64.c | 789 struct bfd_section needle; local 791 needle.index = sym->n_scnum - 1; 792 s = htab_find (table, &needle);
|
| /src/external/gpl3/gdb/dist/bfd/ |
| coff-x86_64.c | 789 struct bfd_section needle; local 791 needle.index = sym->n_scnum - 1; 792 s = htab_find (table, &needle);
|
| /src/external/gpl3/gdb.old/dist/bfd/ |
| coff-x86_64.c | 789 struct bfd_section needle; local 791 needle.index = sym->n_scnum - 1; 792 s = htab_find (table, &needle);
|
| /src/external/bsd/openldap/dist/contrib/slapd-modules/variant/ |
| variant.c | 473 Operation needle = { .o_req_ndn = BER_BVNULL }, *nop; local 486 op, vai, nmatch, pmatch, &needle.o_req_ndn ); 491 needle.o_req_ndn = vai->dn; 494 nop = ldap_avl_find( ops, &needle, variant_cmp_op ); 499 ber_dupbv( &nop->o_req_ndn, &needle.o_req_ndn ); 513 ch_free( needle.o_req_ndn.bv_val );
|
| /src/external/gpl3/gcc/dist/gcc/config/nvptx/ |
| mkoffload.cc | 356 const char needle[] = "// BEGIN GLOBAL FUNCTION DECL: "; local 394 p = strstr (p, needle); 403 p += strlen (needle); 433 const char needle[] = "// BEGIN GLOBAL FUNCTION DECL: "; local 465 p = strstr (p, needle); 474 p += strlen (needle);
|
| /src/external/gpl3/gcc/dist/libgomp/ |
| allocator.c | 88 struct fort_alloc_splay_tree_key_s needle; local 90 needle.ptr = ptr; 91 n = fort_alloc_splay_tree_lookup_node (&fort_alloc_scalars, &needle);
|
| /src/external/bsd/wpa/dist/src/drivers/ |
| driver_macsec_linux.c | 1126 struct rtnl_link *needle; local 1129 needle = rtnl_link_macsec_alloc(); 1130 if (!needle) 1133 rtnl_link_set_link(needle, parent); 1134 rtnl_link_macsec_set_sci(needle, sci); 1136 rtnl_link_macsec_set_cipher_suite(needle, cs); 1138 match = nl_cache_find(cache, (struct nl_object *) needle); 1139 rtnl_link_put(needle);
|