/third_party/mbedtls/library/ |
D | sha1.c | 101 } 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 …]
|
D | ripemd160.c | 93 } 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 …]
|
D | md5.c | 88 } 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 …]
|
D | sha256.c | 160 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 …]
|
D | sha512.c | 200 } 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/gettext/libtextstyle/ |
D | Makefile.am | 30 gnulib-local/build-aux/moopp \ 31 gnulib-local/lib/fd-ostream.oo.c \ 32 gnulib-local/lib/fd-ostream.oo.h \ 33 gnulib-local/lib/file-ostream.oo.c \ 34 gnulib-local/lib/file-ostream.oo.h \ 35 gnulib-local/lib/glibconfig.in.h \ 36 gnulib-local/lib/glib/ghash.c \ 37 gnulib-local/lib/glib/ghash.in.h \ 38 gnulib-local/lib/glib/glist.c \ 39 gnulib-local/lib/glib/glist.in.h \ [all …]
|
/third_party/boost/tools/quickbook/src/ |
D | doc_info_grammar.cpp | 94 doc_info_grammar_local& local = in init_doc_info() local 99 local.doc_types = "book", "article", "library", "chapter", "part", in init_doc_info() 103 local.doc_attributes.add(doc_attributes::name(t), t); in init_doc_info() 104 local.doc_info_attributes.add(doc_attributes::name(t), t); in init_doc_info() 108 local.doc_info_attributes.add(doc_info_attributes::name(t), t); in init_doc_info() 125 cl::eps_p [ph::var(local.source_mode_unset) = true] in init_doc_info() 127 >> local.doc_attribute in init_doc_info() 130 >> local.doc_info_block in init_doc_info() 135 local.doc_info_block = in init_doc_info() 138 >> (local.doc_types >> cl::eps_p) in init_doc_info() [all …]
|
D | block_element_grammar.cpp | 40 block_element_grammar_local& local = in init_block_elements() local 52 local.element_id = in init_block_elements() 65 …("section", element_info(element_info::section_block, &local.begin_section, block_tags::begin_sect… in init_block_elements() 66 …("endsect", element_info(element_info::section_block, &local.end_section, block_tags::end_section)) in init_block_elements() 69 local.begin_section = in init_block_elements() 71 >> local.element_id in init_block_elements() 73 >> local.inner_phrase in init_block_elements() 76 local.end_section = in init_block_elements() 78 >> local.element_id in init_block_elements() 81 local.heading in init_block_elements() [all …]
|
/third_party/boost/libs/convert/test/ |
D | has_member.cpp | 18 namespace { namespace local namespace 25 namespace { namespace local namespace 33 namespace { namespace local namespace 60 namespace { namespace local namespace 72 BOOST_TEST(local::has_begin<local::test01>::value == true); in main() 73 BOOST_TEST(local::has_begin<local::test02>::value == true); in main() 74 BOOST_TEST(local::has_begin<local::test03>::value == true); in main() 75 BOOST_TEST(local::has_begin<local::test04>::value == true); in main() 76 BOOST_TEST(local::has_begin<local::test05>::value == true); in main() 77 BOOST_TEST(local::has_begin<local::test06>::value == true); in main() [all …]
|
D | sfinae.cpp | 18 namespace { namespace local namespace 56 BOOST_TEST((local::can_call_funop<callable::test1, int (double, std::string)>::value == true)); in test_is_callable() 57 BOOST_TEST((local::can_call_funop<callable::test1, double (int, std::string)>::value == true)); in test_is_callable() 58 BOOST_TEST((local::can_call_funop<callable::test1, void (double, std::string)>::value == true)); in test_is_callable() 59 BOOST_TEST((local::can_call_funop<callable::test1, void (int, std::string)>::value == true)); in test_is_callable() 60 BOOST_TEST((local::can_call_funop<callable::test1, void (int, char const*)>::value == true)); in test_is_callable() 61 BOOST_TEST((local::can_call_funop<callable::test1, int (double, int)>::value == false)); in test_is_callable() 62 BOOST_TEST((local::can_call_funop<callable::test1, int (double)>::value == false)); in test_is_callable() 64 … BOOST_TEST((local::can_call_funop<callable::test2, int (double, std::string)>::value == false)); in test_is_callable() 65 BOOST_TEST((local::can_call_funop<callable::test2, void (double, std::string)>::value == true)); in test_is_callable() [all …]
|
/third_party/glib/gio/ |
D | glocalfileenumerator.c | 90 free_entries (GLocalFileEnumerator *local) in free_entries() argument 95 if (local->entries != NULL) in free_entries() 97 for (i = 0; local->entries[i].name != NULL; i++) in free_entries() 98 g_free (local->entries[i].name); in free_entries() 100 g_free (local->entries); in free_entries() 108 GLocalFileEnumerator *local; in g_local_file_enumerator_finalize() local 110 local = G_LOCAL_FILE_ENUMERATOR (object); in g_local_file_enumerator_finalize() 112 if (local->got_parent_info) in g_local_file_enumerator_finalize() 113 _g_local_file_info_free_parent_info (&local->parent_info); in g_local_file_enumerator_finalize() 114 g_free (local->filename); in g_local_file_enumerator_finalize() [all …]
|
/third_party/flatbuffers/tests/ |
D | luatest.lua | 2 local compat = require("flatbuffers.compat") 4 local performBenchmarkTests = false 15 local function checkReadBuffer(buf, offset, sizePrefix) 23 local size = flatbuffers.N.Int32:Unpack(buf, offset) 28 local mon = monster.GetRootAsMonster(buf, offset) 34 local vec = assert(mon:Pos(), "Monster Position is nil") 41 local t = require("MyGame.Example.Test").New() 47 local ut = require("MyGame.Example.Any") 50 local table2 = mon:Test() 53 local mon2 = monster.New() [all …]
|
/third_party/flatbuffers/lua/flatbuffers/ |
D | compat_luajit.lua | 1 local bit = require("bit") 2 local ffi = require("ffi") 3 local band = bit.band 4 local bnot = bit.bnot 7 local m = {} 8 local Uint8Bound = 256 -- bound is the max uintN + 1 9 local Uint16Bound = 65536 10 local Uint32Bound = 4294967296 25 local function pack_I1(n) 28 local function pack_i1(n) [all …]
|
D | builder.lua | 1 local N = require("flatbuffers.numTypes") 2 local ba = require("flatbuffers.binaryarray") 3 local compat = require("flatbuffers.compat") 4 local string_unpack = compat.string_unpack 6 local m = {} 8 local mt = {} 11 local VOffsetT = N.VOffsetT 12 local UOffsetT = N.UOffsetT 13 local SOffsetT = N.SOffsetT 14 local Bool = N.Bool [all …]
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_shader_pixel_local_storage2.txt | 49 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 …]
|
D | EXT_shader_pixel_local_storage.txt | 60 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/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_shader_pixel_local_storage2.txt | 49 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 …]
|
D | EXT_shader_pixel_local_storage.txt | 60 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/openssl/test/certs/ |
D | mkcert.sh | 38 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/flatbuffers/tests/MyGame/Example/ |
D | Monster.lua | 5 local flatbuffers = require('flatbuffers') 8 local Monster = {} -- the module 9 local Monster_mt = {} -- the class metatable 12 local o = {} 20 local n = flatbuffers.N.UOffsetT:Unpack(buf, offset) 21 local o = Monster.New() 29 local o = self.view:Offset(4) 31 local x = o + self.view.pos 32 local obj = require('MyGame.Example.Vec3').New() 38 local o = self.view:Offset(6) [all …]
|
/third_party/elfio/tests/elf_examples/ |
D | hello_64.txt | 158 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 …]
|
/third_party/grpc/tools/interop_matrix/testcases/ |
D | python__v1.0.x | 3 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 4 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 5 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 6 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 7 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 8 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 9 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 10 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 11 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 12 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… [all …]
|
D | python__v1.11.1 | 3 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 4 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 5 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 6 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 7 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 8 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 9 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 10 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 11 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 12 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… [all …]
|
D | python__master | 5 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 6 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 7 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 8 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 9 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 10 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 11 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 12 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 13 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… 14 … --rm=true -e PYTHONPATH=/var/local/git/grpc/src/python/gens -e LD_LIBRARY_PATH=/var/local/git/grp… [all …]
|
/third_party/grpc/third_party/upb/third_party/lunit/ |
D | lunit.lua | 33 local orig_assert = assert 35 local pairs = pairs 36 local ipairs = ipairs 37 local next = next 38 local type = type 39 local error = error 40 local tostring = tostring 41 local setmetatable = setmetatable 42 local pcall = pcall 43 local xpcall = xpcall [all …]
|