Searched refs:pub (Results 1 - 25 of 170) sorted by relevance

1234567

/external/clang/test/Modules/Inputs/private3/
H A Dpublic.h6 void pub() { function
/external/libjpeg-turbo/
H A Djdmaster.h15 struct jpeg_decomp_master pub; /* public fields */ member in struct:__anon10739
H A Dwrppm.h15 struct djpeg_dest_struct pub; /* public fields */ member in struct:__anon10772
H A Dwrgif.c51 struct djpeg_dest_struct pub; /* public fields */ member in struct:__anon10771
89 if (JFWRITE(dinfo->pub.output_file, dinfo->packetbuf, dinfo->bytesinpkt)
206 putc(w & 0xFF, dinfo->pub.output_file);
207 putc((w >> 8) & 0xFF, dinfo->pub.output_file);
215 putc(val, dinfo->pub.output_file);
216 putc(val, dinfo->pub.output_file);
217 putc(val, dinfo->pub.output_file);
245 putc('G', dinfo->pub.output_file);
246 putc('I', dinfo->pub.output_file);
247 putc('F', dinfo->pub
[all...]
H A Dwrppm.c80 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
98 ptr = dest->pub.buffer[0];
103 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
125 ptr = dest->pub.buffer[0];
133 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
147 ptr = dest->pub.buffer[0];
152 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
169 fprintf(dest->pub.output_file, "P5\n%ld %ld\n%d\n",
175 fprintf(dest->pub.output_file, "P6\n%ld %ld\n%d\n",
212 dest->pub
[all...]
H A Drdppm.c65 struct cjpeg_source_struct pub; /* public fields */ member in struct:__anon10760
144 FILE *infile = source->pub.input_file;
150 ptr = source->pub.buffer[0];
163 FILE *infile = source->pub.input_file;
169 ptr = source->pub.buffer[0];
189 if (! ReadOK(source->pub.input_file, source->iobuffer, source->buffer_width))
191 ptr = source->pub.buffer[0];
210 if (! ReadOK(source->pub.input_file, source->iobuffer, source->buffer_width))
212 ptr = source->pub.buffer[0];
232 if (! ReadOK(source->pub
[all...]
H A Dcdjpeg.c34 int total_passes = prog->pub.total_passes + prog->total_extra_passes;
35 int percent_done = (int) (prog->pub.pass_counter*100L/prog->pub.pass_limit);
41 prog->pub.completed_passes + prog->completed_extra_passes + 1,
56 progress->pub.progress_monitor = progress_monitor;
60 cinfo->progress = &progress->pub;
H A Djdatadst.c35 struct jpeg_destination_mgr pub; /* public fields */ member in struct:__anon10723
50 struct jpeg_destination_mgr pub; /* public fields */ member in struct:__anon10724
78 dest->pub.next_output_byte = dest->buffer;
79 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
123 dest->pub.next_output_byte = dest->buffer;
124 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
151 dest->pub.next_output_byte = nextbuffer + dest->bufsize;
152 dest->pub.free_in_buffer = dest->bufsize;
175 size_t datacount = OUTPUT_BUF_SIZE - dest->pub.free_in_buffer;
195 *dest->outsize = (unsigned long)(dest->bufsize - dest->pub
[all...]
H A Dwrrle.c57 struct djpeg_dest_struct pub; /* public fields */ member in struct:__anon10773
135 dest->pub.buffer = (*cinfo->mem->access_virt_sarray)
137 dest->pub.buffer_height = 1;
139 dest->pub.put_pixel_rows = rle_put_pixel_rows;
162 dest->pub.buffer = (*cinfo->mem->access_virt_sarray)
190 header.rle_file = dest->pub.output_file;
218 progress->pub.pass_limit = cinfo->output_height;
219 progress->pub.pass_counter = 0;
220 (*progress->pub.progress_monitor) ((j_common_ptr) cinfo);
232 progress->pub
[all...]
H A Drdrle.c68 struct cjpeg_source_struct pub; /* public fields */ member in struct:_rle_source_struct
94 source->header.rle_file = source->pub.input_file;
179 source->pub.buffer_height = 1;
195 source->pub.buffer = (*cinfo->mem->access_virt_sarray)
217 dest_row = source->pub.buffer[0];
239 * we set source->pub.get_pixel_rows so that subsequent calls go straight to
266 progress->pub.pass_limit = cinfo->image_height;
267 progress->pub.pass_counter = 0;
268 (*progress->pub.progress_monitor) ((j_common_ptr) cinfo);
282 progress->pub
[all...]
H A Djcstest.c47 struct jpeg_error_mgr pub; member in struct:_error_mgr
76 cinfo.err = jpeg_std_error(&jerr.pub);
77 jerr.pub.error_exit = my_error_exit;
78 jerr.pub.output_message = my_output_message;
H A Djdsample.h23 struct jpeg_upsampler pub; /* public fields */ member in struct:__anon10744
H A Dwrtarga.c38 struct djpeg_dest_struct pub; /* public fields */ member in struct:__anon10774
102 inptr = dest->pub.buffer[0];
110 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
123 inptr = dest->pub.buffer[0];
128 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
147 inptr = dest->pub.buffer[0];
152 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
172 dest->pub.put_pixel_rows = put_demapped_gray;
174 dest->pub.put_pixel_rows = put_gray_rows;
183 outfile = dest->pub
[all...]
H A Djdatasrc.c30 struct jpeg_source_mgr pub; /* public fields */ member in struct:__anon10725
119 src->pub.next_input_byte = src->buffer;
120 src->pub.bytes_in_buffer = nbytes;
245 src->pub.init_source = init_source;
246 src->pub.fill_input_buffer = fill_input_buffer;
247 src->pub.skip_input_data = skip_input_data;
248 src->pub.resync_to_restart = jpeg_resync_to_restart; /* use default method */
249 src->pub.term_source = term_source;
251 src->pub.bytes_in_buffer = 0; /* forces fill_input_buffer on first read */
252 src->pub
[all...]
H A Djdatadst-tj.c38 struct jpeg_destination_mgr pub; /* public fields */ member in struct:__anon10722
109 dest->pub.next_output_byte = nextbuffer + dest->bufsize;
110 dest->pub.free_in_buffer = dest->bufsize;
134 *dest->outsize = (unsigned long)(dest->bufsize - dest->pub.free_in_buffer);
178 dest->pub.init_destination = init_mem_destination;
179 dest->pub.empty_output_buffer = empty_mem_output_buffer;
180 dest->pub.term_destination = term_mem_destination;
198 dest->pub.next_output_byte = dest->buffer = *outbuffer;
201 dest->pub.free_in_buffer = dest->bufsize;
H A Drdtarga.c52 struct cjpeg_source_struct pub; /* public fields */ member in struct:_tga_source_struct
93 register FILE *infile = sinfo->pub.input_file;
128 register FILE *infile = sinfo->pub.input_file;
141 register FILE *infile = sinfo->pub.input_file;
183 ptr = source->pub.buffer[0];
201 ptr = source->pub.buffer[0];
221 ptr = source->pub.buffer[0];
248 ptr = source->pub.buffer[0];
286 source->pub.buffer = (*cinfo->mem->access_virt_sarray)
311 progress->pub
[all...]
/external/clang/test/CXX/class.access/class.access.base/
H A Dp1.cpp11 public: int pub; static int spub; member in class:test0::Base
18 pub++;
25 Base::pub++; member in class:test0::Test::Base
35 t->pub++;
42 t->Base::pub++;
59 int pub; // expected-note{{member is declared here}} member in class:test1::Base
67 pub++;
74 Base::pub++; member in class:test1::Test::Base
84 t->pub++; // expected-error {{protected member}} expected-error {{protected base class}}
92 t->Base::pub
109 int pub; // expected-note{{member is declared here}} member in class:test2::Base
131 Base::pub++; member in class:test2::Test::Base
[all...]
/external/clang/test/CodeGenCXX/
H A Ddebug-info-access.cpp16 // CHECK-DAG: !DISubprogram(name: "pub",{{.*}} line: [[@LINE+1]],{{.*}} flags: DIFlagPublic | DIFlagPrototyped,
17 void pub();
/external/bison/lib/
H A Dstdio-impl.h35 # define fp_ ((struct { struct __FILE_public pub; \
52 # define _p pub._p
53 # define _flags pub._flags
54 # define _r pub._r
55 # define _w pub._w
/external/openssh/
H A Dauthfile.c337 struct sshkey *pub = NULL; local
367 if ((pub = sshkey_new(KEY_UNSPEC)) == NULL)
369 if ((r = sshkey_try_load_public(pub, filename, commentp)) == 0) {
371 *keyp = pub;
374 sshkey_free(pub);
378 if ((pub = sshkey_new(KEY_RSA1)) == NULL)
380 if ((r = sshkey_try_load_public(pub, filename, commentp)) == 0) {
382 *keyp = pub;
385 sshkey_free(pub);
389 /* try .pub suffi
409 struct sshkey *pub = NULL; local
501 struct sshkey *pub = NULL; local
[all...]
/external/openssh/contrib/redhat/
H A Dsshd.init10 # config: /etc/ssh/ssh_host_key.pub
43 /sbin/restorecon /etc/ssh/ssh_host_key.pub
44 /sbin/restorecon /etc/ssh/ssh_host_rsa_key.pub
45 /sbin/restorecon /etc/ssh/ssh_host_dsa_key.pub
46 /sbin/restorecon /etc/ssh/ssh_host_ecdsa_key.pub
/external/wycheproof/java/com/google/security/wycheproof/testcases/
H A DRsaSignatureTest.java1086 RSAPublicKey pub = (RSAPublicKey) keyPair.getPublic();
1095 verifier.initVerify(pub);
1106 System.out.println("Modulus:" + pub.getModulus().toString());
1107 System.out.println("E:" + pub.getPublicExponent().toString());
1108 System.out.println("encoded:" + TestUtil.bytesToHex(pub.getEncoded()));
1132 PublicKey pub = kf.generatePublic(key);
1137 verifier.initVerify(pub);
1196 PublicKey pub = kf.generatePublic(key);
1199 verifier.initVerify(pub);
H A DRsaKeyTest.java1429 private void checkPublicKey(RSAPublicKey pub, RSAPrivateKey priv) { argument
1430 assertEquals(pub.getModulus(), priv.getModulus());
1431 BigInteger e = pub.getPublicExponent();
1437 RSAPublicKey pub = (RSAPublicKey) keypair.getPublic();
1447 checkPublicKey(pub, priv);
1473 RSAPublicKey pub = (RSAPublicKey) kf.generatePublic(spec);
1475 "X.509", pub.getFormat());
1476 assertEquals(ENCODED_PUBLIC_KEY, TestUtil.bytesToHex(pub.getEncoded()));
/external/boringssl/src/crypto/x509/
H A Dx_pubkey.c337 int X509_PUBKEY_set0_param(X509_PUBKEY *pub, const ASN1_OBJECT *aobj, argument
341 if (!X509_ALGOR_set0(pub->algor, aobj, ptype, pval))
344 if (pub->public_key->data)
345 OPENSSL_free(pub->public_key->data);
346 pub->public_key->data = penc;
347 pub->public_key->length = penclen;
349 pub->public_key->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07);
350 pub->public_key->flags |= ASN1_STRING_FLAG_BITS_LEFT;
357 X509_ALGOR **pa, X509_PUBKEY *pub)
360 *ppkalg = pub
355 X509_PUBKEY_get0_param(ASN1_OBJECT **ppkalg, const unsigned char **pk, int *ppklen, X509_ALGOR **pa, X509_PUBKEY *pub) argument
[all...]
/external/dtc/scripts/
H A Dkup-dtc3 REMOTE_GIT=/pub/scm/utils/dtc/dtc.git
4 REMOTE_PATH=/pub/software/utils/dtc

Completed in 508 milliseconds

1234567