HomeSort by relevance Sort by last modified time
    Searched defs:new_out (Results 1 - 2 of 2) sorted by null

  /external/libchrome/base/strings/
utf_string_conversions_regression_fuzzer.cc 17 base::string16 new_out; local
18 bool new_res = base::UTF8ToUTF16(src, src_len, &new_out);
24 CHECK(new_out == old_out);
29 std::wstring new_out; local
30 bool new_res = base::UTF8ToWide(src, src_len, &new_out);
36 CHECK(new_out == old_out);
46 std::string new_out; local
47 bool new_res = base::UTF16ToUTF8(src, src_len, &new_out);
53 CHECK(new_out == old_out);
58 std::wstring new_out; local
75 std::string new_out; local
87 base::string16 new_out; local
    [all...]
  /external/boringssl/src/crypto/fipsmodule/bn/
gcd.c 285 BIGNUM *new_out = NULL; local
287 new_out = BN_new();
288 if (new_out == NULL) {
292 out = new_out;
321 BN_free(new_out);

Completed in 256 milliseconds