/external/openssl/apps/ |
cms.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 73 static void receipt_request_print(BIO *out, CMS_ContentInfo *cms); 120 BIO *in = NULL, *out = NULL, *indata = NULL, *rctin = NULL; local 505 else if (!strcmp (*args, "-out")) 636 BIO_printf (bio_err, "-out file output file\n"); 871 if (!(out = BIO_new_file(outfile, outmode))) 880 out = BIO_new_fp(stdout, BIO_NOCLOSE); 884 out = BIO_push(tmpbio, out); 1079 if (!CMS_decrypt(cms, NULL, NULL, indata, out, flags) [all...] |
ocsp.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 102 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req, 146 BIO *out = NULL; local 181 if (!strcmp(*args, "-out")) 586 BIO_printf (bio_err, "-out file output filename\n"); 634 if(outfile) out = BIO_new_file(outfile, "w"); 635 else out = BIO_new_fp(stdout, BIO_NOCLOSE); 637 if(!out) 745 if (req_text && req) OCSP_REQUEST_print(out, req, 0); 831 BIO_printf(out, "Responder Error: %s (%d)\n" [all...] |
/external/openssl/crypto/des/ |
des.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 97 int uufread(unsigned char *out,int size,unsigned int num,FILE *fp); 98 int uuencode(unsigned char *in,int num,unsigned char *out); 99 int uudecode(unsigned char *in,int num,unsigned char *out); 133 char *in=NULL,*out=NULL; local 229 else if (out == NULL) 230 out=argv[i]; 264 (out != NULL) && 267 (stat(out,&outs) != -1) & [all...] |
/external/openssl/crypto/evp/ |
e_aes.c | 45 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 92 unsigned char *out, size_t length, 117 void vpaes_encrypt(const unsigned char *in, unsigned char *out, 119 void vpaes_decrypt(const unsigned char *in, unsigned char *out, 123 unsigned char *out, 129 void bsaes_cbc_encrypt(const unsigned char *in, unsigned char *out, 132 void bsaes_ctr32_encrypt_blocks(const unsigned char *in, unsigned char *out, 135 void bsaes_xts_encrypt(const unsigned char *inp, unsigned char *out, 138 void bsaes_xts_decrypt(const unsigned char *inp, unsigned char *out, 143 void AES_ctr32_encrypt(const unsigned char *in, unsigned char *out, 878 EVP_CIPHER_CTX *out = ptr; local 1152 EVP_CIPHER_CTX *out = ptr; local 1353 EVP_CIPHER_CTX *out = ptr; local [all...] |
/external/oprofile/gui/ |
oprof_start.cpp | 372 ofstream out(name.c_str()); 373 if (!out) { 627 error << "buffer size out of range: " << temp 642 error << "buffer watershed out of range: " << temp 657 error << "cpu buffer size out of range: " << temp 671 error << "note table size out of range: " << temp 685 error << "callgraph depth out of range: " << temp 869 ostringstream out; local 871 out << "event " << descr.name << " count of range: " 877 QMessageBox::warning(this, 0, out.str().c_str()) 884 ostringstream out; local [all...] |
/external/oprofile/libpp/ |
arrange_profiles.cpp | 323 // If we're splitting on event anyway, clear out the 515 ostringstream out; local 516 out << "sanitize_profile_sample_files(): sample file " 520 throw op_fatal_error(out.str()); 696 ostream & operator<<(ostream & out, profile_sample_files const & sample_files) 698 out << "sample_filename: " << sample_files.sample_filename << endl; 699 out << "callgraph filenames:\n"; 701 ostream_iterator<string>(out, "\n")); 702 return out; 705 ostream & operator<<(ostream & out, profile_dep_set const & pdep_set [all...] |
format_output.cpp | 42 ostringstream out; local 49 out << filename << ":" << floc.linenr; 51 out << "(no location information)"; 53 return out.str(); 58 ostringstream out; local 61 out << hex << setw(width) << setfill('0') << vma; 63 return out.str(); 159 void formatter::output_header(ostream & out) 168 padding = output_header_field(out, ff_vma, padding); 173 padding = output_header_field(out, 304 ostringstream out; local [all...] |
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
cmsgamma.c | 21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 587 cmsFloat32Number Out; 592 g ->SegInterp[i] -> Interpolation.LerpFloat(&R1, &Out, g ->SegInterp[i]); 594 return Out; 839 cmsToneCurve* out = NULL; local 864 out = cmsBuildTabulatedToneCurveFloat(ContextID, nResultingPoints, Res); 871 return out; 927 cmsToneCurve *out; local 946 out = cmsBuildTabulatedToneCurve16(InCurve ->InterpParams->ContextID, nResultSamples, NULL); 947 if (out == NULL 1237 cmsUInt16Number out; local [all...] |
/external/proguard/src/proguard/optimize/evaluation/ |
PartialEvaluator.java | 194 System.out.println("Evaluation results:"); 201 System.out.println("Branch target from ["+branchOriginValues[offset]+"]:"); 204 System.out.println(" Vars: "+variablesBefore[offset]); 205 System.out.println(" Stack: "+stacksBefore[offset]); 211 System.out.println(instruction.toString(offset)); 218 System.out.println(" is to be initialized at ["+initializationOffset+"]"); 224 System.out.println(" has overall been branching to "+branchTargets); 227 System.out.println(" Vars: "+variablesAfter[offset]); 228 System.out.println(" Stack: "+stacksAfter[offset]); 246 System.out.println() [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
Extension.java | 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 241 protected void writeSingularData(Object value, CodedOutputByteBufferNano out) { 244 out.writeRawVarint32(tag); 249 out.writeGroupNoTag(groupValue); 251 out.writeTag(fieldNumber, WireFormatNano.WIRETYPE_END_GROUP); 255 out.writeMessageNoTag(messageValue);
|
/external/qemu/distrib/libsparse/src/ |
output_file.c | 71 int (*write_data_chunk)(struct output_file *out, unsigned int len, 73 int (*write_fill_chunk)(struct output_file *out, unsigned int len, 75 int (*write_skip_chunk)(struct output_file *out, int64_t len); 76 int (*write_end_chunk)(struct output_file *out); 94 struct output_file out; member in struct:output_file_gz 99 container_of((_o), struct output_file_gz, out) 102 struct output_file out; member in struct:output_file_normal 107 container_of((_o), struct output_file_normal, out) 110 struct output_file out; member in struct:output_file_callback 116 container_of((_o), struct output_file_callback, out) 660 struct output_file *out; local [all...] |
/external/regex-re2/re2/ |
prog.h | 89 void InitAlt(uint32 out, uint32 out1); 90 void InitByteRange(int lo, int hi, int foldcase, uint32 out); 91 void InitCapture(int cap, uint32 out); 92 void InitEmptyWidth(EmptyOp empty, uint32 out); 94 void InitNop(uint32 out); 100 int out() { return out_opcode_>>3; } function in class:re2::Prog::Inst 110 return p->inst(out())->opcode() == kInstByteRange; 130 out_opcode_ = (out()<<3) | opcode; 133 void set_out(int out) { 134 out_opcode_ = (out<<3) | opcode() [all...] |
re2.cc | 380 string out; local 386 out.append(p, vec[0].begin() - p); 390 out.append(p, 1); 394 re.Rewrite(&out, rewrite, vec, nvec); 404 out.append(p, ep - p); 405 swap(out, *str); 412 string *out) { 421 out->clear(); 422 return re.Rewrite(out, rewrite, vec, nvec); 547 // Use DFAs to find exact location of match, filter out non-matches [all...] |
/external/speex/libspeex/ |
nb_celp.c | 28 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 1103 spx_word16_t *out = (spx_word16_t*)vout; local [all...] |
/external/valgrind/main/coregrind/ |
m_options.c | 145 HChar* out; local 172 out = VG_(malloc)( "options.efn.1", len ); 177 out = VG_(realloc)("options.efn.2(multiple)", out, len); \ 183 out[j++] = format[i++]; 191 out[j++] = format[i++]; 198 j += VG_(sprintf)(&out[j], "%d", pid); 237 j += VG_(sprintf)(&out[j], "%s", qual); 252 out[j++] = 0; 254 // If 'out' is not an absolute path name, prefix it with the startup dir [all...] |
/external/wpa_supplicant_8/src/crypto/ |
tls_gnutls.c | 789 u8 *out, size_t out_len) 796 server_random_first, 0, NULL, out_len, (char *) out); 999 goto out; 1026 out: 1068 struct wpabuf *out; local 1087 out = wpabuf_alloc((wpabuf_len(in_data) + 500) * 3); 1088 if (out == NULL) 1091 res = gnutls_record_recv(conn->session, wpabuf_mhead(out), 1092 wpabuf_size(out)); 1096 wpabuf_free(out); [all...] |
/external/zopfli/src/zopfli/ |
deflate.c | 39 unsigned char* bp, unsigned char** out, size_t* outsize) { 40 if (*bp == 0) ZOPFLI_APPEND_DATA(0, out, outsize); 41 (*out)[*outsize - 1] |= bit << *bp; 46 unsigned char* bp, unsigned char** out, size_t* outsize) { 51 if (*bp == 0) ZOPFLI_APPEND_DATA(0, out, outsize); 52 (*out)[*outsize - 1] |= bit << *bp; 62 unsigned char* bp, unsigned char** out, 68 if (*bp == 0) ZOPFLI_APPEND_DATA(0, out, outsize); 69 (*out)[*outsize - 1] |= bit << *bp; 102 Encodes the Huffman tree and returns how many bits its encoding takes. If out 325 bp, out, outsize); local 329 bp, out, outsize); local [all...] |
/external/zopfli/src/zopflipng/lodepng/ |
lodepng_util.cpp | 360 void inflate(std::vector<unsigned char>& out, const std::vector<unsigned char>& in, size_t inpos = 0) 375 else if(BTYPE == 0) inflateNoCompression(out, &in[inpos], bp, pos, in.size()); 376 else inflateHuffmanBlock(out, &in[inpos], bp, pos, in.size(), BTYPE); 480 void inflateHuffmanBlock(std::vector<unsigned char>& out, 500 out.push_back((unsigned char)(code)); 517 out.push_back(out[back++]); 533 void inflateNoCompression(std::vector<unsigned char>& out, 544 out.push_back(in[p++]); //read LEN bytes of literal data 550 int decompress(std::vector<unsigned char>& out, const std::vector<unsigned char>& in) //returns error valu 607 std::vector<unsigned char> out; \/\/now the out buffer will be filled local [all...] |
/frameworks/av/media/libstagefright/ |
MPEG2TSWriter.cpp | 193 sp<ABuffer> out = new ABuffer(1024); local 194 out->setRange(0, 0); 212 CHECK_LE(out->size() + 4 + length, out->capacity()); 213 memcpy(out->data() + out->size(), "\x00\x00\x00\x01", 4); 214 memcpy(out->data() + out->size() + 4, ptr, length); 215 out->setRange(0, out->size() + length + 4) [all...] |
avc_utils.cpp | 346 uint8_t *out = csd->data(); local 348 *out++ = 0x01; // configurationVersion 349 memcpy(out, seqParamSet->data() + 1, 3); // profile/level... 351 uint8_t profile = out[0]; 352 uint8_t level = out[2]; 354 out += 3; 355 *out++ = (0x3f << 2) | 1; // lengthSize == 2 bytes 356 *out++ = 0xe0 | 1; 358 *out++ = seqParamSet->size() >> 8; 359 *out++ = seqParamSet->size() & 0xff [all...] |
/frameworks/av/media/libstagefright/rtsp/ |
ARTSPConnection.cpp | 374 // Timed out. Not yet connected. 923 static void H(const AString &s, AString *out) { 924 out->clear(); 940 out->append(&nibble, 1); 948 out->append(&nibble, 1); 980 AString out; local 981 encodeBase64(tmp.c_str(), tmp.size(), &out); 985 fragment.append(out);
|
/frameworks/av/services/audioflinger/ |
AudioResamplerSinc.cpp | 397 int32_t out; local 399 asm( "smultb %[out], %[in], %[vRL] \n" 400 : [out]"=r"(out) 404 asm( "smultt %[out], %[in], %[vRL] \n" 405 : [out]"=r"(out) 409 return out; 420 int32_t out; local 421 asm( "smlawb %[out], %[v], %[in], %[a] \n 435 int32_t out; local [all...] |
/frameworks/base/core/java/android/app/backup/ |
BackupAgent.java | 382 // Now figure out which well-defined tree the file is placed in, working from 526 // Parse out the semantic domains into the correct physical location 553 // Now that we've figured out where the data goes, send it on its way 571 // anyway, so just use the default "copy the data out" implementation 638 // we'll time out anyway, so we're safe 668 // we'll time out anyway, so we're safe 700 FileOutputStream out = new FileOutputStream(data.getFileDescriptor()); local 702 out.write(buf); 711 // we'll time out anyway, so we're safe [all...] |
/frameworks/base/core/java/android/content/ |
ContentProviderNative.java | 163 Uri out = insert(callingPkg, url, values); local 165 Uri.writeToParcel(reply, out); 341 Uri out = canonicalize(callingPkg, url); local 343 Uri.writeToParcel(reply, out); 353 Uri out = uncanonicalize(callingPkg, url); local 355 Uri.writeToParcel(reply, out); 455 String out = reply.readString(); local 456 return out; 477 Uri out = Uri.CREATOR.createFromParcel(reply); local 478 return out; 667 String[] out = reply.createStringArray(); local 734 Uri out = Uri.CREATOR.createFromParcel(reply); local 754 Uri out = Uri.CREATOR.createFromParcel(reply); local [all...] |
/frameworks/base/core/java/android/ddm/ |
DdmHandleViewDebug.java | 184 ByteBuffer out = ByteBuffer.allocate(responseLength); local 185 out.order(ChunkHandler.CHUNK_ORDER); 187 out.putInt(windowNames.length); 189 out.putInt(name.length()); 190 putString(out, name); 193 return new Chunk(CHUNK_VULW, out);
|