Searched refs:el (Results 101 - 125 of 309) sorted by relevance

1234567891011>>

/macosx-10.10/configd-699.1.5/scutil.tproj/
H A Dscutil.c185 if (src->el) {
189 line = el_gets(src->el, &count);
203 } else if (!src->el) {
381 prompt(EditLine *el) argument
656 src->el = NULL;
669 src->el = el_init(prog, src->fp, stdout, stderr);
673 el_set(src->el, EL_HIST, history, src->h);
676 el_set(src->el, EL_EDITMODE, 0);
679 el_set(src->el, EL_EDITOR, "emacs");
680 el_set(src->el, EL_PROMP
[all...]
H A Dscutil.h47 EditLine *el; member in struct:__anon7241
/macosx-10.10/libxml2-26/libxml2/
H A Dregressions.py75 el = len(exp)
76 if el != rl:
77 print 'Length of expected is %d, result is %d' % (el, rl)
79 for i in range(min(el, rl)):
83 if el > rl:
84 for i in range(rl, el):
87 elif rl > el:
88 for i in range (el, rl):
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dregressions.py75 el = len(exp)
76 if el != rl:
77 print 'Length of expected is %d, result is %d' % (el, rl)
79 for i in range(min(el, rl)):
83 if el > rl:
84 for i in range(rl, el):
87 elif rl > el:
88 for i in range (el, rl):
/macosx-10.10/OpenSSL098-52/src/engines/
H A De_sureware.c652 static EVP_PKEY* sureware_load_public(ENGINE *e,const char *key_id,char *hptr,unsigned long el,char keytype) argument
680 bn_expand2(rsatmp->e, el/sizeof(BN_ULONG));
681 bn_expand2(rsatmp->n, el/sizeof(BN_ULONG));
682 if (!rsatmp->e || rsatmp->e->dmax!=(int)(el/sizeof(BN_ULONG))||
683 !rsatmp->n || rsatmp->n->dmax!=(int)(el/sizeof(BN_ULONG)))
685 ret=p_surewarehk_Load_Rsa_Pubkey(msg,key_id,el,
695 rsatmp->e->top=el/sizeof(BN_ULONG);
697 rsatmp->n->top=el/sizeof(BN_ULONG);
717 bn_expand2(dsatmp->pub_key, el/sizeof(BN_ULONG));
718 bn_expand2(dsatmp->p, el/sizeo
779 unsigned long el=0; local
807 unsigned long el=0; local
[all...]
/macosx-10.10/ICU-531.30/icuSources/tools/toolutil/
H A Dxmlparser.cpp379 UXMLElement *el = root; local
386 // "el" always refers to the current element, the one to which content
392 el->fChildren.addElement(t, status);
393 t->fParent = el;
394 fElementStack.push(el, status);
395 el = t;
408 el->fChildren.addElement(s.clone(), status);
430 if (name != *el->fName) {
436 el = NULL;
439 el
489 UXMLElement *el = new UXMLElement(this, intern(mEl.group(1, status), status), status); local
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/struct/sets/
H A Dm.c62 if (s->el.numEntries) {
68 for(he = Tcl_FirstHashEntry(&s->el, &hs);
71 key = Tcl_GetHashKey (&s->el, he);
72 if (Tcl_FindHashEntry (&vs->el, key) != NULL) continue;
83 (void*) Tcl_CreateHashEntry(&vs->el, key, &new);
639 if (s->el.numEntries) {
645 for(he = Tcl_FirstHashEntry(&s->el, &hs);
648 key = Tcl_GetHashKey (&s->el, he);
649 if (Tcl_FindHashEntry (&vs->el, key) == NULL) continue;
660 Tcl_DeleteHashEntry (Tcl_FindHashEntry (&vs->el, ke
[all...]
/macosx-10.10/emacs-93/emacs/lisp/gnus/
H A Dgnus-spec.el1 ;;; gnus-spec.el --- format spec functions for Gnus
343 (defun gnus-tilde-max-form (el max-width)
348 (if (symbolp el)
349 `(if (> (,length-fun ,el) ,max)
351 `(,substring-fun ,el (- (,length-fun ,el) ,max))
352 `(,substring-fun ,el 0 ,max))
353 ,el)
354 `(let ((val (eval ,el)))
361 (defun gnus-tilde-cut-form (el cu
[all...]
H A Dgmm-utils.el1 ;;; gmm-utils.el --- Utility functions for Gnus, Message and MML
41 ;; Helper functions from `gnus-utils.el': gmm-verbose, gmm-message, gmm-error
85 ;; Copy of the `nnmail-lazy' code from `nnmail.el':
239 (mapc (lambda (el)
240 (let ((command (car el))
241 (icon (nth 1 el))
242 (fmap (or (nth 2 el) default-map))
243 (props (cdr (cdr (cdr el)))) )
297 ;; Cf. `mh-image-load-path-for-library' in `mh-compat.el'.
422 ;;; gmm-utils.el end
[all...]
/macosx-10.10/lukemftp-14/tnftp/src/
H A Dcomplete.c109 if (el_insertstr(el, insertstr) == -1)
129 if (el_insertstr(el, insertstr) == -1)
165 if (el_insertstr(el, " ") == -1)
247 if (el_insertstr(el, suffix) == -1)
277 if (el_insertstr(el, " ") == -1)
364 complete(EditLine *el, int ch) argument
374 lf = el_line(el);
H A Dutil.c985 if (editing && el == NULL && hist == NULL) {
989 el = el_init(getprogname(), stdin, ttyout, stderr);
993 el_set(el, EL_HIST, history, hist); /* use history */
995 el_set(el, EL_EDITOR, "emacs"); /* default editor is emacs */
996 el_set(el, EL_PROMPT, prompt); /* set the prompt functions */
997 el_set(el, EL_RPROMPT, rprompt);
1000 el_set(el, EL_ADDFN, "ftp-complete",
1003 el_set(el, EL_BIND, "^I", "ftp-complete", NULL);
1004 el_source(el, NULL); /* read ~/.editrc */
1005 if ((el_get(el, EL_EDITMOD
[all...]
/macosx-10.10/SmartcardCCID-55008/ccid/ccid/src/
H A Dsimclist.c570 tmp = list_findpos(l, posstart); /* first el to be deleted */
678 struct list_entry_s *el; local
683 for (el = l->head_sentinel->next; el != l->tail_sentinel; el = el->next, pos++) {
684 if (l->attrs.comparator(data, el->data) == 0) break;
688 for (el = l->head_sentinel->next; el != l->tail_sentinel; el
714 struct list_entry_s *el, *srcel; local
[all...]
/macosx-10.10/cups-408/cups/vcnet/regex/
H A DMakefile68 ./re -el <tests
74 -./re -el <tests
79 ./re -x -el <tests
85 -time ./re -el <tests
86 -time ./re -cs -el <tests
/macosx-10.10/tcl-105/tcl_ext/tktable/tktable/demos/
H A Dspreadsheet.tcl42 proc changepage {w e name el op} {
44 if {[string comp {} $el]} { set name [list $name\($el\)] }
/macosx-10.10/apache-793/httpd/docs/conf/extra/
H A Dhttpd-languages.conf.in37 # Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja)
48 AddLanguage el .el
78 LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv tr zh-CN zh-TW
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Drsa-gmp.c449 mpz_t el, p, q, n, d, dmp1, dmq1, iqmp, t1, t2, t3; local
457 mpz_init(el);
469 BN2mpz(el, e);
480 mpz_gcd(t2, t1, el);
492 mpz_gcd(t2, t1, el);
508 mpz_invert(d, el, t3);
519 rsa->e = mpz2BN(el);
530 mpz_clear(el);
/macosx-10.10/ntp-92/libntp/
H A Dntp_lineedit.c235 EditLine *el
238 UNUSED_ARG(el);
/macosx-10.10/ruby-106/ruby/lib/rexml/parsers/
H A Dtreeparser.rb33 el = @build_context = @build_context.add_element( event[1] )
35 el.attributes[key]=Attribute.new(key,value,self)
/macosx-10.10/BerkeleyDB-21/db/test/
H A Drep005.tcl200 set el 0
204 set el $last_win
214 set el 1
236 $qdir $msg $el $nsites $nvotes $nclients $win \
/macosx-10.10/lukemftp-14/tnftp/libedit/
H A Del.h1 /* $NetBSD: el.h,v 1.2 2005/05/11 01:17:39 lukem Exp $ */
2 /* from NetBSD: el.h,v 1.16 2003/10/18 23:48:42 christos Exp */
35 * @(#)el.h 8.1 (Berkeley) 6/4/93
39 * el.h: Internal structures.
142 fprintf(el->el_errfile, "%s, %d: ", \
/macosx-10.10/dtrace-147/tools/ctfconvert/
H A Dtdata.c219 elist_t *el = tdp->t_emem; local
222 while (el) {
223 oel = el;
224 el = el->el_next;
/macosx-10.10/ruby-106/ruby/test/rexml/
H A Dtest_xpath.rb190 doc.elements.each("//item") { |el| print el.name
191 if el.attributes['x']
192 puts " -- "+el.attributes['x']
197 doc.elements.each("//item/ancestor::") { |el| print el.name
198 if el.attributes['x']
199 puts " -- "+el.attributes['x']
225 doc.elements.each(line) do |el|
227 results.root << el
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclxml/tclxml/expat/xmlparse/
H A Dxmlparse.c221 enum XML_Error appendContent(ELEMENT_TYPE *el, int type, const XML_Char *name);
222 enum XML_Error appendAttribute(ELEMENT_TYPE *el, XML_Char *name);
3925 * el pointer to the element to modify
3938 * May grow the contentSpec array of the element pointed to by el.
3944 appendContent(ELEMENT_TYPE *el, int type, const XML_Char *name)
3949 if (el->nContentParticles + 1 >= el->maxContentParticles) {
3950 if (el->contentSpec) {
3951 el->maxContentParticles *= 2;
3953 realloc(el
3943 appendContent(ELEMENT_TYPE *el, int type, const XML_Char *name) argument
4031 appendAttribute(ELEMENT_TYPE *el, XML_Char *name) argument
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dkern_credential.c262 static void kauth_groups_updatecache(struct kauth_identity_extlookup *el);
2480 struct kauth_identity_extlookup el; local
2621 bzero(&el, sizeof(el));
2622 el.el_info_pid = current_proc()->p_pid;
2625 el.el_flags = KAUTH_EXTLOOKUP_VALID_UID;
2626 el.el_uid = *(uid_t *)src;
2629 el.el_flags = KAUTH_EXTLOOKUP_VALID_GID;
2630 el.el_gid = *(gid_t *)src;
2633 el
2876 kauth_groups_updatecache(struct kauth_identity_extlookup *el) argument
3033 struct kauth_identity_extlookup el; local
[all...]
/macosx-10.10/OpenSSL098-52/src/ssl/
H A Dt1_lib.c181 int el; local
183 if(!ssl_add_clienthello_renegotiate_ext(s, 0, &el, 0))
189 if((limit - p - 4 - el) < 0) return NULL;
192 s2n(el,ret);
194 if(!ssl_add_clienthello_renegotiate_ext(s, ret, &el, el))
200 ret += el;
303 int el; local
305 if(!ssl_add_serverhello_renegotiate_ext(s, 0, &el, 0))
311 if((limit - p - 4 - el) <
[all...]

Completed in 566 milliseconds

1234567891011>>