HomeSort by relevance Sort by last modified time
    Searched refs:pub (Results 1 - 25 of 206) sorted by null

1 2 3 4 5 6 7 8 9

  /external/clang/test/CXX/class.access/class.access.base/
p1.cpp 11 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++; // expected-error {{protected member}} expected-error {{protected base class}
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/jpeg/
jdatasrc.c 26 struct jpeg_source_mgr pub; /* public fields */ member in struct:__anon9371
107 src->pub.next_input_byte = src->buffer;
108 src->pub.bytes_in_buffer = nbytes;
137 while (num_bytes > (long) src->pub.bytes_in_buffer) {
138 num_bytes -= (long) src->pub.bytes_in_buffer;
144 src->pub.next_input_byte += (size_t) num_bytes;
145 src->pub.bytes_in_buffer -= (size_t) num_bytes;
204 src->pub.init_source = init_source;
205 src->pub.fill_input_buffer = fill_input_buffer;
206 src->pub.skip_input_data = skip_input_data
    [all...]
jdatadst.c 26 struct jpeg_destination_mgr pub; /* public fields */ member in struct:__anon9370
52 dest->pub.next_output_byte = dest->buffer;
53 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
89 dest->pub.next_output_byte = dest->buffer;
90 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
109 size_t datacount = OUTPUT_BUF_SIZE - dest->pub.free_in_buffer;
147 dest->pub.init_destination = init_destination;
148 dest->pub.empty_output_buffer = empty_output_buffer;
149 dest->pub.term_destination = term_destination;
wrgif.c 48 struct djpeg_dest_struct pub; /* public fields */ member in struct:__anon9422
86 if (JFWRITE(dinfo->pub.output_file, dinfo->packetbuf, dinfo->bytesinpkt)
203 putc(w & 0xFF, dinfo->pub.output_file);
204 putc((w >> 8) & 0xFF, dinfo->pub.output_file);
212 putc(val, dinfo->pub.output_file);
213 putc(val, dinfo->pub.output_file);
214 putc(val, dinfo->pub.output_file);
242 putc('G', dinfo->pub.output_file);
243 putc('I', dinfo->pub.output_file);
244 putc('F', dinfo->pub.output_file)
    [all...]
wrppm.c 69 struct djpeg_dest_struct pub; /* public fields */ member in struct:__anon9423
95 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
113 ptr = dest->pub.buffer[0];
118 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
140 ptr = dest->pub.buffer[0];
148 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
162 ptr = dest->pub.buffer[0];
167 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
184 fprintf(dest->pub.output_file, "P5\n%ld %ld\n%d\n",
190 fprintf(dest->pub.output_file, "P6\n%ld %ld\n%d\n"
    [all...]
rdppm.c 72 struct cjpeg_source_struct pub; /* public fields */ member in struct:__anon9416
145 FILE * infile = source->pub.input_file;
150 ptr = source->pub.buffer[0];
163 FILE * infile = source->pub.input_file;
168 ptr = source->pub.buffer[0];
188 if (! ReadOK(source->pub.input_file, source->iobuffer, source->buffer_width))
190 ptr = source->pub.buffer[0];
209 if (! ReadOK(source->pub.input_file, source->iobuffer, source->buffer_width))
211 ptr = source->pub.buffer[0];
231 if (! ReadOK(source->pub.input_file, source->iobuffer, source->buffer_width)
    [all...]
wrrle.c 54 struct djpeg_dest_struct pub; /* public fields */ member in struct:__anon9424
132 dest->pub.buffer = (*cinfo->mem->access_virt_sarray)
134 dest->pub.buffer_height = 1;
136 dest->pub.put_pixel_rows = rle_put_pixel_rows;
159 dest->pub.buffer = (*cinfo->mem->access_virt_sarray)
187 header.rle_file = dest->pub.output_file;
216 progress->pub.pass_limit = cinfo->output_height;
217 progress->pub.pass_counter = 0;
218 (*progress->pub.progress_monitor) ((j_common_ptr) cinfo);
230 progress->pub.pass_counter++
    [all...]
rdrle.c 65 struct cjpeg_source_struct pub; /* public fields */ member in struct:_rle_source_struct
91 source->header.rle_file = source->pub.input_file;
176 source->pub.buffer_height = 1;
192 source->pub.buffer = (*cinfo->mem->access_virt_sarray)
214 dest_row = source->pub.buffer[0];
236 * we set source->pub.get_pixel_rows so that subsequent calls go straight to
264 progress->pub.pass_limit = cinfo->image_height;
265 progress->pub.pass_counter = 0;
266 (*progress->pub.progress_monitor) ((j_common_ptr) cinfo);
280 progress->pub.pass_counter++
    [all...]
wrtarga.c 44 struct djpeg_dest_struct pub; /* public fields */ member in struct:__anon9425
108 inptr = dest->pub.buffer[0];
116 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
129 inptr = dest->pub.buffer[0];
134 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
153 inptr = dest->pub.buffer[0];
158 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
178 dest->pub.put_pixel_rows = put_demapped_gray;
180 dest->pub.put_pixel_rows = put_gray_rows;
189 outfile = dest->pub.output_file
    [all...]
cdjpeg.c 71 int total_passes = prog->pub.total_passes + prog->total_extra_passes;
72 int percent_done = (int) (prog->pub.pass_counter*100L/prog->pub.pass_limit);
78 prog->pub.completed_passes + prog->completed_extra_passes + 1,
93 progress->pub.progress_monitor = progress_monitor;
97 cinfo->progress = &progress->pub;
  /external/qemu/distrib/jpeg-6b/
jdatasrc.c 26 struct jpeg_source_mgr pub; /* public fields */ member in struct:__anon13211
107 src->pub.next_input_byte = src->buffer;
108 src->pub.bytes_in_buffer = nbytes;
137 while (num_bytes > (long) src->pub.bytes_in_buffer) {
138 num_bytes -= (long) src->pub.bytes_in_buffer;
144 src->pub.next_input_byte += (size_t) num_bytes;
145 src->pub.bytes_in_buffer -= (size_t) num_bytes;
204 src->pub.init_source = init_source;
205 src->pub.fill_input_buffer = fill_input_buffer;
206 src->pub.skip_input_data = skip_input_data
    [all...]
jdatadst.c 26 struct jpeg_destination_mgr pub; /* public fields */ member in struct:__anon13210
52 dest->pub.next_output_byte = dest->buffer;
53 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
89 dest->pub.next_output_byte = dest->buffer;
90 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
109 size_t datacount = OUTPUT_BUF_SIZE - dest->pub.free_in_buffer;
147 dest->pub.init_destination = init_destination;
148 dest->pub.empty_output_buffer = empty_output_buffer;
149 dest->pub.term_destination = term_destination;
wrgif.c 48 struct djpeg_dest_struct pub; /* public fields */ member in struct:__anon13262
86 if (JFWRITE(dinfo->pub.output_file, dinfo->packetbuf, dinfo->bytesinpkt)
203 putc(w & 0xFF, dinfo->pub.output_file);
204 putc((w >> 8) & 0xFF, dinfo->pub.output_file);
212 putc(val, dinfo->pub.output_file);
213 putc(val, dinfo->pub.output_file);
214 putc(val, dinfo->pub.output_file);
242 putc('G', dinfo->pub.output_file);
243 putc('I', dinfo->pub.output_file);
244 putc('F', dinfo->pub.output_file)
    [all...]
wrppm.c 69 struct djpeg_dest_struct pub; /* public fields */ member in struct:__anon13263
95 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
113 ptr = dest->pub.buffer[0];
118 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
140 ptr = dest->pub.buffer[0];
148 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
162 ptr = dest->pub.buffer[0];
167 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
184 fprintf(dest->pub.output_file, "P5\n%ld %ld\n%d\n",
190 fprintf(dest->pub.output_file, "P6\n%ld %ld\n%d\n"
    [all...]
rdppm.c 72 struct cjpeg_source_struct pub; /* public fields */ member in struct:__anon13256
145 FILE * infile = source->pub.input_file;
150 ptr = source->pub.buffer[0];
163 FILE * infile = source->pub.input_file;
168 ptr = source->pub.buffer[0];
188 if (! ReadOK(source->pub.input_file, source->iobuffer, source->buffer_width))
190 ptr = source->pub.buffer[0];
209 if (! ReadOK(source->pub.input_file, source->iobuffer, source->buffer_width))
211 ptr = source->pub.buffer[0];
231 if (! ReadOK(source->pub.input_file, source->iobuffer, source->buffer_width)
    [all...]
wrrle.c 54 struct djpeg_dest_struct pub; /* public fields */ member in struct:__anon13264
132 dest->pub.buffer = (*cinfo->mem->access_virt_sarray)
134 dest->pub.buffer_height = 1;
136 dest->pub.put_pixel_rows = rle_put_pixel_rows;
159 dest->pub.buffer = (*cinfo->mem->access_virt_sarray)
187 header.rle_file = dest->pub.output_file;
216 progress->pub.pass_limit = cinfo->output_height;
217 progress->pub.pass_counter = 0;
218 (*progress->pub.progress_monitor) ((j_common_ptr) cinfo);
230 progress->pub.pass_counter++
    [all...]
rdrle.c 65 struct cjpeg_source_struct pub; /* public fields */ member in struct:_rle_source_struct
91 source->header.rle_file = source->pub.input_file;
176 source->pub.buffer_height = 1;
192 source->pub.buffer = (*cinfo->mem->access_virt_sarray)
214 dest_row = source->pub.buffer[0];
236 * we set source->pub.get_pixel_rows so that subsequent calls go straight to
264 progress->pub.pass_limit = cinfo->image_height;
265 progress->pub.pass_counter = 0;
266 (*progress->pub.progress_monitor) ((j_common_ptr) cinfo);
280 progress->pub.pass_counter++
    [all...]
wrtarga.c 44 struct djpeg_dest_struct pub; /* public fields */ member in struct:__anon13265
108 inptr = dest->pub.buffer[0];
116 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
129 inptr = dest->pub.buffer[0];
134 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
153 inptr = dest->pub.buffer[0];
158 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
178 dest->pub.put_pixel_rows = put_demapped_gray;
180 dest->pub.put_pixel_rows = put_gray_rows;
189 outfile = dest->pub.output_file
    [all...]
  /external/openssh/regress/
keygen-convert.sh 17 ${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
forcecommand.sh 9 cat $OBJ/rsa.pub >> $OBJ/authorized_keys_$USER
11 cat $OBJ/rsa1.pub >> $OBJ/authorized_keys_$USER
20 cat $OBJ/rsa.pub >> $OBJ/authorized_keys_$USER
22 cat $OBJ/rsa1.pub >> $OBJ/authorized_keys_$USER
cert-hostkey.sh 23 cat $OBJ/host_ca_key.pub
40 cp $OBJ/cert_host_key_${ktype}.pub $OBJ/cert_host_key_${ktype}_v00.pub
54 echo HostCertificate $OBJ/cert_host_key_${ktype}-cert.pub
71 cat $OBJ/host_ca_key.pub
74 cat $OBJ/cert_host_key_rsa.pub
78 cat $OBJ/cert_host_key_ecdsa.pub
82 cat $OBJ/cert_host_key_dsa.pub
85 cat $OBJ/cert_host_key_rsa_v00.pub
88 cat $OBJ/cert_host_key_dsa_v00.pub
    [all...]
ssh-com-client.sh 36 ${SSHKEYGEN} -e -f ${OBJ}/id.openssh > $OBJ/id.com.pub
41 rm -f ${OBJ}/$t ${OBJ}/$t.pub
49 ${SSHKEYGEN} -e -f ${OBJ}/rsa.pub > ${HK}.ssh-rsa.pub
50 ${SSHKEYGEN} -e -f ${OBJ}/dsa.pub > ${HK}.ssh-dss.pub
91 cp ${HK}.$key.pub ${HK}.pub
131 for i in ssh2_config random_seed dsa.pub dsa host.dsa \
132 id.list id.com id.com.pub id.openssh; d
    [all...]
  /external/openssh/contrib/caldera/
ssh-host-keygen 15 -f $keydir/ssh_host_key.pub ]; then
23 -f $keydir/ssh_host_rsa_key.pub ]; then
31 -f $keydir/ssh_host_dsa_key.pub ]; then
  /external/bison/lib/
stdio-impl.h 35 # 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/contrib/redhat/
sshd.init 10 # 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

Completed in 152 milliseconds

1 2 3 4 5 6 7 8 9