Home
last modified time | relevance | path

Searched full:main (Results 1 – 25 of 190) sorted by relevance

12345678

/civetweb-2.7.6/unittest/
DCMakeLists.txt119 add_executable(main-c-unit-test main.c)
120 target_link_libraries(main-c-unit-test
128 add_dependencies(main-c-unit-test check-unit-test-framework)
133 DEPENDS main-c-unit-test)
142 …COMMAND main-c-unit-test "--test-dir=${CMAKE_CURRENT_SOURCE_DIR}" "--suite=${suite}" "--test-case=…
207 # Tests with main.c
227 DEPENDS main-c-unit-test
Dprivate_exe.c40 /* main is already used in the test suite,
41 * so this define will rename main in main.c */
42 #define main exe_main macro
44 #include "../src/main.c"
Dprivate_exe.h28 /* This is a redefine for "main" in main.c */
/civetweb-2.7.6/src/third_party/lua-5.2.4/src/
Dltable.c15 ** A main invariant of these tables is that, if an element is not
16 ** in its main position (i.e. the `original' position that its hash gives
17 ** to it), then the colliding element is in its own main position.
94 ** returns the `main' position of an element in a table (that is, the index
399 ** inserts a new key into a hash table; first, check whether key's main
400 ** position is free. If not, check whether colliding node is in its main
402 ** put new key in its main position; otherwise (colliding node is in its main
411 if (!ttisnil(gval(mp)) || isdummy(mp)) { /* main position is taken? */ in luaH_newkey()
421 if (othern != mp) { /* is colliding node out of its main position? */ in luaH_newkey()
429 else { /* colliding node is in its own main position */ in luaH_newkey()
[all …]
Dlstate.c68 ** Main thread combines a thread state and the global state
233 (*g->frealloc)(g->ud, fromstate(L), sizeof(LG), 0); /* free main block */ in close_state()
318 L = G(L)->mainthread; /* only the main thread can be closed */ in lua_close()
/civetweb-2.7.6/src/third_party/lua-5.3.5/src/
Dltable.c20 ** A main invariant of these tables is that, if an element is not
21 ** in its main position (i.e. the 'original' position that its hash gives
22 ** to it), then the colliding element is in its own main position.
85 ** The main computation should be just
114 ** returns the 'main' position of an element in a table (that is, the index
455 ** inserts a new key into a hash table; first, check whether key's main
456 ** position is free. If not, check whether colliding node is in its main
458 ** put new key in its main position; otherwise (colliding node is in its main
475 if (!ttisnil(gval(mp)) || isdummy(t)) { /* main position is taken? */ in luaH_newkey()
485 if (othern != mp) { /* is colliding node out of its main position? */ in luaH_newkey()
[all …]
Dlstate.c61 ** Main thread combines a thread state and the global state
251 (*g->frealloc)(g->ud, fromstate(L), sizeof(LG), 0); /* free main block */ in close_state()
342 L = G(L)->mainthread; /* only the main thread can be closed */ in lua_close()
/civetweb-2.7.6/src/third_party/lua-5.1.5/src/
Dltable.c15 ** A main invariant of these tables is that, if an element is not
16 ** in its main position (i.e. the `original' position that its hash gives
17 ** to it), then the colliding element is in its own main position.
97 ** returns the `main' position of an element in a table (that is, the index
393 ** inserts a new key into a hash table; first, check whether key's main
394 ** position is free. If not, check whether colliding node is in its main
396 ** put new key in its main position; otherwise (colliding node is in its main
410 if (othern != mp) { /* is colliding node out of its main position? */ in newkey()
418 else { /* colliding node is in its own main position */ in newkey()
467 ** main search function
/civetweb-2.7.6/examples/_obsolete/docroot/
Dindex.html11 <script src="main.js"></script>
40 <div id="chat" class="main">
42 <span class="top-rounded chat-title">Main room</span>
53 <div id="settings" class="hidden main">
Dmain.js68 $('.main').addClass('hidden'); // Hide all main windows
69 $('#' + $(this).attr('name')).removeClass('hidden'); // Show main window
/civetweb-2.7.6/src/third_party/duktape-1.5.2/
DREADME.rst61 * ``src/``: main Duktape library in a "single source file" format (duktape.c,
68 * ``src-separate/``: main Duktape library in multiple files format.
79 main Duktape library because of footprint or portability concerns.
81 guarantees as the main Duktape library.
/civetweb-2.7.6/src/third_party/duktape-1.8.0/
DREADME.rst61 * ``src/``: main Duktape library in a "single source file" format (duktape.c,
68 * ``src-separate/``: main Duktape library in multiple files format.
79 main Duktape library because of footprint or portability concerns.
81 guarantees as the main Duktape library.
/civetweb-2.7.6/docs/
DEmbedding.md22 These files constitute the CivetWeb library. They do not contain a `main` function,
45 These files can be used to build a server executable. They contain a `main` function
49 - src/main.c
100 …ying when updating the server, pulling new features or bug fixes from the main repository. For som…
/civetweb-2.7.6/src/third_party/duktape-1.5.2/extras/
DREADME.rst6 comfortably fit into the main Duktape library, perhaps for footprint or
10 same semantic versioning guarantees like the main Duktape library. Extras
/civetweb-2.7.6/src/third_party/duktape-1.8.0/extras/
DREADME.rst6 comfortably fit into the main Duktape library, perhaps for footprint or
10 same semantic versioning guarantees like the main Duktape library. Extras
/civetweb-2.7.6/src/third_party/lua-5.1.5/etc/
Dstrict.lua5 -- (even assigning nil will do) in a main chunk before being used
27 if w ~= "main" and w ~= "C" then
/civetweb-2.7.6/src/third_party/duktape-1.8.0/examples/alloc-logging/
Dlog2gnuplot.py14 def main(): function
41 main()
/civetweb-2.7.6/src/third_party/duktape-1.5.2/examples/alloc-logging/
Dlog2gnuplot.py14 def main(): function
41 main()
/civetweb-2.7.6/
Dformat.bat3 clang-format -i src/main.c
33 clang-format -i unittest/main.c
/civetweb-2.7.6/src/third_party/lua-5.2.4/doc/
Dluac.119 The main advantages of precompiling chunks are:
29 The main goal in precompiling is faster loading.
/civetweb-2.7.6/src/third_party/duktape-1.5.2/examples/eventloop/
Dcurses-timers.js25 function main() { function
79 main();
/civetweb-2.7.6/src/third_party/duktape-1.8.0/examples/eventloop/
Dcurses-timers.js25 function main() { function
79 main();
/civetweb-2.7.6/src/third_party/lua-5.3.5/doc/
Dluac.119 The main advantages of precompiling chunks are:
29 The main goal in precompiling is faster loading.
/civetweb-2.7.6/src/third_party/lua-5.1.5/doc/
Dluac.118 The main advantages of precompiling chunks are:
30 The main goal in pre-compiling is faster loading.
/civetweb-2.7.6/examples/_obsolete/upload/
Dupload.c81 /* Main program: Set callbacks and start the server. */
82 int main(void) in main() function

12345678