Home
last modified time | relevance | path

Searched defs:c (Results 1 – 25 of 117) sorted by relevance

12345

/civetweb-2.7.6/docs/
DUserManual.md115 ### access\_control\_allow\_headers `*`
126 ### access\_control\_allow\_methods `*`
138 ### access\_control\_allow\_origin `*`
143 ### access\_control\_list
160 ### access\_log\_file
164 ### additional\_header
173 ### allow\_index\_script\_resource `no`
199 ### allow\_sendfile\_call `yes`
206 ### authentication\_domain `mydomain.com`
211 ### case\_sensitive `no`
[all …]
/civetweb-2.7.6/src/third_party/lua-5.2.4/src/
Dlctype.h52 #define testprop(c,p) (luai_ctype_[(c)+1] & (p)) argument
57 #define lislalpha(c) testprop(c, MASK(ALPHABIT)) argument
58 #define lislalnum(c) testprop(c, (MASK(ALPHABIT) | MASK(DIGITBIT))) argument
59 #define lisdigit(c) testprop(c, MASK(DIGITBIT)) argument
60 #define lisspace(c) testprop(c, MASK(SPACEBIT)) argument
61 #define lisprint(c) testprop(c, MASK(PRINTBIT)) argument
62 #define lisxdigit(c) testprop(c, MASK(XDIGITBIT)) argument
67 #define ltolower(c) ((c) | ('A' ^ 'a')) argument
83 #define lislalpha(c) (isalpha(c) || (c) == '_') argument
84 #define lislalnum(c) (isalnum(c) || (c) == '_') argument
[all …]
Dllex.c52 static void save (LexState *ls, int c) { in save()
305 static void escerror (LexState *ls, int *c, int n, const char *msg) { in escerror()
316 int c[3], i; /* keep input for error message */ in readhexaesc() local
330 int c[3], i; in readdecesc() local
355 int c; /* final character to be saved */ in read_string() local
504 int c = ls->current; in llex() local
Dldo.c53 #define LUAI_THROW(L,c) throw(c) argument
54 #define LUAI_TRY(L,c,a) \ argument
60 #define LUAI_THROW(L,c) _longjmp((c)->b, 1) argument
61 #define LUAI_TRY(L,c,a) if (_setjmp((c)->b) == 0) { a } argument
66 #define LUAI_THROW(L,c) longjmp((c)->b, 1) argument
67 #define LUAI_TRY(L,c,a) if (setjmp((c)->b) == 0) { a } argument
644 int c = zgetc(p->z); /* read first character */ in f_parser() local
Dllimits.h62 #define check_exp(c,e) (lua_assert(c), (e)) argument
64 #define lua_longassert(c) { if (!(c)) lua_assert(0); } argument
66 #define lua_assert(c) ((void)0) argument
67 #define check_exp(c,e) (e) argument
68 #define lua_longassert(c) ((void)0) argument
/civetweb-2.7.6/src/third_party/lua-5.3.5/src/
Dlctype.h52 #define testprop(c,p) (luai_ctype_[(c)+1] & (p)) argument
57 #define lislalpha(c) testprop(c, MASK(ALPHABIT)) argument
58 #define lislalnum(c) testprop(c, (MASK(ALPHABIT) | MASK(DIGITBIT))) argument
59 #define lisdigit(c) testprop(c, MASK(DIGITBIT)) argument
60 #define lisspace(c) testprop(c, MASK(SPACEBIT)) argument
61 #define lisprint(c) testprop(c, MASK(PRINTBIT)) argument
62 #define lisxdigit(c) testprop(c, MASK(XDIGITBIT)) argument
67 #define ltolower(c) ((c) | ('A' ^ 'a')) argument
83 #define lislalpha(c) (isalpha(c) || (c) == '_') argument
84 #define lislalnum(c) (isalnum(c) || (c) == '_') argument
[all …]
Dllex.c57 static void save (LexState *ls, int c) { in save()
186 static int check_next1 (LexState *ls, int c) { in check_next1()
303 static void esccheck (LexState *ls, int c, const char *msg) { in esccheck()
378 int c; /* final character to be saved */ in read_string() local
539 int c = ls->current; in llex() local
Dldo.c58 #define LUAI_THROW(L,c) throw(c) argument
59 #define LUAI_TRY(L,c,a) \ argument
66 #define LUAI_THROW(L,c) _longjmp((c)->b, 1) argument
67 #define LUAI_TRY(L,c,a) if (_setjmp((c)->b) == 0) { a } argument
73 #define LUAI_THROW(L,c) longjmp((c)->b, 1) argument
74 #define LUAI_TRY(L,c,a) if (setjmp((c)->b) == 0) { a } argument
769 int c = zgetc(p->z); /* read first character */ in f_parser() local
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src-separate/
Dduk_hthread.h86 #define DUK_CAT_GET_TYPE(c) ((c)->flags & DUK_CAT_TYPE_MASK) argument
87 #define DUK_CAT_GET_LABEL(c) (((c)->flags & DUK_CAT_LABEL_MASK) >> DUK_CAT_LABEL_SHIFT) argument
89 #define DUK_CAT_HAS_CATCH_ENABLED(c) ((c)->flags & DUK_CAT_FLAG_CATCH_ENABLED) argument
90 #define DUK_CAT_HAS_FINALLY_ENABLED(c) ((c)->flags & DUK_CAT_FLAG_FINALLY_ENABLED) argument
91 #define DUK_CAT_HAS_CATCH_BINDING_ENABLED(c) ((c)->flags & DUK_CAT_FLAG_CATCH_BINDING_ENABLED) argument
92 #define DUK_CAT_HAS_LEXENV_ACTIVE(c) ((c)->flags & DUK_CAT_FLAG_LEXENV_ACTIVE) argument
94 #define DUK_CAT_SET_CATCH_ENABLED(c) do { \ argument
97 #define DUK_CAT_SET_FINALLY_ENABLED(c) do { \ argument
100 #define DUK_CAT_SET_CATCH_BINDING_ENABLED(c) do { \ argument
103 #define DUK_CAT_SET_LEXENV_ACTIVE(c) do { \ argument
[all …]
Dduk_heap_stringcache.c23 duk_strcache *c = heap->strcache + i; in duk_heap_strcache_string_remove() local
137 duk_strcache *c = heap->strcache + i; in duk_heap_strcache_offset_char2byte() local
144 duk_strcache *c = heap->strcache + i; in duk_heap_strcache_offset_char2byte() local
286 duk_strcache *c = heap->strcache + i; in duk_heap_strcache_offset_char2byte() local
Dduk_js_executor.c2584 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
2643 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
2758 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
2930 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
2960 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
2998 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
3023 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
3076 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
3099 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
3111 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
[all …]
Dduk_replacements.c61 int c = DUK_FPCLASSIFY(x); in duk_repl_isfinite() local
72 int c = DUK_FPCLASSIFY(x); in duk_repl_isnan() local
79 int c = DUK_FPCLASSIFY(x); in duk_repl_isinf() local
Dduk_regexp_executor.c200 duk_codepoint_t c; in duk__match_regexp() local
215 duk_codepoint_t c; in duk__match_regexp() local
254 duk_codepoint_t c; in duk__match_regexp() local
270 duk_codepoint_t c; in duk__match_regexp() local
301 duk_codepoint_t c; in duk__match_regexp() local
309 duk_codepoint_t c; in duk__match_regexp() local
Dduk_bi_number.c131 duk_small_int_t c; in duk_bi_number_prototype_to_fixed() local
165 duk_small_int_t c; in duk_bi_number_prototype_to_exponential() local
203 duk_small_int_t c; in duk_bi_number_prototype_to_precision() local
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src-separate/
Dduk_hthread.h86 #define DUK_CAT_GET_TYPE(c) ((c)->flags & DUK_CAT_TYPE_MASK) argument
87 #define DUK_CAT_GET_LABEL(c) (((c)->flags & DUK_CAT_LABEL_MASK) >> DUK_CAT_LABEL_SHIFT) argument
89 #define DUK_CAT_HAS_CATCH_ENABLED(c) ((c)->flags & DUK_CAT_FLAG_CATCH_ENABLED) argument
90 #define DUK_CAT_HAS_FINALLY_ENABLED(c) ((c)->flags & DUK_CAT_FLAG_FINALLY_ENABLED) argument
91 #define DUK_CAT_HAS_CATCH_BINDING_ENABLED(c) ((c)->flags & DUK_CAT_FLAG_CATCH_BINDING_ENABLED) argument
92 #define DUK_CAT_HAS_LEXENV_ACTIVE(c) ((c)->flags & DUK_CAT_FLAG_LEXENV_ACTIVE) argument
94 #define DUK_CAT_SET_CATCH_ENABLED(c) do { \ argument
97 #define DUK_CAT_SET_FINALLY_ENABLED(c) do { \ argument
100 #define DUK_CAT_SET_CATCH_BINDING_ENABLED(c) do { \ argument
103 #define DUK_CAT_SET_LEXENV_ACTIVE(c) do { \ argument
[all …]
Dduk_heap_stringcache.c23 duk_strcache *c = heap->strcache + i; in duk_heap_strcache_string_remove() local
137 duk_strcache *c = heap->strcache + i; in duk_heap_strcache_offset_char2byte() local
144 duk_strcache *c = heap->strcache + i; in duk_heap_strcache_offset_char2byte() local
286 duk_strcache *c = heap->strcache + i; in duk_heap_strcache_offset_char2byte() local
Dduk_js_executor.c2584 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
2643 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
2758 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
2923 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
2953 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
2991 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
3016 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
3069 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
3092 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
3104 duk_small_uint_fast_t c = DUK_DEC_C(ins); local
[all …]
Dduk_replacements.c61 int c = DUK_FPCLASSIFY(x); in duk_repl_isfinite() local
72 int c = DUK_FPCLASSIFY(x); in duk_repl_isnan() local
79 int c = DUK_FPCLASSIFY(x); in duk_repl_isinf() local
Dduk_regexp_executor.c200 duk_codepoint_t c; in duk__match_regexp() local
215 duk_codepoint_t c; in duk__match_regexp() local
254 duk_codepoint_t c; in duk__match_regexp() local
270 duk_codepoint_t c; in duk__match_regexp() local
301 duk_codepoint_t c; in duk__match_regexp() local
309 duk_codepoint_t c; in duk__match_regexp() local
Dduk_bi_number.c131 duk_small_int_t c; in duk_bi_number_prototype_to_fixed() local
165 duk_small_int_t c; in duk_bi_number_prototype_to_exponential() local
203 duk_small_int_t c; in duk_bi_number_prototype_to_precision() local
/civetweb-2.7.6/unittest/
Dtimertest.c82 int c[10]; in START_TEST() local
133 int c[10]; in START_TEST() local
178 int c[10]; in START_TEST() local
223 int c[10]; in START_TEST() local
/civetweb-2.7.6/src/third_party/lua-5.1.5/src/
Dluaconf.h608 #define LUAI_THROW(L,c) throw(c) argument
609 #define LUAI_TRY(L,c,a) try { a } catch(...) \ argument
615 #define LUAI_THROW(L,c) _longjmp((c)->b, 1) argument
616 #define LUAI_TRY(L,c,a) if (_setjmp((c)->b) == 0) { a } argument
621 #define LUAI_THROW(L,c) longjmp((c)->b, 1) argument
622 #define LUAI_TRY(L,c,a) if (setjmp((c)->b) == 0) { a } argument
670 #define lua_popen(L,c,m) ((void)L, fflush(NULL), popen(c,m)) argument
675 #define lua_popen(L,c,m) ((void)L, _popen(c,m)) argument
680 #define lua_popen(L,c,m) ((void)((void)c, m), \ argument
Dllimits.h57 #define check_exp(c,e) (lua_assert(c), (e)) argument
62 #define lua_assert(c) ((void)0) argument
63 #define check_exp(c,e) (e) argument
Dlfunc.c24 Closure *c = cast(Closure *, luaM_malloc(L, sizeCclosure(nelems))); in luaF_newCclosure() local
34 Closure *c = cast(Closure *, luaM_malloc(L, sizeLclosure(nelems))); in luaF_newLclosure() local
152 void luaF_freeclosure (lua_State *L, Closure *c) { in luaF_freeclosure()
/civetweb-2.7.6/src/
Dmd5.inl213 md5_word_t a = pms->abcd[0], b = pms->abcd[1], c = pms->abcd[2], local
287 #define SET(a, b, c, d, k, s, Ti) \ argument
314 #define SET(a, b, c, d, k, s, Ti) \ argument
341 #define SET(a, b, c, d, k, s, Ti) \ argument
368 #define SET(a, b, c, d, k, s, Ti) \ argument

12345