Home
last modified time | relevance | path

Searched full:local (Results 1 – 25 of 7440) sorted by relevance

12345678910>>...298

/third_party/mbedtls/library/
Dsha1.c101 } local; in mbedtls_internal_sha1_process() local
106 local.W[ 0] = MBEDTLS_GET_UINT32_BE( data, 0 ); in mbedtls_internal_sha1_process()
107 local.W[ 1] = MBEDTLS_GET_UINT32_BE( data, 4 ); in mbedtls_internal_sha1_process()
108 local.W[ 2] = MBEDTLS_GET_UINT32_BE( data, 8 ); in mbedtls_internal_sha1_process()
109 local.W[ 3] = MBEDTLS_GET_UINT32_BE( data, 12 ); in mbedtls_internal_sha1_process()
110 local.W[ 4] = MBEDTLS_GET_UINT32_BE( data, 16 ); in mbedtls_internal_sha1_process()
111 local.W[ 5] = MBEDTLS_GET_UINT32_BE( data, 20 ); in mbedtls_internal_sha1_process()
112 local.W[ 6] = MBEDTLS_GET_UINT32_BE( data, 24 ); in mbedtls_internal_sha1_process()
113 local.W[ 7] = MBEDTLS_GET_UINT32_BE( data, 28 ); in mbedtls_internal_sha1_process()
114 local.W[ 8] = MBEDTLS_GET_UINT32_BE( data, 32 ); in mbedtls_internal_sha1_process()
[all …]
Dripemd160.c93 } local; in mbedtls_internal_ripemd160_process() local
95 local.X[ 0] = MBEDTLS_GET_UINT32_LE( data, 0 ); in mbedtls_internal_ripemd160_process()
96 local.X[ 1] = MBEDTLS_GET_UINT32_LE( data, 4 ); in mbedtls_internal_ripemd160_process()
97 local.X[ 2] = MBEDTLS_GET_UINT32_LE( data, 8 ); in mbedtls_internal_ripemd160_process()
98 local.X[ 3] = MBEDTLS_GET_UINT32_LE( data, 12 ); in mbedtls_internal_ripemd160_process()
99 local.X[ 4] = MBEDTLS_GET_UINT32_LE( data, 16 ); in mbedtls_internal_ripemd160_process()
100 local.X[ 5] = MBEDTLS_GET_UINT32_LE( data, 20 ); in mbedtls_internal_ripemd160_process()
101 local.X[ 6] = MBEDTLS_GET_UINT32_LE( data, 24 ); in mbedtls_internal_ripemd160_process()
102 local.X[ 7] = MBEDTLS_GET_UINT32_LE( data, 28 ); in mbedtls_internal_ripemd160_process()
103 local.X[ 8] = MBEDTLS_GET_UINT32_LE( data, 32 ); in mbedtls_internal_ripemd160_process()
[all …]
Dmd5.c88 } local; in mbedtls_internal_md5_process() local
90 local.X[ 0] = MBEDTLS_GET_UINT32_LE( data, 0 ); in mbedtls_internal_md5_process()
91 local.X[ 1] = MBEDTLS_GET_UINT32_LE( data, 4 ); in mbedtls_internal_md5_process()
92 local.X[ 2] = MBEDTLS_GET_UINT32_LE( data, 8 ); in mbedtls_internal_md5_process()
93 local.X[ 3] = MBEDTLS_GET_UINT32_LE( data, 12 ); in mbedtls_internal_md5_process()
94 local.X[ 4] = MBEDTLS_GET_UINT32_LE( data, 16 ); in mbedtls_internal_md5_process()
95 local.X[ 5] = MBEDTLS_GET_UINT32_LE( data, 20 ); in mbedtls_internal_md5_process()
96 local.X[ 6] = MBEDTLS_GET_UINT32_LE( data, 24 ); in mbedtls_internal_md5_process()
97 local.X[ 7] = MBEDTLS_GET_UINT32_LE( data, 28 ); in mbedtls_internal_md5_process()
98 local.X[ 8] = MBEDTLS_GET_UINT32_LE( data, 32 ); in mbedtls_internal_md5_process()
[all …]
Dsha256.c160 local.W[t] = S1(local.W[(t) - 2]) + local.W[(t) - 7] + \
161 S0(local.W[(t) - 15]) + local.W[(t) - 16] \
167 local.temp1 = (h) + S3(e) + F1((e),(f),(g)) + (K) + (x); \
168 local.temp2 = S2(a) + F0((a),(b),(c)); \
169 (d) += local.temp1; (h) = local.temp1 + local.temp2; \
179 } local; in mbedtls_internal_sha256_process() local
187 local.A[i] = ctx->state[i]; in mbedtls_internal_sha256_process()
193 local.W[i] = MBEDTLS_GET_UINT32_BE( data, 4 * i ); in mbedtls_internal_sha256_process()
197 P( local.A[0], local.A[1], local.A[2], local.A[3], local.A[4], in mbedtls_internal_sha256_process()
198 local.A[5], local.A[6], local.A[7], local.W[i], K[i] ); in mbedtls_internal_sha256_process()
[all …]
Dsha512.c200 } local; in mbedtls_internal_sha512_process() local
220 local.temp1 = (h) + S3(e) + F1((e),(f),(g)) + (K) + (x); \ in mbedtls_internal_sha512_process()
221 local.temp2 = S2(a) + F0((a),(b),(c)); \ in mbedtls_internal_sha512_process()
222 (d) += local.temp1; (h) = local.temp1 + local.temp2; \ in mbedtls_internal_sha512_process()
226 local.A[i] = ctx->state[i]; in mbedtls_internal_sha512_process()
233 local.W[i] = MBEDTLS_GET_UINT64_BE( data, i << 3 ); in mbedtls_internal_sha512_process()
237 local.W[i] = S1(local.W[i - 2]) + local.W[i - 7] + in mbedtls_internal_sha512_process()
238 S0(local.W[i - 15]) + local.W[i - 16]; in mbedtls_internal_sha512_process()
241 P( local.A[0], local.A[1], local.A[2], local.A[3], local.A[4], in mbedtls_internal_sha512_process()
242 local.A[5], local.A[6], local.A[7], local.W[i], K[i] ); in mbedtls_internal_sha512_process()
[all …]
/third_party/elfutils/tests/
Drun-dwflsyms.sh41 0: NOTYPE LOCAL (0) 0
42 1: SECTION LOCAL (0) 0x238
43 2: SECTION LOCAL (0) 0x254
44 3: SECTION LOCAL (0) 0x274
45 4: SECTION LOCAL (0) 0x298
46 5: SECTION LOCAL (0) 0x2d8
47 6: SECTION LOCAL (0) 0x428
48 7: SECTION LOCAL (0) 0x4f2
49 8: SECTION LOCAL (0) 0x510
50 9: SECTION LOCAL (0) 0x530
[all …]
Drun-readelf-s.sh128 2 local symbols String table: [ 6] '.dynstr'
130 0: 0000000000000000 0 NOTYPE LOCAL DEFAULT UNDEF
131 1: 0000000000000238 0 SECTION LOCAL DEFAULT 1
149 54 local symbols String table: [35] '.strtab'
151 0: 0000000000000000 0 NOTYPE LOCAL DEFAULT UNDEF
152 1: 0000000000000238 0 SECTION LOCAL DEFAULT 1
153 2: 0000000000000254 0 SECTION LOCAL DEFAULT 2
154 3: 0000000000000274 0 SECTION LOCAL DEFAULT 3
155 4: 0000000000000298 0 SECTION LOCAL DEFAULT 4
156 5: 00000000000002d8 0 SECTION LOCAL DEFAULT 5
[all …]
/third_party/openssl/test/certs/
Dmkcert.sh38 local key=$1; shift
40 local alg=rsa
45 local bits=2048
68 local key=$1; shift
71 local errs
81 local key=$1; shift
91 local cert=$1; shift
92 local exts=$1; shift
100 local cn=$1; shift
101 local key=$1; shift
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_shader_pixel_local_storage2.txt49 restriction that pixel local storage is not supported when rendering to
52 Moreover, pixel local storage values are no longer lost when writing to
54 values do not always become undefined when the shader writes to pixel local
58 - support for pixel local storage in combination with multiple user-
60 - support for clearing pixel local storage variables
61 - support for multi-word pixel local storage variables
95 "Fragment data values may also be written to pixel local storage blocks.
97 covering the same pixel. Data values written to pixel local storage block
101 to both user-defined fragment outputs and to pixel local storage blocks.
104 writes to any user-defined fragment output, the pixel local storage values
[all …]
DEXT_shader_pixel_local_storage.txt60 concept of pixel local storage. Pixel local storage is an on-chip memory
62 the GL. The format of data stored in the pixel local storage is independent
63 of the format of the currently attached framebuffer. The data in pixel local
64 storage is not written back to main memory. Access to pixel local storage
66 explicitly flush the GL command stream are issued when pixel local storage
67 is enabled then the contents of the pixel local storage becomes undefined
124 "4.3.7 Pixel Local Variables
129 to as pixel storage variables. Pixel local storage variables do not have any
138 Pixel local storage variable reads and writes within a single shader
142 user-defined fragment outputs and to pixel local storage variables. Reading
[all …]
/third_party/openGLES/extensions/EXT/
DEXT_shader_pixel_local_storage2.txt49 restriction that pixel local storage is not supported when rendering to
52 Moreover, pixel local storage values are no longer lost when writing to
54 values do not always become undefined when the shader writes to pixel local
58 - support for pixel local storage in combination with multiple user-
60 - support for clearing pixel local storage variables
61 - support for multi-word pixel local storage variables
95 "Fragment data values may also be written to pixel local storage blocks.
97 covering the same pixel. Data values written to pixel local storage block
101 to both user-defined fragment outputs and to pixel local storage blocks.
104 writes to any user-defined fragment output, the pixel local storage values
[all …]
DEXT_shader_pixel_local_storage.txt61 concept of pixel local storage. Pixel local storage is an on-chip memory
63 the GL. The format of data stored in the pixel local storage is independent
64 of the format of the currently attached framebuffer. The data in pixel local
65 storage is not written back to main memory. Access to pixel local storage
67 explicitly flush the GL command stream are issued when pixel local storage
68 is enabled then the contents of the pixel local storage becomes undefined
125 "4.3.7 Pixel Local Variables
130 to as pixel storage variables. Pixel local storage variables do not have any
139 Pixel local storage variable reads and writes within a single shader
143 user-defined fragment outputs and to pixel local storage variables. Reading
[all …]
/third_party/elfio/tests/elf_examples/
Dhello_64.txt158 0: 0000000000000000 0 NOTYPE LOCAL DEFAULT UND
165 0: 0000000000000000 0 NOTYPE LOCAL DEFAULT UND
166 1: 0000000000400200 0 SECTION LOCAL DEFAULT 1
167 2: 000000000040021c 0 SECTION LOCAL DEFAULT 2
168 3: 0000000000400240 0 SECTION LOCAL DEFAULT 3
169 4: 0000000000400260 0 SECTION LOCAL DEFAULT 4
170 5: 00000000004002c0 0 SECTION LOCAL DEFAULT 5
171 6: 00000000004002fe 0 SECTION LOCAL DEFAULT 6
172 7: 0000000000400308 0 SECTION LOCAL DEFAULT 7
173 8: 0000000000400328 0 SECTION LOCAL DEFAULT 8
[all …]
Dhello_32.txt117 0: 00000000 0 NOTYPE LOCAL DEFAULT UND
125 0: 00000000 0 NOTYPE LOCAL DEFAULT UND
126 1: 08048114 0 SECTION LOCAL DEFAULT 1
127 2: 08048128 0 SECTION LOCAL DEFAULT 2
128 3: 08048148 0 SECTION LOCAL DEFAULT 3
129 4: 08048168 0 SECTION LOCAL DEFAULT 4
130 5: 080481b8 0 SECTION LOCAL DEFAULT 5
131 6: 08048202 0 SECTION LOCAL DEFAULT 6
132 7: 0804820c 0 SECTION LOCAL DEFAULT 7
133 8: 0804822c 0 SECTION LOCAL DEFAULT 8
[all …]
Dtest_ppc.txt133 0: 00000000 0 NOTYPE LOCAL DEFAULT UND
149 0: 00000000 0 NOTYPE LOCAL DEFAULT UND
150 1: 10000134 0 SECTION LOCAL DEFAULT 1
151 2: 10000144 0 SECTION LOCAL DEFAULT 2
152 3: 10000164 0 SECTION LOCAL DEFAULT 3
153 4: 100001ac 0 SECTION LOCAL DEFAULT 4
154 5: 1000027c 0 SECTION LOCAL DEFAULT 5
155 6: 10000400 0 SECTION LOCAL DEFAULT 6
156 7: 1000041c 0 SECTION LOCAL DEFAULT 7
157 8: 1000047c 0 SECTION LOCAL DEFAULT 8
[all …]
/third_party/vk-gl-cts/external/amber/src/tests/cases/
Ddebugger_hlsl_shadowed_vars.amber128 EXPECT LOCAL "a" EQ 1.000000
131 EXPECT LOCAL "a" EQ 1.000000
132 EXPECT LOCAL "b" EQ 2.000000
135 EXPECT LOCAL "a" EQ 1.000000
136 EXPECT LOCAL "b" EQ 2.000000
137 EXPECT LOCAL "c" EQ 3.000000
140 EXPECT LOCAL "c" EQ 3.000000
141 EXPECT LOCAL "x" EQ 6.000000
144 EXPECT LOCAL "a" EQ 3.000000
145 EXPECT LOCAL "c" EQ 3.000000
[all …]
/third_party/typescript/tests/baselines/reference/
DduplicateSymbolsExportMatching.errors.txt1 … error TS2395: Individual declarations in merged declaration 'I' must be all exported or all local.
2 … error TS2395: Individual declarations in merged declaration 'I' must be all exported or all local.
3 … error TS2395: Individual declarations in merged declaration 'E' must be all exported or all local.
4 … error TS2395: Individual declarations in merged declaration 'E' must be all exported or all local.
5 …ror TS2395: Individual declarations in merged declaration 'inst' must be all exported or all local.
6 …ror TS2395: Individual declarations in merged declaration 'inst' must be all exported or all local.
7 … error TS2395: Individual declarations in merged declaration 'v' must be all exported or all local.
8 … error TS2395: Individual declarations in merged declaration 'v' must be all exported or all local.
9 … error TS2395: Individual declarations in merged declaration 'w' must be all exported or all local.
10 … error TS2395: Individual declarations in merged declaration 'w' must be all exported or all local.
[all …]
/third_party/node/deps/npm/scripts/
Dpr17 local url="$(prurl "$@")"
18 local num=$(basename $url)
19 local prpath="${url#git@github.com:}"
20 local repo=${prpath%/pull/$num}
21 local prweb="https://github.com/$prpath"
22 local root="$(prroot "$url")"
23 local api="https://api.github.com/repos/${repo}/pulls/${num}"
24 local user=$(curl -s $api | json user.login)
25 local ref="$(prref "$url" "$root")"
26 local curhead="$(git show --no-patch --pretty=%H HEAD)"
[all …]
/third_party/node/deps/npm/test/tap/
Dinstall-save-local.js16 name: 'install-save-local',
21 name: 'package-local-dependency',
26 name: 'package-local-dev-dependency',
31 mkdirp.sync(path.join(root, 'package-local-dependency'))
33 path.join(root, 'package-local-dependency', 'package.json'),
37 mkdirp.sync(path.join(root, 'package-local-dev-dependency'))
39 path.join(root, 'package-local-dev-dependency', 'package.json'),
46 test('\'npm install --save ../local/path\' should save to package.json', function (t) {
53 'install', '../package-local-dependency'
60 pkg, 'node_modules', 'package-local-dependency', 'package.json'
[all …]
/third_party/icu/icu4c/source/test/iotest/
DMakefile.in46 -include Makefile.local
49 .PHONY : all all-local install install-local clean clean-local \
50 distclean distclean-local dist dist-local check check-local xcheck \
51 check-exhaustive check-exhaustive-local
57 all: all-local
58 install: install-local
59 clean: clean-local
60 distclean : distclean-local
61 dist: dist-local
62 check: all check-local
[all …]
/third_party/protobuf/kokoro/linux/dockerfile/test/php_32bit/
DDockerfile41 RUN wget http://ftp.gnu.org/gnu/bison/bison-2.6.4.tar.gz -O /var/local/bison-2.6.4.tar.gz
42 RUN cd /var/local \
44 && cd /var/local/bison-2.6.4 \
51 RUN mv composer.phar /usr/local/bin/composer
65 --prefix=/usr/local/php-5.5 \
74 --prefix=/usr/local/php-5.5-zts \
81 && cp phpunit /usr/local/php-5.5/bin \
82 && mv phpunit /usr/local/php-5.5-zts/bin
93 --prefix=/usr/local/php-5.6 \
102 --prefix=/usr/local/php-5.6-zts \
[all …]
/third_party/ltp/testcases/kernel/controllers/freezer/
Dlibcgroup_freezer91 local rc=0
144 local cwd_result=$?
148 local umnt_result=$?
149 local rc=0
177 local save_result="${result}"
178 local save_pwd="$(pwd)"
238 local save_result="${result}"
239 local save_pwd="$(pwd)"
255 local file="$1"
256 local descr="$2"
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/tools/gentest/
DMakefile.in34 .PHONY : all all-local install install-local clean clean-local \
35 distclean distclean-local dist dist-local check check-local
41 all: all-local
42 install: install-local
43 clean: clean-local
44 distclean : distclean-local
45 dist: dist-local
46 check: all check-local
48 all-local: $(TARGET)
50 install-local: all-local
[all …]
/third_party/icu/icu4c/source/samples/layout/
DMakefile.in42 .PHONY : all all-local install install-local clean clean-local \
43 distclean distclean-local dist dist-local check check-local
49 all: all-local
50 install: install-local
51 clean: clean-local
52 distclean : distclean-local
53 dist: dist-local
54 check: all check-local
55 c-all: c-all-local
56 c-check: c-all c-check-local
[all …]
/third_party/skia/third_party/externals/icu/source/samples/layout/
DMakefile.in42 .PHONY : all all-local install install-local clean clean-local \
43 distclean distclean-local dist dist-local check check-local
49 all: all-local
50 install: install-local
51 clean: clean-local
52 distclean : distclean-local
53 dist: dist-local
54 check: all check-local
55 c-all: c-all-local
56 c-check: c-all c-check-local
[all …]

12345678910>>...298