/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/ |
BCRSAPublicKey.java | 162 ObjectOutputStream out) 165 out.defaultWriteObject(); 169 out.writeObject(algorithmIdentifier.getEncoded());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ |
PKCS12BagAttributeCarrierImpl.java | 76 public void writeObject(ObjectOutputStream out) 81 out.writeObject(new Hashtable()); 82 out.writeObject(new Vector()); 99 out.writeObject(bOut.toByteArray());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/ |
Base64Encoder.java | 59 OutputStream out) 72 out.write(encodingTable[(a1 >>> 2) & 0x3f]); 73 out.write(encodingTable[((a1 << 4) | (a2 >>> 4)) & 0x3f]); 74 out.write(encodingTable[((a2 << 2) | (a3 >>> 6)) & 0x3f]); 75 out.write(encodingTable[a3 & 0x3f]); 93 out.write(encodingTable[b1]); 94 out.write(encodingTable[b2]); 95 out.write(padding); 96 out.write(padding); 106 out.write(encodingTable[b1]) [all...] |
/external/chromium_org/chrome/browser/history/android/ |
sqlite_cursor_unittest.cc | 224 std::vector<uint8> out; local 225 base::android::JavaByteArrayToByteVector(env, data.obj(), &out); 226 EXPECT_EQ(data_bytes->data().size(), out.size()); 227 EXPECT_EQ(data_bytes->data()[0], out[0]);
|
/external/chromium_org/chrome/browser/search/suggestions/ |
suggestions_source.cc | 46 std::vector<std::string> out; local 47 out.push_back(kHtmlHeader); 48 out.push_back(kHtmlBody); 49 out.push_back("<h1>Suggestions</h1>\n<ul>"); 77 out.push_back(line); 79 out.push_back("</ul>"); 80 out.push_back(kHtmlFooter); 81 *output = JoinString(out, ""); 87 std::vector<std::string> out; local 88 out.push_back(kHtmlHeader) [all...] |
/external/chromium_org/chrome/installer/test/ |
alternate_version_generator_main.cc | 30 const char kOut[] = "out"; 82 L" --out=OUT_PATH Path to output file. Default value is\n" 108 // Gets the path to the output file, putting the result in |out|. 109 void GetOutPath(const CommandLine& cmd_line, base::FilePath* out) { 110 DCHECK(out); 113 *out = base::FilePath(kDefaultOutPath); 115 *out = result; 149 base::FilePath out; local 150 GetOutPath(*cmd_line, &out); 151 if (!cmd_line->HasSwitch(switches::kForce) && base::PathExists(out)) { [all...] |
/external/chromium_org/courgette/ |
streams_unittest.cc | 49 courgette::SinkStreamSet out; local 50 out.Init(4); 54 EXPECT_TRUE(out.stream(3)->WriteVarint32(kValue1)); 58 EXPECT_TRUE(out.CopyTo(&collected)); 79 courgette::SinkStreamSet out; local 80 out.Init(kNumberOfStreams); 93 EXPECT_TRUE(out.stream(id)->WriteVarint32(datum)); 98 EXPECT_TRUE(out.CopyTo(&collected)); 119 courgette::SinkStream out; local 132 EXPECT_TRUE(out.WriteVarint32Signed(basis + delta)) 154 courgette::SinkStreamSet out; local [all...] |
/external/chromium_org/extensions/common/manifest_handlers/ |
externally_connectable.cc | 48 std::vector<T> out = in; local 49 std::sort(out.begin(), out.end()); 50 return out;
|
/external/chromium_org/media/filters/ |
h264_to_annex_b_bitstream_converter.cc | 136 uint8* out = output; local 140 if (!WriteParamSet(avc_config.sps_list[i], &out, &out_size)) 145 if (!WriteParamSet(avc_config.pps_list[i], &out, &out_size)) 151 *output_size = out - output; 261 uint8** out, 269 uint8* start = *out; 280 *out = buf;
|
/external/chromium_org/native_client_sdk/src/examples/tutorial/debugging/ |
debugging.c | 89 char* out = (char*)malloc(size); local 90 strcpy(out, kTrcPrefix); 91 strcat(out, json); 93 PostMessage(out); 94 free(out);
|
/external/chromium_org/net/base/ |
escape_unittest.cc | 90 std::string out = EscapeQueryParamValue(in, true); local 92 EXPECT_EQ(out, std::string("%00")); 95 EXPECT_EQ(out, std::string("+")); 99 EXPECT_EQ(expected, out); 102 EXPECT_EQ(out, in);
|
/external/chromium_org/net/cert/ |
crl_set_storage.cc | 18 // Decompress zlib decompressed |in| into |out|. |out_len| is the number of 19 // bytes at |out| and must be exactly equal to the size of the decompressed 21 static bool DecompressZlib(uint8* out, int out_len, base::StringPiece in) { 27 z.next_out = reinterpret_cast<Bytef*>(out); 520 char* out = WriteInto(&ret, len + 1 /* to include final NUL */); local 522 out[off++] = header.size(); 523 out[off++] = header.size() >> 8; 524 memcpy(out + off, header.data(), header.size()); 529 memcpy(out + off, i->first.data(), i->first.size()); 532 memcpy(out + off, &num_serials, sizeof(num_serials)) [all...] |
/external/chromium_org/net/dns/ |
dns_response_unittest.cc | 49 std::string out; local 53 EXPECT_EQ(0x11u, parser.ReadName(data + 0x00, &out)); 54 EXPECT_EQ("foo.example.com", out); 56 out.clear(); 57 EXPECT_EQ(0x1u, parser.ReadName(data + 0x10, &out)); 58 EXPECT_EQ("", out); 59 out.clear(); 60 EXPECT_EQ(0x6u, parser.ReadName(data + 0x11, &out)); 61 EXPECT_EQ("bar.example.com", out); 62 out.clear() 96 std::string out; local 127 std::string out; local [all...] |
/external/chromium_org/ppapi/examples/crxfs/ |
crxfs.cc | 122 std::ostringstream out; local 123 out << name << " failed, pp_error: " << rv; 124 PostMessage(pp::Var(out.str()));
|
/external/chromium_org/remoting/base/ |
compound_buffer_unittest.cc | 111 uint8* out = reinterpret_cast<uint8*>(data); local 124 memcpy(out, in, out_size); 131 memcpy(out, in, in_size); 132 out += in_size;
|
util.cc | 219 std::string out; local 220 out.resize(2 * in.size()); 221 char* out_p_begin = &out[0]; 232 out.resize(out_p - out_p_begin); 233 return out; 237 std::string out; local 238 out.resize(in.size()); 239 char* out_p_begin = &out[0]; 252 out.resize(out_p - out_p_begin); 253 return out; [all...] |
/external/chromium_org/sdch/open-vcdiff/src/ |
encodetable.cc | 124 OutputStringInterface* out, 127 out->append(reinterpret_cast<const char*>(&kHeaderStandardFormat), 130 out->append(reinterpret_cast<const char*>(&kHeaderExtendedFormat), 283 void VCDiffCodeTableWriter::AppendSizeToString(size_t size, string* out) { 284 VarintBE<int32_t>::AppendToString(static_cast<int32_t>(size), out); local 289 OutputStringInterface* out) { 290 VarintBE<int32_t>::AppendToOutputString(static_cast<int32_t>(size), out); local 312 void VCDiffCodeTableWriter::Output(OutputStringInterface* out) { 326 out->ReserveAdditionalBytes(delta_window_size); 330 out->push_back(VCD_SOURCE | VCD_CHECKSUM) 354 out); local [all...] |
/external/chromium_org/third_party/boringssl/src/crypto/cipher/ |
aead_test.c | 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 77 unsigned char out[BUF_MAX + EVP_AEAD_MAX_OVERHEAD], out2[BUF_MAX]; local 85 if (!EVP_AEAD_CTX_seal(&ctx, out, &ciphertext_len, sizeof(out), bufs[NONCE], 98 if (memcmp(out, bufs[CT], lengths[CT]) != 0) { 103 if (memcmp(out + lengths[CT], bufs[TAG], lengths[TAG]) != 0) { 118 lengths[NONCE], out, ciphertext_len, bufs[AD], 139 out[0] ^= 0x80; 141 lengths[NONCE], out, ciphertext_len, bufs[AD],
|
cipher_test.c | 34 * The word 'cryptographic' can be left out if the rouines from the library 49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 130 uint8_t out[4096]; local 184 if (!EVP_EncryptUpdate(&ctx, out, &outl, plaintext, pn)) { 189 if (!EVP_EncryptFinal_ex(&ctx, out + outl, &outl2)) { 201 if (memcmp(out, ciphertext, cn)) { 203 hexdump(stderr, "Got", out, cn); 260 if (!EVP_DecryptUpdate(&ctx, out, &outl, ciphertext, cn)) { 266 if (!EVP_DecryptFinal_ex(&ctx, out + outl, &outl2)) { 278 if (memcmp(out, plaintext, pn)) [all...] |
/external/chromium_org/third_party/boringssl/src/crypto/des/ |
des.c | 34 * The word 'cryptographic' can be left out if the rouines from the library 49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 364 * <71755.204@CompuServe.COM> for pointing this out. */ 429 * pointing this out. */ 522 uint8_t *out = out_block->bytes; local 530 l2c(l, out); 532 l2c(l, out); 536 void DES_ncbc_encrypt(const uint8_t *in, uint8_t *out, size_t len, 558 l2c(tout0, out); 560 l2c(tout1, out); [all...] |
/external/chromium_org/third_party/boringssl/src/crypto/modes/ |
gcm_test.c | 45 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 240 static int from_hex(uint8_t *out, char in) { 242 *out = in - '0'; 246 *out = in - 'a' + 10; 250 *out = in - 'A' + 10; 257 static int decode_hex(uint8_t **out, size_t *out_len, const char *in, 263 *out = NULL; 291 *out = buf; 317 *nonce = NULL, *ciphertext = NULL, *tag = NULL, *out = NULL; local 331 goto out; [all...] |
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/ |
BrailleDisplayProperties.java | 106 public void writeToParcel(Parcel out, int flags) { 107 out.writeInt(mNumTextCells); 108 out.writeInt(mNumStatusCells); 109 out.writeTypedArray(mKeyBindings, flags); 110 out.writeInt(mFriendlyKeyNames.size()); 112 out.writeString(entry.getKey()); 113 out.writeString(entry.getValue());
|
/external/chromium_org/third_party/icu/source/samples/layout/ |
GDIFontInstance.cpp | 59 le_int32 out = 0; local 71 ttGlyphs[out] = ttGlyph; 72 dx[out] = (le_int32) (positions[g * 2 + 2] - positions[g * 2]); 73 ps[out * 2] = positions[g * 2]; 74 ps[out * 2 + 1] = positions[g * 2 + 1]; 75 out += 1; 85 while (dyEnd < out) { 89 while (dyEnd < out && yOffset == ps[dyEnd * 2 + 1]) {
|
/external/chromium_org/third_party/icu/source/samples/uresb/ |
uresb.c | 18 * This program prints out resource bundles - example for 59 void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, UErrorCode *status); 60 void printIndent(UFILE *out, int32_t indent); 61 void printHex(UFILE *out, const int8_t *what); 80 UFILE *out = NULL; local 146 out = u_finit(stdout, locale, encoding); 152 u_fprintf(out, "uresb: processing file \"%s\" in path \"%s\"\n", arg, resPath); 155 u_fprintf(out, "%s\n", arg); 156 printOutBundle(out, bundle, 0, &status); 166 u_fclose(out); [all...] |
/external/chromium_org/third_party/icu/source/samples/ustring/ |
ustring.cpp | 37 static char out[200]; local 47 ucnv_fromUChars(cnv, out, sizeof(out), s, length, &errorCode); 53 printf("%s%s {", announce, out); 77 static char out[200]; local 88 out[s.extract(0, 99, out)]=0; 89 printf("%s%s {", announce, out); 409 static char out[100]; variable
|