Searched refs:elts (Results 1 - 25 of 114) sorted by relevance

12345

/macosx-10.10/patch_cmds-17/diffstat/porting/
H A Dsystem.h66 #define typeCalloc(type,elts) (type *)(elts)
68 #define typeCalloc(type,elts) (type *)calloc(elts,sizeof(type))
/macosx-10.10/apr-32/apr/apr/file_io/unix/
H A Dfilepath_util.c36 apr_array_header_t *elts; local
51 elts = apr_array_make(p, nelts, sizeof(char*));
57 *(char**)apr_array_push(elts) = part;
61 *pathelts = elts;
82 path_size += strlen(((char**)pathelts->elts)[i]);
99 const char *part = ((char**)pathelts->elts)[i];
/macosx-10.10/ncurses-44/ncurses/include/
H A Dnc_alloc.h98 #define typeMalloc(type,elts) (type *)malloc((elts)*sizeof(type))
99 #define typeCalloc(type,elts) (type *)calloc((elts),sizeof(type))
100 #define typeRealloc(type,elts,ptr) (type *)_nc_doalloc(ptr, (elts)*sizeof(type))
/macosx-10.10/apache-793/httpd/modules/metadata/
H A Dmod_env.c53 const apr_table_entry_t *elts; local
73 elts = (const apr_table_entry_t *)arr->elts;
76 apr_table_unset(res->vars, elts[i].key);
82 elts = (const apr_table_entry_t *)arr->elts;
85 apr_table_setn(res->vars, elts[i].key, elts[i].val);
H A Dmod_setenvif.c302 entries = (sei_entry *) sconf->conditionals->elts;
495 const apr_table_entry_t *elts; local
512 entries = (sei_entry *) sconf->conditionals->elts;
555 elts = (const apr_table_entry_t *) arr->elts;
558 if (!ap_regexec(b->pnamereg, elts[j].key, 0, NULL, 0)) {
559 val = elts[j].val;
594 elts = (const apr_table_entry_t *) arr->elts;
597 if (*(elts[
[all...]
/macosx-10.10/apr-32/apr/apr/tables/
H A Dapr_tables.c59 * array of zero elts.
66 res->elts = apr_pcalloc(p, nelts * elt_size);
69 res->elts = apr_palloc(p, nelts * elt_size);
104 return arr->elts + (arr->elt_size * (--arr->nelts));
115 memcpy(new_data, arr->elts, arr->nalloc * arr->elt_size);
118 arr->elts = new_data;
123 return arr->elts + (arr->elt_size * (arr->nelts - 1));
134 memcpy(new_data, arr->elts, arr->nalloc * arr->elt_size);
135 arr->elts = new_data;
140 return arr->elts
429 apr_table_entry_t *elts = (apr_table_entry_t *) array->elts; local
783 apr_table_entry_t *elts; local
803 apr_table_entry_t *elts; local
955 apr_table_entry_t *elts = (apr_table_entry_t *) t->a.elts; local
[all...]
/macosx-10.10/apache-793/httpd/server/
H A Dutil_fcgi.c121 const apr_table_entry_t *elts; local
130 elts = (const apr_table_entry_t *) envarr->elts;
139 if (!elts[i].key) {
145 keylen = strlen(elts[i].key);
156 vallen = strlen(elts[i].val);
187 const apr_table_entry_t *elts; local
192 elts = (const apr_table_entry_t *) envarr->elts;
199 if (!elts[
[all...]
H A Dutil_pcre.c283 char *name = ((char **) names->elts)[capture] =
292 ((const char **)names->elts)[capture] = offset + 2;
/macosx-10.10/apache-793/httpd/modules/arch/win32/
H A Dmod_win32.c374 const apr_table_entry_t *elts = (apr_table_entry_t *) elts_arr->elts; local
515 args)->elts);
527 if (elts[i].key && *elts[i].key && *elts[i].val
528 && !(strncmp(elts[i].key, "REMOTE_", 7) == 0
529 || strcmp(elts[i].key, "GATEWAY_INTERFACE") == 0
530 || strcmp(elts[i].key, "REQUEST_METHOD") == 0
531 || strcmp(elts[
[all...]
H A Dmod_isapi.c504 const apr_table_entry_t *elts = (const apr_table_entry_t *)arr->elts; local
508 if (!strncmp(elts[i].key, "HTTP_", 5)) {
509 len += strlen(elts[i].key) + strlen(elts[i].val) + 3;
520 if (!strncmp(elts[i].key, "HTTP_", 5)) {
521 strcpy(buf_data, elts[i].key);
522 buf_data += strlen(elts[i].key);
524 strcpy(buf_data, elts[i].val);
525 buf_data += strlen(elts[
542 const apr_table_entry_t *elts = (const apr_table_entry_t *)arr->elts; local
[all...]
/macosx-10.10/emacs-93/emacs/lisp/international/
H A Dja-dic-utl.el133 elts)
136 (setq elts (split-char ch))
137 (if (and (eq (car elts) 'japanese-jisx0208)
138 (= (nth 1 elts) skkdic-jisx0208-hiragana-block))
139 (aset vec i (- (nth 2 elts) 32))
/macosx-10.10/bind9-45.101/bind9/bin/named/
H A Dlistenlist.c67 ISC_LIST_INIT(list->elts);
75 for (elt = ISC_LIST_HEAD(list->elts);
127 ISC_LIST_APPEND(list->elts, elt, link);
/macosx-10.10/bind9-45.101/bind9/bin/named/include/named/
H A Dlistenlist.h56 ISC_LIST(ns_listenelt_t) elts; member in struct:ns_listenlist
/macosx-10.10/apache-793/httpd/modules/proxy/
H A Dajp_header.c224 const apr_table_entry_t *elts = (const apr_table_entry_t *)arr->elts; local
266 const apr_table_entry_t *elts = (apr_table_entry_t *)t->elts; local
268 if ((sc = sc_for_req_header(elts[i].key)) != UNKNOWN_METHOD) {
277 if (ajp_msg_append_string(msg, elts[i].key)) {
285 if (ajp_msg_append_string(msg, elts[i].val)) {
293 i, elts[i].key, elts[i].val);
442 if (!strncmp(elts[
[all...]
/macosx-10.10/apache-793/httpd/modules/core/
H A Dmod_macro.c246 char **tab = (char **) macro->arguments->elts;
304 char **tab = (char **) array->elts;
397 char *chosen = NULL, **tab = (char **) args->elts;
428 **atab = (char **) macro->arguments->elts,
429 **rtab = (char **) replacements->elts;
446 used->elts[whichone] = 1;
478 strncpy(line, ((char **) contents->elts)[i], MAX_STRING_LEN - 1);
503 char **names = (char **) macro->arguments->elts;
518 used->elts[i] = 0;
528 if (!used->elts[
[all...]
/macosx-10.10/apr-32/apr/apr/test/
H A Dtestpath.c58 ABTS_STR_EQUAL(tc, parts_out[i], ((char**)pathelts->elts)[i]);
78 ABTS_STR_EQUAL(tc, parts_in[i], *(char**)pathelts->elts);
112 *(const char**)pathelts->elts = parts_in[i];
/macosx-10.10/apache_mod_hfs_apple-14/
H A Dmod_hfs_apple2.c122 dir_rec *entry = ((dir_rec**) directories->elts)[i];
157 void **sec = (void**) sconf->sec_dir->elts;
353 dir_rec *entry = ((dir_rec**) directories->elts)[i];
386 r->filename, ((dir_rec**) directories->elts)[found]->dir_path, max_n_matches);
388 if (strncmp(((dir_rec**) directories->elts)[found]->dir_path,
393 ((dir_rec**) directories->elts)[found]->dir_path);
/macosx-10.10/apache-793/httpd/modules/proxy/balancers/
H A Dmod_lbmethod_bybusyness.c61 worker = (proxy_worker **)balancer->workers->elts;
126 worker = (proxy_worker **)balancer->workers->elts;
H A Dmod_lbmethod_byrequests.c103 worker = (proxy_worker **)balancer->workers->elts;
155 worker = (proxy_worker **)balancer->workers->elts;
H A Dmod_lbmethod_bytraffic.c75 worker = (proxy_worker **)balancer->workers->elts;
128 worker = (proxy_worker **)balancer->workers->elts;
/macosx-10.10/apr-32/apr/apr/include/
H A Dapr_tables.h72 char *elts; member in struct:apr_array_header_t
141 #define APR_ARRAY_IDX(ary,i,type) (((type *)(ary)->elts)[i])
445 * apr_table_entry_t *belt = (apr_table_entry_t *)barr->elts;
/macosx-10.10/apache-793/httpd/include/
H A Dap_regkey.h194 * @param elts The number of elements in the elts string array
200 const char * const * elts,
/macosx-10.10/apr-32/apr-util/apr-util/include/
H A Dapr_optional_hooks.h101 pHook=(ns##_LINK_##name##_t *)pHookArray->elts; \
/macosx-10.10/apache-793/httpd/modules/cache/
H A Dmod_socache_dbm.c360 int elts = 0; local
414 elts++;
458 elts, elts-deleted, deleted);
467 int elts; local
472 elts = 0;
492 elts += 1;
496 if (size > 0 && elts > 0)
497 avg = (int)(size / (long)elts);
501 ap_rprintf(r, "current entries: <b>%d</b>, current size: <b>%ld</b> bytes<br>", elts, siz
[all...]
/macosx-10.10/apache-793/httpd/modules/generators/
H A Dmod_info.c362 hook_struct_t *elts; local
368 elts = (hook_struct_t *) hooks->elts;
371 if (strcmp(elts[i].szName, modp->name) == 0) {
414 info_entry *entry = (info_entry *) conf->more_info->elts;
630 hook_struct_t *elts; local
644 elts = (hook_struct_t *) hooks->elts;
649 elts[i].nOrder, qs, elts[
[all...]

Completed in 304 milliseconds

12345