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

1 2 3 4 5 6 7 8 910

  /external/clang/test/Modules/Inputs/private3/
public.h 6 void pub() { function
  /external/libjpeg-turbo/
jdmaster.h 15 struct jpeg_decomp_master pub; /* public fields */ member in struct:__anon25038
wrppm.h 15 struct djpeg_dest_struct pub; /* public fields */ member in struct:__anon25072
wrgif.c 51 struct djpeg_dest_struct pub; /* public fields */ member in struct:__anon25070
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.output_file)
    [all...]
wrppm.c 68 struct djpeg_dest_struct pub; /* public fields */ member in struct:__anon25071
94 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
112 ptr = dest->pub.buffer[0];
117 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
139 ptr = dest->pub.buffer[0];
147 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
161 ptr = dest->pub.buffer[0];
166 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
183 fprintf(dest->pub.output_file, "P5\n%ld %ld\n%d\n",
189 fprintf(dest->pub.output_file, "P6\n%ld %ld\n%d\n"
    [all...]
rdppm.c 65 struct cjpeg_source_struct pub; /* public fields */ member in struct:__anon25059
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.input_file, source->iobuffer, source->buffer_width)
    [all...]
cdjpeg.c 34 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;
jdatadst.c 35 struct jpeg_destination_mgr pub; /* public fields */ member in struct:__anon25022
50 struct jpeg_destination_mgr pub; /* public fields */ member in struct:__anon25023
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.free_in_buffer)
    [all...]
wrrle.c 57 struct djpeg_dest_struct pub; /* public fields */ member in struct:__anon25073
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.pass_counter++
    [all...]
wrtarga.c 38 struct djpeg_dest_struct pub; /* public fields */ member in struct:__anon25074
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.output_file
    [all...]
rdrle.c 68 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.pass_counter++
    [all...]
jcstest.c 47 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;
jdsample.h 23 struct jpeg_upsampler pub; /* public fields */ member in struct:__anon25043
jdatasrc.c 30 struct jpeg_source_mgr pub; /* public fields */ member in struct:__anon25024
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.next_input_byte = NULL; /* until buffer loaded *
    [all...]
jdatadst-tj.c 38 struct jpeg_destination_mgr pub; /* public fields */ member in struct:__anon25021
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;
  /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...]
  /prebuilts/go/darwin-x86/src/runtime/
mknacl.sh 6 cat /Users/rsc/pub/native_client/src/trusted/service_runtime/include/bits/nacl_syscalls.h |
  /prebuilts/go/linux-x86/src/runtime/
mknacl.sh 6 cat /Users/rsc/pub/native_client/src/trusted/service_runtime/include/bits/nacl_syscalls.h |
  /external/tensorflow/tensorflow/core/lib/jpeg/
jpeg_handle.cc 48 dest->pub.next_output_byte = dest->buffer;
49 dest->pub.free_in_buffer = dest->bufsize;
63 dest->pub.next_output_byte = dest->buffer;
64 dest->pub.free_in_buffer = dest->bufsize;
71 VLOG(1) << "Writing " << dest->bufsize - dest->pub.free_in_buffer << " bytes";
74 dest->bufsize - dest->pub.free_in_buffer);
77 dest->datacount = dest->bufsize - dest->pub.free_in_buffer;
99 dest->pub.init_destination = MemInitDestination;
100 dest->pub.empty_output_buffer = MemEmptyOutputBuffer;
101 dest->pub.term_destination = MemTermDestination
    [all...]
jpeg_handle.h 32 struct jpeg_destination_mgr pub; member in struct:tensorflow::jpeg::__anon40009
40 struct jpeg_source_mgr pub; member in struct:tensorflow::jpeg::__anon40010
  /external/clang/test/CodeGenCXX/
debug-info-access.cpp 16 // CHECK-DAG: !DISubprogram(name: "pub",{{.*}} line: [[@LINE+1]],{{.*}} flags: DIFlagPublic | DIFlagPrototyped,
17 void pub();
  /device/google/contexthub/util/
nanohub_os_update_prepare.sh 33 pub=$2
39 nanoapp_sign -s -e ${priv} -m ${pub} -r ${raw_image}.oshdr nanohub.kernel.signed
  /external/honggfuzz/examples/libjpeg/
persistent-jpeg.c 23 struct jpeg_error_mgr pub; member in struct:jpegErrorManager
44 cinfo.err = jpeg_std_error(&jerr.pub);
45 jerr.pub.error_exit = jpegErrorExit;
47 jerr.pub.addon_message_table = cdjpeg_message_table;
48 jerr.pub.first_addon_message = JMSG_FIRSTADDONCODE;
49 jerr.pub.last_addon_message = JMSG_LASTADDONCODE;
  /external/wycheproof/java/com/google/security/wycheproof/testcases/
RsaSignatureTest.java 1086 RSAPublicKey pub = (RSAPublicKey) keyPair.getPublic(); local
1132 PublicKey pub = kf.generatePublic(key); local
1196 PublicKey pub = kf.generatePublic(key); local
    [all...]
  /external/boringssl/src/crypto/x509/
x_pubkey.c 337 int X509_PUBKEY_set0_param(X509_PUBKEY *pub, const ASN1_OBJECT *aobj,
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->algor->algorithm
    [all...]

Completed in 814 milliseconds

1 2 3 4 5 6 7 8 910