Home
last modified time | relevance | path

Searched refs:dll (Results 1 – 25 of 582) sorted by relevance

12345678910>>...24

/third_party/skia/third_party/externals/microhttpd/w32/VS2013/
Dlibmicrohttpd.sln15 Debug-dll|Win32 = Debug-dll|Win32
16 Debug-dll|x64 = Debug-dll|x64
17 Debug-dll-xp|Win32 = Debug-dll-xp|Win32
18 Debug-dll-xp|x64 = Debug-dll-xp|x64
23 Release-dll|Win32 = Release-dll|Win32
24 Release-dll|x64 = Release-dll|x64
25 Release-dll-xp|Win32 = Release-dll-xp|Win32
26 Release-dll-xp|x64 = Release-dll-xp|x64
33 {9CFB0342-A9E7-483E-BEE5-A1DE22584C5A}.Debug-dll|Win32.ActiveCfg = Debug-dll|Win32
34 {9CFB0342-A9E7-483E-BEE5-A1DE22584C5A}.Debug-dll|Win32.Build.0 = Debug-dll|Win32
[all …]
/third_party/lz4/lib/dll/example/
DREADME.md7 - `dll\msys-lz4-1.dll` : The DLL of LZ4 library, compiled by msys
8 - `dll\liblz4.dll.a` : The import library of LZ4 library for Visual C++
31 Use `cd example` and `make` to build `fullbench-dll` and `fullbench-lib`.
32 `fullbench-dll` uses a dynamic LZ4 library from the `dll` directory.
38 The header files from `include\` and the dynamic library `dll\msys-lz4-1.dll`
41 It means that if a project that uses LZ4 consists of a single `test-dll.c`
42 file it should be linked with `dll\msys-lz4-1.dll`. For example:
44 gcc $(CFLAGS) -Iinclude\ test-dll.c -o test-dll dll\msys-lz4-1.dll
46 The compiled executable will require LZ4 DLL which is available at `dll\msys-lz4-1.dll`.
51 Open `example\fullbench-dll.sln` to compile `fullbench-dll` that uses a
[all …]
DMakefile29 DLLDIR := ../dll
47 .PHONY: default fullbench-dll fullbench-lib
52 all: fullbench-dll fullbench-lib
58 fullbench-dll: fullbench.c xxhash.c
59 $(CC) $(FLAGS) $^ -o $@$(EXT) -DLZ4_DLL_IMPORT=1 $(DLLDIR)/liblz4.dll
62 @$(RM) fullbench-dll$(EXT) fullbench-lib$(EXT) \
/third_party/python/Lib/ctypes/test/
Dtest_slicing.py65 dll = CDLL(_ctypes_test.__file__)
66 dll.my_strdup.restype = POINTER(c_char)
67 dll.my_free.restype = None
68 res = dll.my_strdup(s)
88 dll.my_free(res)
90 dll.my_strdup.restype = POINTER(c_byte)
91 res = dll.my_strdup(s)
94 dll.my_free(res)
97 dll = CDLL(_ctypes_test.__file__)
103 dll.my_free.restype = None
[all …]
Dtest_functions.py19 dll = CDLL(_ctypes_test.__file__) variable
59 f = dll._testfunc_i_bhilfd
67 f = dll._testfunc_i_bhilfd
74 f = dll._testfunc_v
82 f = dll._testfunc_i_bhilfd
108 f = dll._testfunc_f_bhilfd
120 f = dll._testfunc_d_bhilfd
132 f = dll._testfunc_D_bhilfD
145 f = dll._testfunc_q_bhilfd
151 f = dll._testfunc_q_bhilfdq
[all …]
Dtest_as_parameter.py6 dll = CDLL(_ctypes_test.__file__) variable
23 f = dll._testfunc_i_bhilfd
30 f = dll._testfunc_p_p
54 f = dll._testfunc_callback_i_if
73 f = dll._testfunc_callback_i_if
109 f = dll._testfunc_callback_i_if
127 f = dll._testfunc_callback_q_qf
147 result = dll._testfunc_byval(ptin, byref(ptout))
155 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))
156 dll._testfunc_byval.restype = c_int
[all …]
Dtest_checkretval.py17 dll = CDLL(_ctypes_test.__file__)
18 self.assertEqual(42, dll._testfunc_p_p(42))
20 dll._testfunc_p_p.restype = CHECKED
21 self.assertEqual("42", dll._testfunc_p_p(42))
23 dll._testfunc_p_p.restype = None
24 self.assertEqual(None, dll._testfunc_p_p(42))
26 del dll._testfunc_p_p.restype
27 self.assertEqual(42, dll._testfunc_p_p(42))
Dtest_win32.py31 dll = CDLL(_ctypes_test.__file__)
36 f = getattr(dll, f"TestSize{i}")
105 dll = CDLL(_ctypes_test.__file__)
108 left = c_long.in_dll(dll, 'left')
109 top = c_long.in_dll(dll, 'top')
110 right = c_long.in_dll(dll, 'right')
111 bottom = c_long.in_dll(dll, 'bottom')
113 PointInRect = dll.PointInRect
117 ReturnRect = dll.ReturnRect
Dtest_returnfuncptrs.py11 dll = CDLL(_ctypes_test.__file__)
12 get_strchr = dll.get_strchr
23 dll = CDLL(_ctypes_test.__file__)
24 get_strchr = dll.get_strchr
37 dll = CDLL(_ctypes_test.__file__)
40 strchr = CFUNCTYPE(c_char_p, c_char_p, c_char)(("my_strchr", dll))
Dtest_structures.py419 dll = CDLL(_ctypes_test.__file__)
420 func = dll._testfunc_large_struct_update_value
449 dll = CDLL(_ctypes_test.__file__)
450 func = dll._testfunc_large_struct_update_value
476 dll = CDLL(_ctypes_test.__file__)
477 func = dll._testfunc_reg_struct_update_value
483 got = X.in_dll(dll, "last_tfrsuv_arg")
516 dll = CDLL(_ctypes_test.__file__)
517 func = dll._testfunc_array_in_struct1
530 func = dll._testfunc_array_in_struct2
[all …]
Dtest_pointers.py23 dll = CDLL(_ctypes_test.__file__)
24 func = dll._testfunc_p_p
41 dll = CDLL(_ctypes_test.__file__)
42 func = dll._testfunc_p_p
80 dll = CDLL(_ctypes_test.__file__)
84 doit = dll._testfunc_callback_with_pointer
146 dll = CDLL(_ctypes_test.__file__)
147 func = dll._testfunc_c_p_p
/third_party/skia/third_party/externals/expat/expat/
Dcoverage.sh121 …gcc_dll_dir="$(dirname "$(ls -1 /usr/lib*/gcc/i686-w64-mingw32/*/libgcc_s_sjlj-1.dll | head -n1)")"
122 for dll in libgcc_s_sjlj-1.dll libstdc++-6.dll; do
125 ln -s "${mingw_gcc_dll_dir}"/${dll} "${target}"/${dll}
132 for dll in libwinpthread-1.dll; do
133 source="${mingw_pthread_dll_dir}"/${dll}
136 ln -s "${source}" "${target}"/${dll}
141 for dll in libexpat{,w}.dll; do
144 ln -s "${abs_build_dir}"/${dll} "${target}"/${dll}
/third_party/lz4/lib/
DMakefile103 liblz4-dll.rc: liblz4-dll.rc.in
111 liblz4-dll.o: liblz4-dll.rc
112 $(WINDRES) -i liblz4-dll.rc -o liblz4-dll.o
114 $(LIBLZ4): $(SRCFILES) liblz4-dll.o
116 $(CC) $(FLAGS) -DLZ4_DLL_EXPORT=1 -shared $^ -o dll/$@.dll -Wl,--out-implib,dll/$(LIBLZ4_EXP)
137 $(RM) core *.o liblz4.pc dll/$(LIBLZ4).dll dll/$(LIBLZ4_EXP)
194 $(INSTALL_PROGRAM) dll/$(LIBLZ4).dll $(DESTDIR)$(bindir)
195 $(INSTALL_PROGRAM) dll/$(LIBLZ4_EXP) $(DESTDIR)$(libdir)
211 $(RM) $(DESTDIR)$(bindir)/$(LIBLZ4).dll
/third_party/skia/third_party/externals/swiftshader/tests/VulkanUnitTests/
DDriver.cpp38 , dll(nullptr){ in Driver()
111 dll = LoadLibraryA(path); in load()
113 dll = dlopen(path, RTLD_LAZY | RTLD_LOCAL); in load()
117 if(dll == nullptr) in load()
151 FreeLibrary((HMODULE)dll); in unload()
153 dlclose(dll); in unload()
156 dll = nullptr; in unload()
169 return dll != nullptr; in isLoaded()
197 return GetProcAddress((HMODULE)dll, name); in lookup()
199 return dlsym(dll, name); in lookup()
/third_party/node/deps/openssl/openssl/crypto/dso/
Ddso_win32.c505 HMODULE dll; in win32_pathbyaddr() local
522 dll = LoadLibrary(TEXT(DLLNAME)); in win32_pathbyaddr()
523 if (dll == NULL) { in win32_pathbyaddr()
529 GetProcAddress(dll, "CreateToolhelp32Snapshot"); in win32_pathbyaddr()
531 FreeLibrary(dll); in win32_pathbyaddr()
538 GetProcAddress(dll, "CloseToolhelp32Snapshot"); in win32_pathbyaddr()
542 module_first = (MODULE32) GetProcAddress(dll, "Module32First"); in win32_pathbyaddr()
543 module_next = (MODULE32) GetProcAddress(dll, "Module32Next"); in win32_pathbyaddr()
551 FreeLibrary(dll); in win32_pathbyaddr()
560 FreeLibrary(dll); in win32_pathbyaddr()
[all …]
/third_party/openssl/crypto/dso/
Ddso_win32.c505 HMODULE dll; in win32_pathbyaddr() local
522 dll = LoadLibrary(TEXT(DLLNAME)); in win32_pathbyaddr()
523 if (dll == NULL) { in win32_pathbyaddr()
529 GetProcAddress(dll, "CreateToolhelp32Snapshot"); in win32_pathbyaddr()
531 FreeLibrary(dll); in win32_pathbyaddr()
538 GetProcAddress(dll, "CloseToolhelp32Snapshot"); in win32_pathbyaddr()
542 module_first = (MODULE32) GetProcAddress(dll, "Module32First"); in win32_pathbyaddr()
543 module_next = (MODULE32) GetProcAddress(dll, "Module32Next"); in win32_pathbyaddr()
551 FreeLibrary(dll); in win32_pathbyaddr()
560 FreeLibrary(dll); in win32_pathbyaddr()
[all …]
/third_party/curl/winbuild/
DMakefile.vc131 SSL = dll
139 WITH_NGHTTP2 = dll
141 NGHTTP2 = dll
144 NGHTTP2 = dll
156 WITH_MSH3 = dll
158 MSH3 = dll
161 MSH3 = dll
178 CARES = dll
186 ZLIB = dll
194 SSH2 = dll
[all …]
/third_party/mesa3d/.gitlab-ci/windows/
Dpiglit_run.ps13 Copy-Item -Path _install\bin\opengl32.dll -Destination C:\Piglit\lib\piglit\bin\opengl32.dll
4 Copy-Item -Path _install\bin\libgallium_wgl.dll -Destination C:\Piglit\lib\piglit\bin\libgallium_wg…
5 Copy-Item -Path _install\bin\libglapi.dll -Destination C:\Piglit\lib\piglit\bin\libglapi.dll
/third_party/curl/
Dappveyor.sh65 cp -f -p _bld/lib/*.dll _bld/src/
68 cp -f -p "${openssl_root}"/*.dll _bld/src/
85 …nmake -f Makefile.vc mode=dll VC=14 "SSL_PATH=${openssl_root_win}" WITH_SSL=dll MACHINE=x64 DEBUG=…
97 …nmake -f Makefile.vc mode=dll VC=14.10 "SSL_PATH=${openssl_root_win}" WITH_SSL=dll MACHINE=x64 DEB…
146 ls _bld/lib/*.dll >/dev/null 2>&1 && cp -f -p _bld/lib/*.dll _bld/tests/libtest/
/third_party/libwebsockets/cmake/
DFindOpenSSLbins.cmake20 # ** we do NOT want to find dlls in general dll directories such as C:\Windows\systemXX
30 message(DEBUG "Assuming OpenSSL release ${OPENSSL_VERSION} >= 1.1.0 for dll discovery")
35 set(CRYPTO32_NAME "libcrypto-${OVNR}_${ORNR}.dll")
36 set(CRYPTO64_NAME "libcrypto-${OVNR}_${ORNR}-x64.dll")
39 set(SSL32_NAME "libssl-${OVNR}_${ORNR}.dll")
40 set(SSL64_NAME "libssl-${OVNR}_${ORNR}-x64.dll")
79 libeay32.dll
87 ssleay32.dll
/third_party/zlib/contrib/vstudio/
Dreadme.txt46 - To use zlibwapi.dll in your application, you must define the
52 - This DLL, named zlibwapi.dll, is compatible to the old zlib.dll built
57 particular build of zlib.dll, you can rename zlibwapi.dll to zlib.dll.
60 versions of zlib.dll on the Internet.
62 - There is also an official DLL build of zlib, named zlib1.dll. This one
/third_party/PyYAML/tests/data/
Dconstruct-value.code2 { "link with": [ "library1.dll", "library2.dll" ] },
5 { "=": "library1.dll", "version": 1.2 },
6 { "=": "library2.dll", "version": 2.3 },
Dconstruct-value.data3 - library1.dll
4 - library2.dll
7 - = : library1.dll
9 - = : library2.dll
/third_party/skia/third_party/externals/angle2/src/
Dcopy_compiler_dll.bat4 copy %2"\Redist\D3D\"%_arch%"\d3dcompiler_47.dll" %3 > NUL
8 :: so it's timestamp would otherwise be newer than the dll.
9 copy /b %3\d3dcompiler_47.dll+,, %3\d3dcompiler_47.dll > NUL
/third_party/openh264/
DRELEASES247 http://ciscobinary.openh264.org/openh264-2.3.0-win32.dll.bz2
248 http://ciscobinary.openh264.org/openh264-2.3.0-win64.dll.bz2
262 http://ciscobinary.openh264.org/openh264-2.2.0-win32.dll.bz2
263 http://ciscobinary.openh264.org/openh264-2.2.0-win64.dll.bz2
286 http://ciscobinary.openh264.org/openh264-2.1.1-win32.dll.bz2
287 http://ciscobinary.openh264.org/openh264-2.1.1-win64.dll.bz2
302 http://ciscobinary.openh264.org/openh264-2.1.0-win32.dll.bz2
303 http://ciscobinary.openh264.org/openh264-2.1.0-win64.dll.bz2
317 http://ciscobinary.openh264.org/openh264-2.0.0-win32.dll.bz2
318 http://ciscobinary.openh264.org/openh264-2.0.0-win64.dll.bz2
[all …]

12345678910>>...24