Home
last modified time | relevance | path

Searched defs:el (Results 501 – 525 of 12582) sorted by relevance

1...<<21222324252627282930>>...504

/dports/net/haproxy22/haproxy-2.2.19/include/haproxy/
H A Dlist.h80 #define LIST_DEL_INIT(el) ({ \ argument
102 #define LIST_ADDED(el) ((el)->n != (el)) argument
109 #define LIST_NEXT(lh, pt, el) (LIST_ELEM((lh)->n, pt, el)) argument
117 #define LIST_PREV(lh, pt, el) (LIST_ELEM((lh)->p, pt, el)) argument
476 #define MT_LIST_POP(_lh, pt, el) \ argument
547 #define MT_LIST_NEXT(lh, pt, el) (MT_LIST_ELEM((lh)->next, pt, el)) argument
555 #define MT_LIST_PREV(lh, pt, el) (MT_LIST_ELEM((lh)->prev, pt, el)) argument
560 #define MT_LIST_ADDED(el) ((el)->next != (el)) argument
626 #define _MT_LIST_UNLOCK_NEXT(el, np) \ argument
635 #define _MT_LIST_UNLOCK_PREV(el, np) \ argument
[all …]
/dports/net/haproxy23/haproxy-2.3.16/include/haproxy/
H A Dlist.h80 #define LIST_DEL_INIT(el) ({ \ argument
102 #define LIST_ADDED(el) ((el)->n != (el)) argument
109 #define LIST_NEXT(lh, pt, el) (LIST_ELEM((lh)->n, pt, el)) argument
117 #define LIST_PREV(lh, pt, el) (LIST_ELEM((lh)->p, pt, el)) argument
509 #define MT_LIST_POP(_lh, pt, el) \ argument
580 #define MT_LIST_NEXT(lh, pt, el) (MT_LIST_ELEM((lh)->next, pt, el)) argument
588 #define MT_LIST_PREV(lh, pt, el) (MT_LIST_ELEM((lh)->prev, pt, el)) argument
593 #define MT_LIST_ADDED(el) ((el)->next != (el)) argument
659 #define _MT_LIST_UNLOCK_NEXT(el, np) \ argument
668 #define _MT_LIST_UNLOCK_PREV(el, np) \ argument
[all …]
/dports/math/py-matplotlib2/matplotlib-2.2.4/examples/userdemo/
H A Dannotate_explain.py18 el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) variable
34 el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) variable
50 el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) variable
66 el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) variable
/dports/math/py-matplotlib/matplotlib-3.4.3/examples/userdemo/
H A Dannotate_explain.py18 el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) variable
34 el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) variable
50 el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) variable
66 el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) variable
/dports/math/py-matplotlib2/matplotlib-2.2.4/lib/mpl_examples/userdemo/
H A Dannotate_explain.py18 el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) variable
34 el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) variable
50 el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) variable
66 el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) variable
/dports/net/libsignal-protocol-c/libsignal-protocol-c-2.3.3/src/
H A Dutlist.h371 #define LL_COUNT(head,el,counter) \ argument
374 #define LL_COUNT2(head,el,counter,next) \ argument
380 #define LL_FOREACH(head,el) \ argument
383 #define LL_FOREACH2(head,el,next) \ argument
386 #define LL_FOREACH_SAFE(head,el,tmp) \ argument
389 #define LL_FOREACH_SAFE2(head,el,tmp,next) \ argument
412 #define LL_REPLACE_ELEM2(head, el, add, next) \ argument
432 #define LL_REPLACE_ELEM(head, el, add) \ argument
435 #define LL_PREPEND_ELEM2(head, el, add, next) \ argument
458 #define LL_PREPEND_ELEM(head, el, add) \ argument
[all …]
/dports/net-im/dino/dino-0.2.2/plugins/signal-protocol/libsignal-protocol-c/src/
H A Dutlist.h371 #define LL_COUNT(head,el,counter) \ argument
374 #define LL_COUNT2(head,el,counter,next) \ argument
380 #define LL_FOREACH(head,el) \ argument
383 #define LL_FOREACH2(head,el,next) \ argument
386 #define LL_FOREACH_SAFE(head,el,tmp) \ argument
389 #define LL_FOREACH_SAFE2(head,el,tmp,next) \ argument
412 #define LL_REPLACE_ELEM2(head, el, add, next) \ argument
432 #define LL_REPLACE_ELEM(head, el, add) \ argument
435 #define LL_PREPEND_ELEM2(head, el, add, next) \ argument
458 #define LL_PREPEND_ELEM(head, el, add) \ argument
[all …]
/dports/net/haproxy18/haproxy-1.8.30/include/common/
H A Dmini-clist.h84 #define LIST_ADD(lh, el) ({ (el)->n = (lh)->n; (el)->n->p = (lh)->n = (el); (el)->p = (lh); (el); }) argument
87 #define LIST_ADDQ(lh, el) ({ (el)->p = (lh)->p; (el)->p->n = (lh)->p = (el); (el)->n = (lh); (el); … argument
90 #define LIST_DEL(el) ({ typeof(el) __ret = (el); (el)->n->p = (el)->p; (el)->p->n = (el)->n; (__ret… argument
97 #define LIST_ELEM(lh, pt, el) ((pt)(((const char *)(lh)) - ((size_t)&((pt)NULL)->el))) argument
107 #define LIST_NEXT(lh, pt, el) (LIST_ELEM((lh)->n, pt, el)) argument
115 #define LIST_PREV(lh, pt, el) (LIST_ELEM((lh)->p, pt, el)) argument
175 #define LIST_ADD_LOCKED(lh, el) \ argument
201 #define LIST_ADDQ_LOCKED(lh, el) \ argument
227 #define LIST_DEL_LOCKED(el) \ argument
273 #define LIST_POP_LOCKED(lh, pt, el) \ argument
/dports/math/reduce/Reduce-svn5758-src/libraries/original/libedit-20160506/
H A Del.c74 EditLine *el = el_malloc(sizeof(*el)); in el_init_fd() local
130 el_end(EditLine *el) in el_end()
164 el_reset(EditLine *el) in el_reset()
176 el_wset(EditLine *el, int op, ...) in el_wset()
389 el_wget(EditLine *el, int op, ...) in el_wget()
502 el_wline(EditLine *el) in el_wline()
513 el_source(EditLine *el, const char *fname) in el_source()
585 el_resize(EditLine *el) in el_resize()
606 el_beep(EditLine *el) in el_beep()
618 el_editmode(EditLine *el, int argc, const wchar_t **argv) in el_editmode()
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/simplesamlphp/simplesamlphp/modules/discopower/dictionaries/
H A Dtabs.translation.json10 "el": "\u039d\u03bf\u03c1\u03b2\u03b7\u03b3\u03af\u03b1" string
19 "el": "Kalmar" string
29 "el": "\u03a6\u03b9\u03bd\u03bb\u03b1\u03bd\u03b4\u03af\u03b1" string
39 "el": "\u03a3\u03bf\u03c5\u03b7\u03b4\u03af\u03b1" string
49 "el": "\u0399\u03c3\u03bb\u03b1\u03bd\u03b4\u03af\u03b1" string
59 "el": "\u0394\u03b1\u03bd\u03af\u03b1" string
69 "el": "\u0395\u03bb\u03b2\u03b5\u03c4\u03af\u03b1" string
79 "el": "\u0395\u03bb\u03bb\u03ac\u03b4\u03b1" string
101 "el": "\u0395\u03c5\u03c1\u03ce\u03c0\u03b7 (eduGAIN)" string
111 "el": "\u0386\u03bb\u03bb\u03bf\u03b9 \u03c6\u03bf\u03c1\u03b5\u03af\u03c2" string
[all …]
/dports/games/legend-of-edgar/edgar-1.34/src/
H A Dentity.c127 EntityList *el; in doEntities() local
258 EntityList *el; in drawEntities() local
336 EntityList *el; in removeAllSpawnedIn() local
401 EntityList *el; in disableSpawners() local
1176 EntityList *el; in getEntityByName() local
1191 EntityList *el; in getEntityByObjectiveName() local
1206 EntityList *el; in getEntityByRequiredName() local
1312 EntityList *el; in getEntityByStartXY() local
1327 EntityList *el; in getEntityByXY() local
1342 EntityList *el; in activateEntitiesWithRequiredName() local
[all …]
/dports/security/p5-Net-SAML/zxid-1.42/c/
H A Dzx-tas3-dec.c56 struct zx_elem_s* el = x->gg.kids; in zx_DEC_ELEM_tas3_Credentials() local
104 struct zx_elem_s* el = x->gg.kids; in zx_DEC_ELEM_tas3_ESLApply() local
137 struct zx_elem_s* el = x->gg.kids; in zx_DEC_ELEM_tas3_ESLPolicies() local
163 struct zx_elem_s* el = x->gg.kids; in zx_DEC_ELEM_tas3_ESLRef() local
191 struct zx_elem_s* el = x->gg.kids; in zx_DEC_ELEM_tas3_Status() local
216 struct zx_elem_s* el = x->gg.kids; in zx_DEC_ELEM_tas3_Trust() local
242 struct zx_elem_s* el = x->gg.kids; in zx_DEC_ELEM_tas3_TrustRanking() local
/dports/lang/mono/mono-5.10.1.57/mcs/class/Commons.Xml.Relaxng/Commons.Xml.Nvdl/
H A DNvdlReader.cs27 private void FillForeignAttribute (NvdlAttributable el) in FillForeignAttribute()
44 private void FillNonXmlAttributes (NvdlMessage el) in FillNonXmlAttributes()
61 private void FillLocation (NvdlElementBase el) in FillLocation()
176 private void ReadModeCommon (NvdlModeBase el) in ReadModeCommon()
263 private void ReadAction (NvdlRule el) in ReadAction()
400 private void ReadCommonActionContent (NvdlNoCancelAction el) in ReadCommonActionContent()
/dports/ftp/bsdftpd-ssl/bsdftpd-ssl-1.1.0/contrib/libedit/
H A Dread.c63 read_debug(el) in read_debug() argument
141 read_preread(el) in read_preread() argument
176 el_push(el, str) in el_push() argument
197 read_getcmd(el, cmdnum, ch) in read_getcmd() argument
255 el_getc(el, cp) in el_getc() argument
311 el_gets(el, nread) in el_gets() argument
/dports/cad/opentimer/OpenTimer-18d28ff/ot/timer/
H A Dtest.cpp14 std::optional<float> Test::rat(Split el, Tran rf) const { in rat()
19 std::optional<float> Test::constraint(Split el, Tran rf) const { in constraint()
24 std::optional<float> Test::cppr_credit(Split el, Tran rf) const { in cppr_credit()
29 std::optional<float> Test::slack(Split el, Tran rf) const { in slack()
42 std::optional<float> Test::raw_slack(Split el, Tran rf) const { in raw_slack()
/dports/devel/msp430-debug-stack/msp430-debug-stack-3.15.0.1/DLL430_v3/src/TI/DLL430/
H A DConfigManager.cpp239 HalExecElement* el = new HalExecElement(ID_SendJtagMailboxXv2); in jtagErase() local
491 HalExecElement* el = new HalExecElement(ID_Configure); in setJtagSpeed() local
530 HalExecElement* el = new HalExecElement(ID_Reset430I); in MSP430I_MagicPattern() local
589 HalExecElement* el = new HalExecElement(resetMacro); in reset() local
760 HalExecElement* el; in setVccMspFET() local
851 HalExecElement* el = new HalExecElement(ID_SetVcc); in setVccMspFetUif() local
901 HalExecElement* el; in getDeviceVcc() local
923 HalExecElement* el; in getExternalVcc() local
974 HalExecElement* el = new HalExecElement(ID_Configure); in updateDisableInterruptsMode() local
992 HalExecElement* el = new HalExecElement(ID_Configure); in setJTAGLock5xx() local
[all …]
/dports/www/nginx-full/nchan-1.2.12/src/util/
H A Dnchan_list.c55 nchan_list_el_t *el = nchan_list_el_from_data(data)->prev; in nchan_list_prev() local
59 nchan_list_el_t *el = nchan_list_el_from_data(data)->next; in nchan_list_next() local
64 nchan_list_el_t *el, *tail = list->tail; in nchan_list_append_sized() local
91 nchan_list_el_t *el, *head = list->head; in nchan_list_prepend_sized() local
109 nchan_list_el_t *el = (nchan_list_el_t *)el_data - 1; in nchan_list_remove() local
133 nchan_list_el_t *el, *next; in nchan_list_empty() local
152 nchan_list_el_t *head = list->head, *el, *next; in nchan_list_traverse_and_empty() local
/dports/www/faup/faup-1.5-48-g88dbbe2/src/lib/include/faup/
H A Dutlist.h419 #define LL_COUNT(head,el,counter) \ argument
422 #define LL_COUNT2(head,el,counter,next) \ argument
428 #define LL_FOREACH(head,el) \ argument
431 #define LL_FOREACH2(head,el,next) \ argument
434 #define LL_FOREACH_SAFE(head,el,tmp) \ argument
437 #define LL_FOREACH_SAFE2(head,el,tmp,next) \ argument
460 #define LL_REPLACE_ELEM2(head, el, add, next) \ argument
480 #define LL_REPLACE_ELEM(head, el, add) \ argument
483 #define LL_PREPEND_ELEM2(head, el, add, next) \ argument
506 #define LL_PREPEND_ELEM(head, el, add) \ argument
[all …]
/dports/deskutils/egroupware/egroupware/vendor/simplesamlphp/simplesamlphp/modules/authX509/dictionaries/
H A DX509warning.translation.json7 …"el": "\u0397 \u03b9\u03c3\u03c7\u03cd\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03b9\u03c3\u03c4\u03bf\u03… string
14 …"el": "\u0397 \u03b9\u03c3\u03c7\u03cd\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03b9\u03c3\u03c4\u03bf\u03… string
21 …"el": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03b5\u03af\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03c… string
28 …"el": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03b5\u03af\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03c… string
35 "el": "\u03a3\u03c5\u03bd\u03ad\u03c7\u03b5\u03b9\u03b1" string
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/simplesamlphp/simplesamlphp/modules/authX509/dictionaries/
H A DX509warning.translation.json7 …"el": "\u0397 \u03b9\u03c3\u03c7\u03cd\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03b9\u03c3\u03c4\u03bf\u03… string
14 …"el": "\u0397 \u03b9\u03c3\u03c7\u03cd\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03b9\u03c3\u03c4\u03bf\u03… string
21 …"el": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03b5\u03af\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03c… string
28 …"el": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03b5\u03af\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03c… string
35 "el": "\u03a3\u03c5\u03bd\u03ad\u03c7\u03b5\u03b9\u03b1" string
/dports/databases/percona56-server/percona-server-5.6.51-91.0/cmd-line-utils/libedit/
H A Deln.c47 el_getc(EditLine *el, char *cp) in el_getc()
61 el_push(EditLine *el, const char *str) in el_push()
70 el_gets(EditLine *el, int *nread) in el_gets()
80 el_parse(EditLine *el, int argc, const char *argv[]) in el_parse()
97 el_set(EditLine *el, int op, ...) in el_set()
249 el_get(EditLine *el, int op, ...) in el_get()
337 el_line(EditLine *el) in el_line()
361 el_insertstr(EditLine *el, const char *str) in el_insertstr()
/dports/databases/percona56-client/percona-server-5.6.51-91.0/cmd-line-utils/libedit/
H A Deln.c47 el_getc(EditLine *el, char *cp) in el_getc()
61 el_push(EditLine *el, const char *str) in el_push()
70 el_gets(EditLine *el, int *nread) in el_gets()
80 el_parse(EditLine *el, int argc, const char *argv[]) in el_parse()
97 el_set(EditLine *el, int op, ...) in el_set()
249 el_get(EditLine *el, int op, ...) in el_get()
337 el_line(EditLine *el) in el_line()
361 el_insertstr(EditLine *el, const char *str) in el_insertstr()
/dports/databases/percona-pam-for-mysql/percona-server-5.6.51-91.0/cmd-line-utils/libedit/
H A Deln.c47 el_getc(EditLine *el, char *cp) in el_getc()
61 el_push(EditLine *el, const char *str) in el_push()
70 el_gets(EditLine *el, int *nread) in el_gets()
80 el_parse(EditLine *el, int argc, const char *argv[]) in el_parse()
97 el_set(EditLine *el, int op, ...) in el_set()
249 el_get(EditLine *el, int op, ...) in el_get()
337 el_line(EditLine *el) in el_line()
361 el_insertstr(EditLine *el, const char *str) in el_insertstr()
/dports/math/reduce/Reduce-svn5758-src/libraries/libedit-20140620-3.1/src/
H A Deln.c48 el_getc(EditLine *el, char *cp) in el_getc()
66 el_push(EditLine *el, const char *str) in el_push()
75 el_gets(EditLine *el, int *nread) in el_gets()
87 el_parse(EditLine *el, int argc, const char *argv[]) in el_parse()
104 el_set(EditLine *el, int op, ...) in el_set()
276 el_get(EditLine *el, int op, ...) in el_get()
364 el_line(EditLine *el) in el_line()
388 el_insertstr(EditLine *el, const char *str) in el_insertstr()
/dports/databases/mysqlwsrep56-server/mysql-wsrep-wsrep_5.6.51-25.33/cmd-line-utils/libedit/
H A Deln.c47 el_getc(EditLine *el, char *cp) in el_getc()
61 el_push(EditLine *el, const char *str) in el_push()
70 el_gets(EditLine *el, int *nread) in el_gets()
80 el_parse(EditLine *el, int argc, const char *argv[]) in el_parse()
97 el_set(EditLine *el, int op, ...) in el_set()
249 el_get(EditLine *el, int op, ...) in el_get()
337 el_line(EditLine *el) in el_line()
361 el_insertstr(EditLine *el, const char *str) in el_insertstr()

1...<<21222324252627282930>>...504