Home
last modified time | relevance | path

Searched full:pub (Results 1 – 25 of 1071) sorted by relevance

12345678910>>...43

/external/boringssl/src/crypto/curve25519/
Ded25519_tests.txt14 # print "PUB:", public
20 PUB: d75a980182b10ab7d54bfed3c964073a0ee172f3daa62325af021a68f707511a
25 PUB: 3d4017c3e843895a92b70aa74d1b7ebc9c982ccf2ec4968cc0cd55f12af4660c
30 PUB: fc51cd8e6218a1a38da47ed00230f0580816ed13ba3303ac5deb911548908025
35 PUB: e61a185bcef2613a6c7cb79763ce945d3b245d76114dd440bcf5f2dc1aa57057
40 PUB: c0dac102c4533186e25dc43128472353eaabdb878b152aeb8e001f92d90233a7
45 PUB: e253af0766804b869bb1595be9765b534886bbaab8305bf50dbc7f899bfb5f01
50 PUB: fbcfbfa40505d7f2be444a33d185cc54e16d615260e1640b2b5087b83ee3643d
55 PUB: 98a5e3a36e67aaba89888bf093de1ad963e774013b3902bfab356d8b90178a63
60 PUB: f81fb54a825fced95eb033afcd64314075abfb0abd20a970892503436f34b863
[all …]
/external/flatbuffers/tests/
Dmonster_test_generated.rs13 pub mod my_game {
23 pub enum InParentNamespaceOffset {}
26 pub struct InParentNamespace<'a> {
27 pub _tab: flatbuffers::Table<'a>,
42 pub fn init_from_table(table: flatbuffers::Table<'a>) -> Self { in init_from_table()
48 pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>( in create()
57 pub struct InParentNamespaceArgs {
66 pub struct InParentNamespaceBuilder<'a: 'b, 'b> {
72 pub fn new(_fbb: &'b mut flatbuffers::FlatBufferBuilder<'a>) -> InParentNamespaceBuilder<'a, 'b> { in new()
80 pub fn finish(self) -> flatbuffers::WIPOffset<InParentNamespace<'a>> { in finish()
[all …]
/external/flatbuffers/samples/
Dmonster_generated.rs4 pub mod my_game {
14 pub mod sample {
28 pub enum Color {
82 pub fn enum_name_color(e: Color) -> &'static str { in enum_name_color()
90 pub enum Equipment {
141 pub fn enum_name_equipment(e: Equipment) -> &'static str { in enum_name_equipment()
146 pub struct EquipmentUnionTableOffset {}
150 pub struct Vec3 {
154 } // pub struct Vec3
195 pub fn new<'a>(_x: f32, _y: f32, _z: f32) -> Self { in new()
[all …]
/external/flatbuffers/tests/namespace_test/
Dnamespace_test2_generated.rs13 pub mod namespace_a {
23 pub enum TableInFirstNSOffset {}
26 pub struct TableInFirstNS<'a> {
27 pub _tab: flatbuffers::Table<'a>,
42 pub fn init_from_table(table: flatbuffers::Table<'a>) -> Self { in init_from_table()
48 pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>( in create()
58 pub const VT_FOO_TABLE: flatbuffers::VOffsetT = 4;
59 pub const VT_FOO_ENUM: flatbuffers::VOffsetT = 6;
60 pub const VT_FOO_STRUCT: flatbuffers::VOffsetT = 8;
63 pub fn foo_table(&self) -> Option<namespace_b::TableInNestedNS<'a>> { in foo_table()
[all …]
Dnamespace_test1_generated.rs13 pub mod namespace_a {
22 pub mod namespace_b {
35 pub enum EnumInNestedNS {
90 pub fn enum_name_enum_in_nested_ns(e: EnumInNestedNS) -> &'static str { in enum_name_enum_in_nested_ns()
98 pub struct StructInNestedNS {
101 } // pub struct StructInNestedNS
141 pub fn new<'a>(_a: i32, _b: i32) -> Self { in new()
148 pub fn a<'a>(&'a self) -> i32 { in a()
151 pub fn b<'a>(&'a self) -> i32 { in b()
156 pub enum TableInNestedNSOffset {}
[all …]
/external/flatbuffers/rust/flatbuffers/src/
Dprimitives.rs25 pub const FLATBUFFERS_MAX_BUFFER_SIZE: usize = (1u64 << 31) as usize;
27 pub const FILE_IDENTIFIER_LENGTH: usize = 4;
29 pub const VTABLE_METADATA_FIELDS: usize = 2;
31 pub const SIZE_U8: usize = size_of::<u8>();
32 pub const SIZE_I8: usize = size_of::<i8>();
34 pub const SIZE_U16: usize = size_of::<u16>();
35 pub const SIZE_I16: usize = size_of::<i16>();
37 pub const SIZE_U32: usize = size_of::<u32>();
38 pub const SIZE_I32: usize = size_of::<i32>();
40 pub const SIZE_U64: usize = size_of::<u64>();
[all …]
Dvtable.rs24 pub struct VTable<'a> {
36 pub fn init(buf: &'a [u8], loc: usize) -> Self { in init()
42 pub fn num_fields(&self) -> usize { in num_fields()
45 pub fn num_bytes(&self) -> usize { in num_bytes()
48 pub fn object_inline_num_bytes(&self) -> usize { in object_inline_num_bytes()
52 pub fn get_field(&self, idx: usize) -> VOffsetT { in get_field()
62 pub fn get(&self, byte_loc: VOffsetT) -> VOffsetT { in get()
69 pub fn as_bytes(&self) -> &[u8] { in as_bytes()
77 pub fn field_index_to_field_offset(field_id: VOffsetT) -> VOffsetT { in field_index_to_field_offset()
84 pub fn field_offset_to_field_index(field_o: VOffsetT) -> VOffsetT { in field_offset_to_field_index()
Dtable.rs22 pub struct Table<'a> {
23 pub buf: &'a [u8],
24 pub loc: usize,
29 pub fn new(buf: &'a [u8], loc: usize) -> Self { in new()
33 pub fn vtable(&self) -> VTable<'a> { in vtable()
37 pub fn get<T: Follow<'a> + 'a>( in get()
59 pub fn get_root<'a, T: Follow<'a> + 'a>(data: &'a [u8]) -> T::Inner { in get_root()
63 pub fn get_size_prefixed_root<'a, T: Follow<'a> + 'a>(data: &'a [u8]) -> T::Inner { in get_size_prefixed_root()
67 pub fn buffer_has_identifier(data: &[u8], ident: &str, size_prefixed: bool) -> bool { in buffer_has_identifier()
Dlib.rs41 pub use builder::FlatBufferBuilder;
42 pub use endian_scalar::{EndianScalar, emplace_scalar, read_scalar, read_scalar_at, byte_swap_f32, b…
43 pub use follow::{Follow, FollowStart};
44 pub use primitives::*;
45 pub use push::Push;
46 pub use table::{Table, buffer_has_identifier, get_root, get_size_prefixed_root};
47 pub use vector::{SafeSliceAccess, Vector, follow_cast_ref};
48 pub use vtable::field_index_to_field_offset;
/external/openssh/regress/
Dcert-hostkey.sh53 kh_ca host_ca_key.pub host_ca_key2.pub > $OBJ/known_hosts-cert.orig
60 cat $OBJ/host_ca_key.pub $OBJ/host_ca_key2.pub > $OBJ/host_revoked_ca
72 ${SSHKEYGEN} -kf $OBJ/host_krl_ca $OBJ/host_ca_key.pub $OBJ/host_ca_key2.pub \
84 $OBJ/cert_host_key_${ktype}.pub || fatal "KRL update failed"
85 cat $OBJ/cert_host_key_${ktype}.pub >> $OBJ/host_revoked_plain
95 $OBJ/cert_host_key_${ktype}-cert.pub || \
97 cat $OBJ/cert_host_key_${ktype}-cert.pub >> $OBJ/host_revoked_cert
129 echo HostCertificate $OBJ/cert_host_key_${ktype}-cert.pub
155 kh_ca host_ca_key.pub host_ca_key2.pub > $OBJ/known_hosts-cert.orig
157 test -f "$OBJ/cert_host_key_${ktype}.pub" || fatal "no pubkey"
[all …]
Dcert-file.sh32 mv $OBJ/user_key1-cert.pub $OBJ/cert_user_key1_1.pub
36 mv $OBJ/user_key1-cert.pub $OBJ/cert_user_key1_2.pub
40 rm $OBJ/user_key3.pub # to test use of private key w/o public half.
44 rm $OBJ/user_key4 $OBJ/user_key4.pub # to test no matching pub/private key case.
49 echo "cert-authority $(cat $OBJ/user_ca_key1.pub)" > $OBJ/authorized_keys_$USER
58 # Key with no .pub should work - finding the equivalent *-cert.pub.
64 # CertificateFile matching private key with no .pub file should work.
67 -oCertificateFile=$OBJ/user_key3-cert.pub \
81 opts3="$opts2 -oCertificateFile=$OBJ/cert_user_key1_2.pub"
91 opts3="$opts3 -oCertificateFile=$OBJ/cert_user_key1_1.pub"
[all …]
DMakefile98 ed25519-agent.pub empty.in expect failed-regress.log \
101 key.dsa-* key.ecdsa-* key.ed25519-512 key.ed25519-512.pub \
105 revoked-* rsa rsa-agent rsa-agent.pub rsa.pub rsa1 \
106 rsa1-agent rsa1-agent.pub rsa1.pub rsa_ssh2_cr.prv \
113 t10.out t10.out.pub t12.out t12.out.pub t2.out t3.out \
114 t6.out1 t6.out2 t7.out t7.out.pub t8.out t8.out.pub \
115 t9.out t9.out.pub testdata user_*key* user_ca* user_key*
136 ${TEST_SSH_SSHKEYGEN} -yf $(OBJ)/t2.out | diff - ${.CURDIR}/rsa_openssh.pub
139 ${TEST_SSH_SSHKEYGEN} -ef ${.CURDIR}/rsa_openssh.pub >$(OBJ)/t3.out
140 ${TEST_SSH_SSHKEYGEN} -if $(OBJ)/t3.out | diff - ${.CURDIR}/rsa_openssh.pub
[all …]
Dkeygen-convert.sh17 ${SSHKEYGEN} -q -e -f $OBJ/$t-key.pub >$OBJ/$t-key-rfc.pub || \
20 cmp $OBJ/$t-key-rfc $OBJ/$t-key-rfc.pub || \
27 cut -f1,2 -d " " $OBJ/$t-key.pub >$OBJ/$t-key-nocomment.pub
28 cmp $OBJ/$t-key-nocomment.pub $OBJ/$t-rfc-imported || \
31 rm -f $OBJ/$t-key $OBJ/$t-key.pub $OBJ/$t-key-rfc $OBJ/$t-key-rfc.pub \
32 $OBJ/$t-rfc-imported $OBJ/$t-key-nocomment.pub
/external/libjpeg-turbo/
Dwrppm.c69 struct djpeg_dest_struct pub; /* public fields */ member
95 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width); in put_pixel_rows()
115 ptr = dest->pub.buffer[0]; in copy_pixel_rows()
124 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width); in copy_pixel_rows()
144 ptr = dest->pub.buffer[0]; in put_rgb()
152 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width); in put_rgb()
169 ptr = dest->pub.buffer[0]; in put_cmyk()
178 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width); in put_cmyk()
200 ptr = dest->pub.buffer[0]; in put_demapped_rgb()
208 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width); in put_demapped_rgb()
[all …]
Dwrgif.c51 struct djpeg_dest_struct pub; /* public fields */ member
89 if (JFWRITE(dinfo->pub.output_file, dinfo->packetbuf, dinfo->bytesinpkt) != in flush_packet()
206 putc(w & 0xFF, dinfo->pub.output_file); in put_word()
207 putc((w >> 8) & 0xFF, dinfo->pub.output_file); in put_word()
215 putc(val, dinfo->pub.output_file); in put_3bytes()
216 putc(val, dinfo->pub.output_file); in put_3bytes()
217 putc(val, dinfo->pub.output_file); in put_3bytes()
245 putc('G', dinfo->pub.output_file); in emit_header()
246 putc('I', dinfo->pub.output_file); in emit_header()
247 putc('F', dinfo->pub.output_file); in emit_header()
[all …]
Drdppm.c71 struct cjpeg_source_struct pub; /* public fields */ member
150 FILE *infile = source->pub.input_file; in get_text_gray_row()
156 ptr = source->pub.buffer[0]; in get_text_gray_row()
178 FILE *infile = source->pub.input_file; in get_text_gray_rgb_row()
189 ptr = source->pub.buffer[0]; in get_text_gray_rgb_row()
213 FILE *infile = source->pub.input_file; in get_text_gray_cmyk_row()
219 ptr = source->pub.buffer[0]; in get_text_gray_cmyk_row()
252 FILE *infile = source->pub.input_file; in get_text_rgb_row()
263 ptr = source->pub.buffer[0]; in get_text_rgb_row()
287 FILE *infile = source->pub.input_file; in get_text_rgb_cmyk_row()
[all …]
Dwrtarga.c38 struct djpeg_dest_struct pub; /* public fields */ member
102 inptr = dest->pub.buffer[0]; in put_pixel_rows()
110 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width); in put_pixel_rows()
123 inptr = dest->pub.buffer[0]; in put_gray_rows()
128 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width); in put_gray_rows()
147 inptr = dest->pub.buffer[0]; in put_demapped_gray()
152 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width); in put_demapped_gray()
172 dest->pub.put_pixel_rows = put_demapped_gray; in start_output_tga()
174 dest->pub.put_pixel_rows = put_gray_rows; in start_output_tga()
183 outfile = dest->pub.output_file; in start_output_tga()
[all …]
Drdrle.c68 struct cjpeg_source_struct pub; /* public fields */ member
94 source->header.rle_file = source->pub.input_file; in start_input_rle()
179 source->pub.buffer_height = 1; in start_input_rle()
195 source->pub.buffer = (*cinfo->mem->access_virt_sarray) in get_rle_row()
217 dest_row = source->pub.buffer[0]; in get_pseudocolor_row()
239 * we set source->pub.get_pixel_rows so that subsequent calls go straight to
266 progress->pub.pass_limit = cinfo->image_height; in load_image()
267 progress->pub.pass_counter = 0; in load_image()
268 (*progress->pub.progress_monitor) ((j_common_ptr)cinfo); in load_image()
282 progress->pub.pass_counter++; in load_image()
[all …]
Djdatadst.c35 struct jpeg_destination_mgr pub; /* public fields */ member
50 struct jpeg_destination_mgr pub; /* public fields */ member
78 dest->pub.next_output_byte = dest->buffer; in init_destination()
79 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; in init_destination()
123 dest->pub.next_output_byte = dest->buffer; in empty_output_buffer()
124 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; in empty_output_buffer()
151 dest->pub.next_output_byte = nextbuffer + dest->bufsize; in empty_mem_output_buffer()
152 dest->pub.free_in_buffer = dest->bufsize; in empty_mem_output_buffer()
175 size_t datacount = OUTPUT_BUF_SIZE - dest->pub.free_in_buffer; in term_destination()
195 *dest->outsize = (unsigned long)(dest->bufsize - dest->pub.free_in_buffer); in term_mem_destination()
[all …]
Dwrrle.c57 struct djpeg_dest_struct pub; /* public fields */ member
135 dest->pub.buffer = (*cinfo->mem->access_virt_sarray) in start_output_rle()
137 dest->pub.buffer_height = 1; in start_output_rle()
139 dest->pub.put_pixel_rows = rle_put_pixel_rows; in start_output_rle()
162 dest->pub.buffer = (*cinfo->mem->access_virt_sarray) in rle_put_pixel_rows()
190 header.rle_file = dest->pub.output_file; in finish_output_rle()
219 progress->pub.pass_limit = cinfo->output_height; in finish_output_rle()
220 progress->pub.pass_counter = 0; in finish_output_rle()
221 (*progress->pub.progress_monitor) ((j_common_ptr)cinfo); in finish_output_rle()
233 progress->pub.pass_counter++; in finish_output_rle()
[all …]
/external/tensorflow/tensorflow/core/lib/jpeg/
Djpeg_handle.cc48 dest->pub.next_output_byte = dest->buffer; in MemInitDestination()
49 dest->pub.free_in_buffer = dest->bufsize; in MemInitDestination()
63 dest->pub.next_output_byte = dest->buffer; in MemEmptyOutputBuffer()
64 dest->pub.free_in_buffer = dest->bufsize; in MemEmptyOutputBuffer()
71 VLOG(1) << "Writing " << dest->bufsize - dest->pub.free_in_buffer << " bytes"; in MemTermDestination()
74 dest->bufsize - dest->pub.free_in_buffer); in MemTermDestination()
77 dest->datacount = dest->bufsize - dest->pub.free_in_buffer; in MemTermDestination()
99 dest->pub.init_destination = MemInitDestination; in SetDest()
100 dest->pub.empty_output_buffer = MemEmptyOutputBuffer; in SetDest()
101 dest->pub.term_destination = MemTermDestination; in SetDest()
[all …]
/external/openssh/regress/unittests/sshkey/
Dmktestdata.sh49 awk '/^priv:$/,/^pub:/' | \
52 awk '/^pub:/,/^P:/' | #\
53 grep -v '^[a-zA-Z]' | tr -d ' \n:' > ${_outbase}.pub
57 for x in priv pub g ; do
70 awk '/^priv:$/,/^pub:/' | \
73 awk '/^pub:/,/^ASN1 OID:/' | #\
74 grep -v '^[a-zA-Z]' | tr -d ' \n:' > ${_outbase}.pub
78 for x in priv pub curve ; do
95 rm -f pw *.pub *.bn.* *.param.* *.fp *.fp.bb
143 -V 19990101:20110101 -z 1 rsa_1.pub
[all …]
/external/openssh/regress/unittests/hostkeys/
Dmktestdata.sh44 hentries "sisyphus.example.com" "*_5.pub"
45 hentries "prometheus.example.com,192.0.2.1,2001:db8::1" "*_6.pub"
53 hentries "sisyphus.example.com" "*_1.pub"
56 hentries "prometheus.example.com,192.0.2.1,2001:db8::1" "*_2.pub"
59 hentries "*.example.com,192.0.2.*,2001:*" "*_3.pub"
67 printf "@revoked sisyphus.example.com " ; cat rsa1_4.pub
68 printf "@revoked sisyphus.example.com " ; cat ed25519_4.pub
69 printf "@cert-authority prometheus.example.com " ; cat ecdsa_4.pub
70 printf "@cert-authority *.example.com " ; cat dsa_4.pub
75 printf "@what sisyphus.example.com " ; cat rsa1_1.pub
[all …]
/external/openssh/
Dauthfile.c352 struct sshkey *pub = NULL; in sshkey_load_public() local
382 if ((pub = sshkey_new(KEY_UNSPEC)) == NULL) in sshkey_load_public()
384 if ((r = sshkey_try_load_public(pub, filename, commentp)) == 0) { in sshkey_load_public()
386 *keyp = pub; in sshkey_load_public()
389 sshkey_free(pub); in sshkey_load_public()
393 if ((pub = sshkey_new(KEY_RSA1)) == NULL) in sshkey_load_public()
395 if ((r = sshkey_try_load_public(pub, filename, commentp)) == 0) { in sshkey_load_public()
397 *keyp = pub; in sshkey_load_public()
400 sshkey_free(pub); in sshkey_load_public()
404 /* try .pub suffix */ in sshkey_load_public()
[all …]
/external/clang/test/CXX/class.access/class.access.base/
Dp1.cpp11 public: int pub; static int spub; member in test0::Base
18 pub++; in test()
25 Base::pub++; in test()
35 t->pub++; in test()
42 t->Base::pub++; in test()
59 int pub; // expected-note{{member is declared here}} member in test1::Base
67 pub++; in test()
74 Base::pub++; in test()
84 t->pub++; // expected-error {{protected member}} expected-error {{protected base class}} in test()
92 t->Base::pub++; // expected-error {{protected member}} expected-error {{protected base class}} in test()
[all …]

12345678910>>...43