/external/v8/gypfiles/win/ |
D | msvs_dependencies.isolate | 15 '<(PRODUCT_DIR)/msvcp120d.dll', 16 '<(PRODUCT_DIR)/msvcr120d.dll', 23 '<(PRODUCT_DIR)/msvcp120.dll', 24 '<(PRODUCT_DIR)/msvcr120.dll', 32 '<(PRODUCT_DIR)/msvcp140d.dll', 33 '<(PRODUCT_DIR)/vccorlib140d.dll', 34 '<(PRODUCT_DIR)/vcruntime140d.dll', 35 '<(PRODUCT_DIR)/ucrtbased.dll', 42 '<(PRODUCT_DIR)/msvcp140.dll', 43 '<(PRODUCT_DIR)/vccorlib140.dll', [all …]
|
/external/epid-sdk/ext/ipp/sources/include/ |
D | ippres.gen | 76 …VALUE "FileDescription", IPP_LIB_PREFIX() IPP_LIB_SHORTNAME() _IPP_VERSION ".dll is the " IPP_LIB_… 77 VALUE "InternalName", IPP_LIB_PREFIX() IPP_LIB_SHORTNAME() _IPP_VERSION ".dll\0" 78 VALUE "OriginalFilename", IPP_LIB_PREFIX() IPP_LIB_SHORTNAME() _IPP_VERSION ".dll\0" 82 …VALUE "FileDescription", IPP_LIB_PREFIX() "64" IPP_LIB_SHORTNAME() _IPP_VERSION ".dll is the " IPP… 83 VALUE "InternalName", IPP_LIB_PREFIX() IPP_LIB_SHORTNAME() "64" _IPP_VERSION ".dll\0" 84 … VALUE "OriginalFilename", IPP_LIB_PREFIX() IPP_LIB_SHORTNAME() "64" _IPP_VERSION ".dll\0" 88 …VALUE "FileDescription", IPP_LIB_PREFIX() IPP_LIB_SHORTNAME() _IPP_VERSION ".dll is the " IPP_LIB_… 89 VALUE "InternalName", IPP_LIB_PREFIX() IPP_LIB_SHORTNAME() _IPP_VERSION ".dll\0" 90 VALUE "OriginalFilename", IPP_LIB_PREFIX() IPP_LIB_SHORTNAME() _IPP_VERSION ".dll\0" 94 …VALUE "FileDescription", IPP_LIB_PREFIX() _IPP_VERSION ".dll is the " IPP_LIB_SHORTNAME() " dispat… [all …]
|
/external/python/cpython3/Lib/ctypes/test/ |
D | test_slicing.py | 65 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 …]
|
D | test_functions.py | 19 dll = CDLL(_ctypes_test.__file__) variable 69 f = dll._testfunc_i_bhilfd 77 f = dll._testfunc_i_bhilfd 84 f = dll._testfunc_v 92 f = dll._testfunc_i_bhilfd 118 f = dll._testfunc_f_bhilfd 130 f = dll._testfunc_d_bhilfd 142 f = dll._testfunc_D_bhilfD 155 f = dll._testfunc_q_bhilfd 161 f = dll._testfunc_q_bhilfdq [all …]
|
D | test_checkretval.py | 17 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))
|
D | test_as_parameter.py | 6 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 …]
|
D | test_win32.py | 60 dll = CDLL(_ctypes_test.__file__) 65 f = getattr(dll, f"TestSize{i}") 134 dll = CDLL(_ctypes_test.__file__) 137 left = c_long.in_dll(dll, 'left') 138 top = c_long.in_dll(dll, 'top') 139 right = c_long.in_dll(dll, 'right') 140 bottom = c_long.in_dll(dll, 'bottom') 142 PointInRect = dll.PointInRect 146 ReturnRect = dll.ReturnRect
|
/external/python/cpython2/Lib/ctypes/test/ |
D | test_slicing.py | 69 dll = CDLL(_ctypes_test.__file__) 70 dll.my_strdup.restype = POINTER(c_char) 71 dll.my_free.restype = None 72 res = dll.my_strdup(s) 94 dll.my_free(res) 96 dll.my_strdup.restype = POINTER(c_byte) 97 res = dll.my_strdup(s) 100 dll.my_free(res) 103 dll = CDLL(_ctypes_test.__file__) 109 dll.my_free.restype = None [all …]
|
D | test_functions.py | 19 dll = CDLL(_ctypes_test.__file__) variable 69 f = dll._testfunc_i_bhilfd 77 f = dll._testfunc_i_bhilfd 84 f = dll._testfunc_v 92 f = dll._testfunc_i_bhilfd 118 f = dll._testfunc_f_bhilfd 130 f = dll._testfunc_d_bhilfd 142 f = dll._testfunc_D_bhilfD 155 f = dll._testfunc_q_bhilfd 161 f = dll._testfunc_q_bhilfdq [all …]
|
D | test_checkretval.py | 17 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))
|
D | test_as_parameter.py | 6 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 …]
|
D | test_returnfuncptrs.py | 12 dll = CDLL(_ctypes_test.__file__) 13 get_strchr = dll.get_strchr 22 dll = CDLL(_ctypes_test.__file__) 23 get_strchr = dll.get_strchr 36 dll = CDLL(_ctypes_test.__file__) 39 strchr = CFUNCTYPE(c_char_p, c_char_p, c_char)(("my_strchr", dll))
|
/external/lz4/lib/dll/example/ |
D | README.md | 7 - `dll\liblz4.dll` : The DLL of LZ4 library 8 - `dll\liblz4.lib` : 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\liblz4.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\liblz4.dll`. For example: 44 gcc $(CFLAGS) -Iinclude\ test-dll.c -o test-dll dll\liblz4.dll 46 The compiled executable will require LZ4 DLL which is available at `dll\liblz4.dll`. 51 Open `example\fullbench-dll.sln` to compile `fullbench-dll` that uses a [all …]
|
D | Makefile | 29 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) \
|
/external/google-breakpad/src/processor/testdata/ |
D | minidump2.stackwalk.machine_readable.out | 5 Module|dbghelp.dll|5.1.2600.2180|dbghelp.pdb|39559573E21B46F28E286923BE9E6A761|0x59a60000|0x59b00ff… 6 Module|imm32.dll|5.1.2600.2180|imm32.pdb|2C17A49C251B4C8EB9E2AD13D7D9EA162|0x76390000|0x763acfff|0 7 Module|psapi.dll|5.1.2600.2180|psapi.pdb|A5C3A1F9689F43D8AD228A09293889702|0x76bf0000|0x76bfafff|0 8 Module|ole32.dll|5.1.2600.2726|ole32.pdb|683B65B246F4418796D2EE6D4C55EB112|0x774e0000|0x7761cfff|0 9 Module|version.dll|5.1.2600.2180|version.pdb|180A90C40384463E82DDC45B2C8AB76E2|0x77c00000|0x77c07ff… 10 Module|msvcrt.dll|7.0.2600.2180|msvcrt.pdb|A678F3C30DED426B839032B996987E381|0x77c10000|0x77c67fff|0 11 Module|user32.dll|5.1.2600.2622|user32.pdb|EE2B714D83A34C9D88027621272F83262|0x77d40000|0x77dcffff|0 12 Module|advapi32.dll|5.1.2600.2180|advapi32.pdb|455D6C5F184D45BBB5C5F30F829751142|0x77dd0000|0x77e6a… 13 Module|rpcrt4.dll|5.1.2600.2180|rpcrt4.pdb|BEA45A721DA141DAA3BA86B3A20311532|0x77e70000|0x77f00fff|0 14 Module|gdi32.dll|5.1.2600.2818|gdi32.pdb|C0EA66BE00A64BD7AEF79E443A91869C2|0x77f10000|0x77f56fff|0 [all …]
|
D | minidump2.stackwalk.out | 23 3 kernel32.dll!BaseProcessStart + 0x23 29 0x59a60000 - 0x59b00fff dbghelp.dll 5.1.2600.2180 30 0x76390000 - 0x763acfff imm32.dll 5.1.2600.2180 31 0x76bf0000 - 0x76bfafff psapi.dll 5.1.2600.2180 32 0x774e0000 - 0x7761cfff ole32.dll 5.1.2600.2726 33 0x77c00000 - 0x77c07fff version.dll 5.1.2600.2180 34 0x77c10000 - 0x77c67fff msvcrt.dll 7.0.2600.2180 35 0x77d40000 - 0x77dcffff user32.dll 5.1.2600.2622 36 0x77dd0000 - 0x77e6afff advapi32.dll 5.1.2600.2180 37 0x77e70000 - 0x77f00fff rpcrt4.dll 5.1.2600.2180 [all …]
|
/external/libusb/.private/ |
D | bm.sh | 33 mkdir -p $target/dll 35 cp -v libusb/.libs/libusb-1.0.dll $target/dll 36 cp -v libusb/.libs/libusb-1.0.dll.a $target/dll 50 mkdir -p $target/dll 52 cp -v libusb/.libs/libusb-1.0.dll $target/dll 53 cp -v libusb/.libs/libusb-1.0.dll.a $target/dll
|
D | bd.cmd | 12 for %%A in (MS32 MS64) do mkdir E:\dailies\%DATE%\%%A\dll 48 copy Win32\Release\lib\libusb-1.0.lib E:\dailies\%DATE%\MS32\dll 49 copy Win32\Release\dll\libusb-1.0.dll E:\dailies\%DATE%\MS32\dll 50 copy Win32\Release\dll\libusb-1.0.pdb E:\dailies\%DATE%\MS32\dll 74 copy x64\Release\lib\libusb-1.0.lib E:\dailies\%DATE%\MS64\dll 75 copy x64\Release\dll\libusb-1.0.dll E:\dailies\%DATE%\MS64\dll 76 copy x64\Release\dll\libusb-1.0.pdb E:\dailies\%DATE%\MS64\dll
|
D | bwince.cmd | 29 for %%A in (%WINCE_TARGET_ARCHES%) do mkdir %WINCE_TARGET_DIR%\%%A\dll 47 copy %%A\%MSBUILD_CONFIGURATION%\dll\libusb-1.0.lib %WINCE_TARGET_DIR%\%%A\dll 48 copy %%A\%MSBUILD_CONFIGURATION%\dll\libusb-1.0.dll %WINCE_TARGET_DIR%\%%A\dll 49 copy %%A\%MSBUILD_CONFIGURATION%\dll\libusb-1.0.pdb %WINCE_TARGET_DIR%\%%A\dll )
|
/external/lz4/lib/ |
D | README.md | 43 This command creates `dll\liblz4.dll` and the import library `dll\liblz4.lib`. 46 `dll\liblz4.dll` are required to compile a project using gcc/MinGW. 48 It means that if a project that uses LZ4 consists of a single `test-dll.c` 49 file it should be linked with `dll\liblz4.dll`. For example: 51 gcc $(CFLAGS) -Iinclude/ test-dll.c -o test-dll dll\liblz4.dll 53 The compiled executable will require LZ4 DLL which is available at `dll\liblz4.dll`.
|
/external/tensorflow/tensorflow/tools/ci_build/windows/ |
D | libtensorflow_gpu.sh | 40 tensorflow:tensorflow.dll \ 43 tensorflow/java:tensorflow_jni.dll \ 51 cp bazel-bin/tensorflow/java/tensorflow_jni.dll ${DIR}/tensorflow_jni.dll 53 ${DIR}/tensorflow_jni.dll \ 55 rm -f ${DIR}/tensorflow_jni.dll 61 cp bazel-bin/tensorflow/tensorflow.dll ${DIR}/lib/tensorflow.dll 68 lib/tensorflow.dll \
|
D | libtensorflow_cpu.sh | 40 tensorflow:tensorflow.dll \ 43 tensorflow/java:tensorflow_jni.dll \ 51 cp bazel-bin/tensorflow/java/tensorflow_jni.dll ${DIR}/tensorflow_jni.dll 53 ${DIR}/tensorflow_jni.dll \ 55 rm -f ${DIR}/tensorflow_jni.dll 61 cp bazel-bin/tensorflow/tensorflow.dll ${DIR}/lib/tensorflow.dll 68 lib/tensorflow.dll \
|
/external/libjpeg-turbo/release/ |
D | installer.nsi.in | 22 IfFileExists $SYSDIR/libturbojpeg.dll exists 0 24 IfFileExists $SYSDIR/turbojpeg.dll exists 0 38 File "@CMAKE_CURRENT_BINARY_DIR@\libturbojpeg.dll" 40 File "@CMAKE_CURRENT_BINARY_DIR@\${BUILDDIR}turbojpeg.dll" 44 File "@CMAKE_CURRENT_BINARY_DIR@\libturbojpeg.dll" 46 File "@CMAKE_CURRENT_BINARY_DIR@\${BUILDDIR}turbojpeg.dll" 49 File "@CMAKE_CURRENT_BINARY_DIR@\libjpeg-@SO_MAJOR_VERSION@.dll" 51 File "@CMAKE_CURRENT_BINARY_DIR@\${BUILDDIR}jpeg@SO_MAJOR_VERSION@.dll" 61 File "@CMAKE_CURRENT_BINARY_DIR@\libturbojpeg.dll.a" 63 File "@CMAKE_CURRENT_BINARY_DIR@\libjpeg.dll.a" [all …]
|
/external/curl/winbuild/ |
D | Makefile.vc | 38 !MESSAGE Usage: nmake /f Makefile.vc mode=<static or dll> <options> 45 !MESSAGE WITH_SSL=<dll or static> - Enable OpenSSL support, DLL or static 46 !MESSAGE WITH_NGHTTP2=<dll or static> - Enable HTTP/2 support, DLL or static 47 !MESSAGE WITH_CARES=<dll or static> - Enable c-ares support, DLL or static 48 !MESSAGE WITH_ZLIB=<dll or static> - Enable zlib support, DLL or static 49 !MESSAGE WITH_SSH2=<dll or static> - Enable libSSH2 support, DLL or static 50 !MESSAGE WITH_MBEDTLS=<dll or static> - Enable mbedTLS support, DLL or static 143 SSL = dll 151 WITH_NGHTTP2 = dll 153 NGHTTP2 = dll [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/PDB/Native/ |
D | pdb-native-compilands.test | 51 BIGREAD: Import:KERNEL32.dll 52 BIGREAD: KERNEL32.dll 53 BIGREAD: Import:VCRUNTIME140.dll 54 BIGREAD: VCRUNTIME140.dll 55 BIGREAD: Import:api-ms-win-crt-stdio-l1-1-0.dll 56 BIGREAD: api-ms-win-crt-stdio-l1-1-0.dll 57 BIGREAD: Import:api-ms-win-crt-runtime-l1-1-0.dll 58 BIGREAD: api-ms-win-crt-runtime-l1-1-0.dll 59 BIGREAD: Import:api-ms-win-crt-math-l1-1-0.dll 60 BIGREAD: api-ms-win-crt-math-l1-1-0.dll [all …]
|