/openthread-2.7.6/third_party/mbedtls/repo/library/ |
D | ripemd160.c | 123 } local; in mbedtls_internal_ripemd160_process() local 125 GET_UINT32_LE( local.X[ 0], data, 0 ); in mbedtls_internal_ripemd160_process() 126 GET_UINT32_LE( local.X[ 1], data, 4 ); in mbedtls_internal_ripemd160_process() 127 GET_UINT32_LE( local.X[ 2], data, 8 ); in mbedtls_internal_ripemd160_process() 128 GET_UINT32_LE( local.X[ 3], data, 12 ); in mbedtls_internal_ripemd160_process() 129 GET_UINT32_LE( local.X[ 4], data, 16 ); in mbedtls_internal_ripemd160_process() 130 GET_UINT32_LE( local.X[ 5], data, 20 ); in mbedtls_internal_ripemd160_process() 131 GET_UINT32_LE( local.X[ 6], data, 24 ); in mbedtls_internal_ripemd160_process() 132 GET_UINT32_LE( local.X[ 7], data, 28 ); in mbedtls_internal_ripemd160_process() 133 GET_UINT32_LE( local.X[ 8], data, 32 ); in mbedtls_internal_ripemd160_process() [all …]
|
D | sha1.c | 131 } local; in mbedtls_internal_sha1_process() local 136 GET_UINT32_BE( local.W[ 0], data, 0 ); in mbedtls_internal_sha1_process() 137 GET_UINT32_BE( local.W[ 1], data, 4 ); in mbedtls_internal_sha1_process() 138 GET_UINT32_BE( local.W[ 2], data, 8 ); in mbedtls_internal_sha1_process() 139 GET_UINT32_BE( local.W[ 3], data, 12 ); in mbedtls_internal_sha1_process() 140 GET_UINT32_BE( local.W[ 4], data, 16 ); in mbedtls_internal_sha1_process() 141 GET_UINT32_BE( local.W[ 5], data, 20 ); in mbedtls_internal_sha1_process() 142 GET_UINT32_BE( local.W[ 6], data, 24 ); in mbedtls_internal_sha1_process() 143 GET_UINT32_BE( local.W[ 7], data, 28 ); in mbedtls_internal_sha1_process() 144 GET_UINT32_BE( local.W[ 8], data, 32 ); in mbedtls_internal_sha1_process() [all …]
|
D | md5.c | 118 } local; in mbedtls_internal_md5_process() local 120 GET_UINT32_LE( local.X[ 0], data, 0 ); in mbedtls_internal_md5_process() 121 GET_UINT32_LE( local.X[ 1], data, 4 ); in mbedtls_internal_md5_process() 122 GET_UINT32_LE( local.X[ 2], data, 8 ); in mbedtls_internal_md5_process() 123 GET_UINT32_LE( local.X[ 3], data, 12 ); in mbedtls_internal_md5_process() 124 GET_UINT32_LE( local.X[ 4], data, 16 ); in mbedtls_internal_md5_process() 125 GET_UINT32_LE( local.X[ 5], data, 20 ); in mbedtls_internal_md5_process() 126 GET_UINT32_LE( local.X[ 6], data, 24 ); in mbedtls_internal_md5_process() 127 GET_UINT32_LE( local.X[ 7], data, 28 ); in mbedtls_internal_md5_process() 128 GET_UINT32_LE( local.X[ 8], data, 32 ); in mbedtls_internal_md5_process() [all …]
|
D | md4.c | 119 } local; in mbedtls_internal_md4_process() local 121 GET_UINT32_LE( local.X[ 0], data, 0 ); in mbedtls_internal_md4_process() 122 GET_UINT32_LE( local.X[ 1], data, 4 ); in mbedtls_internal_md4_process() 123 GET_UINT32_LE( local.X[ 2], data, 8 ); in mbedtls_internal_md4_process() 124 GET_UINT32_LE( local.X[ 3], data, 12 ); in mbedtls_internal_md4_process() 125 GET_UINT32_LE( local.X[ 4], data, 16 ); in mbedtls_internal_md4_process() 126 GET_UINT32_LE( local.X[ 5], data, 20 ); in mbedtls_internal_md4_process() 127 GET_UINT32_LE( local.X[ 6], data, 24 ); in mbedtls_internal_md4_process() 128 GET_UINT32_LE( local.X[ 7], data, 28 ); in mbedtls_internal_md4_process() 129 GET_UINT32_LE( local.X[ 8], data, 32 ); in mbedtls_internal_md4_process() [all …]
|
D | sha256.c | 184 local.W[t] = S1(local.W[(t) - 2]) + local.W[(t) - 7] + \ 185 S0(local.W[(t) - 15]) + local.W[(t) - 16] \ 191 local.temp1 = (h) + S3(e) + F1((e),(f),(g)) + (K) + (x); \ 192 local.temp2 = S2(a) + F0((a),(b),(c)); \ 193 (d) += local.temp1; (h) = local.temp1 + local.temp2; \ 203 } local; in mbedtls_internal_sha256_process() local 211 local.A[i] = ctx->state[i]; in mbedtls_internal_sha256_process() 217 GET_UINT32_BE( local.W[i], data, 4 * i ); in mbedtls_internal_sha256_process() 221 P( local.A[0], local.A[1], local.A[2], local.A[3], local.A[4], in mbedtls_internal_sha256_process() 222 local.A[5], local.A[6], local.A[7], local.W[i], K[i] ); in mbedtls_internal_sha256_process() [all …]
|
D | sha512.c | 239 } local; in mbedtls_internal_sha512_process() local 259 local.temp1 = (h) + S3(e) + F1((e),(f),(g)) + (K) + (x); \ in mbedtls_internal_sha512_process() 260 local.temp2 = S2(a) + F0((a),(b),(c)); \ in mbedtls_internal_sha512_process() 261 (d) += local.temp1; (h) = local.temp1 + local.temp2; \ in mbedtls_internal_sha512_process() 265 local.A[i] = ctx->state[i]; in mbedtls_internal_sha512_process() 272 GET_UINT64_BE( local.W[i], data, i << 3 ); in mbedtls_internal_sha512_process() 276 local.W[i] = S1(local.W[i - 2]) + local.W[i - 7] + in mbedtls_internal_sha512_process() 277 S0(local.W[i - 15]) + local.W[i - 16]; in mbedtls_internal_sha512_process() 280 P( local.A[0], local.A[1], local.A[2], local.A[3], local.A[4], in mbedtls_internal_sha512_process() 281 local.A[5], local.A[6], local.A[7], local.W[i], K[i] ); in mbedtls_internal_sha512_process() [all …]
|
/openthread-2.7.6/third_party/mbedtls/repo/tests/docker/bionic/ |
D | Dockerfile | 69 && ./config --openssldir=/usr/local/openssl-1.0.1j no-shared \ 73 ENV OPENSSL_LEGACY=/usr/local/openssl-1.0.1j/bin/openssl 79 && ./config --openssldir=/usr/local/openssl-1.0.2g no-shared \ 83 ENV OPENSSL=/usr/local/openssl-1.0.2g/bin/openssl 90 …&& ./config --prefix=/usr/local/openssl-1.1.1a -Wl,--enable-new-dtags,-rpath,'${LIBRPATH}' no-shar… 94 ENV OPENSSL_NEXT=/usr/local/openssl-1.1.1a/bin/openssl 110 …&& ./configure --prefix=/usr/local/gnutls-3.3.8 --exec_prefix=/usr/local/gnutls-3.3.8 --disable-sh… 114 ENV GNUTLS_LEGACY_CLI=/usr/local/gnutls-3.3.8/bin/gnutls-cli 115 ENV GNUTLS_LEGACY_SERV=/usr/local/gnutls-3.3.8/bin/gnutls-serv 131 && ./configure --prefix=/usr/local/gnutls-3.4.10 --exec_prefix=/usr/local/gnutls-3.4.10 \ [all …]
|
/openthread-2.7.6/third_party/nlbuild-autotools/repo/automake/post/rules/ |
D | coverage.am | 33 # Execute local and recursive coverage targets across the 38 # coverage-local: 39 # Execute local coverage targets at the current invocation point. 49 # check-local: 50 # Alias for the 'check-am' target. Execute local check 52 # may depend on this to ensure local tests are made before 58 .PHONY: coverage coverage-recursive coverage-local check-local 60 check-local: check-am 62 coverage: coverage-local
|
/openthread-2.7.6/third_party/nlbuild-autotools/repo/examples/ |
D | Makefile-toplevel.am | 43 .local-version \ 50 .local-version \ 64 # .local-version - The current source code controlled package version. This 69 # When present, the .local-version file is preferred first, the 75 # for a given MAKELEVEL even as .local-version and .dist-version are created 78 VERSION_FILE := $(if $(wildcard $(builddir)/.local-version),$(builddir)/.local… 101 # check-file-.local-version 103 # Speculatively regenerate .local-version and check to see if it needs 107 # (which is implicitly the contents of .local-version), then use that; 110 # This is called from $(call check-file,.local-version). [all …]
|
D | Makefile-tests.am | 93 $(@PACKAGE_SHORT_UPPER@_COVERAGE_INFO): check-local | $(@PACKAGE_SHORT_UPPER@_COVERAGE_BUNDLE) 96 coverage-local: $(@PACKAGE_SHORT_UPPER@_COVERAGE_INFO) 98 clean-local: clean-local-coverage 100 .PHONY: clean-local-coverage 101 clean-local-coverage:
|
D | Makefile-doc.am | 35 PACKAGE_VERSION = $(shell cat $(top_builddir)/.local-version) 57 all-local: html/index.html 97 clean-local:
|
/openthread-2.7.6/third_party/nlbuild-autotools/repo/make/post/rules/ |
D | help.mak | 31 .PHONY: help-local 32 help-local: 36 help-hook: help-local 39 help: help-local help-hook
|
D | repos.mak | 83 # values for branch, local path, and URL. 147 .PHONY: repos-local 148 repos-local: repos-warning 152 repos-hook: repos-local 155 repos: repos-local repos-hook 160 .PHONY: clean-repos-local 161 clean-repos-local: clean-repos-hook 186 clean-repos: clean-repos-local 216 .PHONY: help-repos-local 217 help-repos-local: [all …]
|
D | bootstrap.mak | 121 .PHONY: help-bootstrap-local 122 help-bootstrap-local: 126 help-bootstrap-hook: help-bootstrap-local 129 help-bootstrap: help-bootstrap-local help-bootstrap-hook
|
/openthread-2.7.6/third_party/nlbuild-autotools/repo/ |
D | .gitignore | 1 .local-version
|
D | CHANGES | 86 * Added support for coverage-local and check-local targets. Added 103 variable to ensure late evaluation AFTER .local-version MAY
|
D | Common.mak | 123 clean-local:
|
/openthread-2.7.6/third_party/mbedtls/repo/tests/scripts/ |
D | test_generate_test_code.py | 505 args, local, arg_dispatch = parse_function_arguments(line) 507 self.assertEqual(local, '') 518 args, local, arg_dispatch = parse_function_arguments(line) 520 self.assertEqual(local, 541 args, local, arg_dispatch = parse_function_arguments(line) 543 self.assertEqual(local, '')
|
/openthread-2.7.6/ |
D | .gitignore | 27 .local-version
|
D | STYLE_GUIDE.md | 30 …- The use of code in headers and, more specifically, the use of the non-local scope inline functio… 33 - Non-local Goto 36 …- There should be no calls to the C/C++ keyword goto. Exception: The use of local gotos for the pu… 54 - Private or local headers 79 … `OT_UNUSED_VARIABLE` macro at the top of a function or method before all local variable declarati… 144 - All variables that do not have such prefixes shall be assumed to be function local scope.
|
/openthread-2.7.6/third_party/nlbuild-autotools/repo/make/pre/macros/ |
D | repos.mak | 27 # packages and their names, branches, URLs, and local paths that may be
|
D | git.mak | 74 # Get the local path for a repo / submodule variable set in specified git config file <file>.
|
/openthread-2.7.6/third_party/nlbuild-autotools/repo/tools/packages/make/make.patches/ |
D | make-00.patch | 435 + * it would be more useful if it looked in /usr/local/lib even though 436 + * make itself hasn't been installed in the /usr/local tree -- manoj 438 + "/usr/local/lib",
|
/openthread-2.7.6/third_party/mbedtls/repo/ |
D | .pylintrc | 28 # We're ok with short local or global variable names.
|
/openthread-2.7.6/tests/toranj/ |
D | README.md | 258 Sending 10 messages containing `"Hello there!"` from `node1` to `node2` using their mesh-local addr… 263 # Get the mesh local addresses 342 $ Node1.__init__() cmd: /usr/local/sbin/wpantund -o Config:NCP:SocketPath "system:../../examples/ap… 343 $ Node2.__init__() cmd: /usr/local/sbin/wpantund -o Config:NCP:SocketPath "system:../../examples/ap…
|