Home
last modified time | relevance | path

Searched refs:j1 (Results 1 - 25 of 82) sorted by relevance

1234

/third_party/json/tests/src/
H A Dunit-algorithms.cpp240 json j1 = {2, 4, 6, 8}; variable
244 std::merge(j1.begin(), j1.end(), j2.begin(), j2.end(), std::back_inserter(j3));
251 json j1 = {1, 2, 3, 4, 5, 6, 7, 8}; variable
255 std::set_difference(j1.begin(), j1.end(), j2.begin(), j2.end(), std::back_inserter(j3));
261 json j1 = {1, 2, 3, 4, 5, 6, 7, 8}; variable
265 std::set_intersection(j1.begin(), j1.end(), j2.begin(), j2.end(), std::back_inserter(j3));
271 json j1 variable
281 json j1 = {2, 4, 6, 8}; global() variable
[all...]
H A Dfuzzer-parse_bjdata.cpp13 - j1 = from_bjdata(data)
14 - vec = to_bjdata(j1)
16 - assert(j1 == j2)
17 - vec2 = to_bjdata(j1, use_size = true, use_type = false)
19 - assert(j1 == j3)
20 - vec3 = to_bjdata(j1, use_size = true, use_type = true)
22 - assert(j1 == j4)
41 json j1 = json::from_bjdata(vec1); in LLVMFuzzerTestOneInput() local
46 std::vector<uint8_t> vec2 = json::to_bjdata(j1, false, false); in LLVMFuzzerTestOneInput()
49 std::vector<uint8_t> vec3 = json::to_bjdata(j1, tru in LLVMFuzzerTestOneInput()
[all...]
H A Dfuzzer-parse_ubjson.cpp13 - j1 = from_ubjson(data)
14 - vec = to_ubjson(j1)
16 - assert(j1 == j2)
17 - vec2 = to_ubjson(j1, use_size = true, use_type = false)
19 - assert(j1 == j3)
20 - vec3 = to_ubjson(j1, use_size = true, use_type = true)
22 - assert(j1 == j4)
41 json j1 = json::from_ubjson(vec1); in LLVMFuzzerTestOneInput() local
46 std::vector<uint8_t> vec2 = json::to_ubjson(j1, false, false); in LLVMFuzzerTestOneInput()
49 std::vector<uint8_t> vec3 = json::to_ubjson(j1, tru in LLVMFuzzerTestOneInput()
[all...]
H A Dunit-ordered_json.cpp61 json j1 {{"c", 1}, {"b", 2}, {"a", 3}};
63 j1.insert( j2.cbegin(), j2.cend() );
64 CHECK(j1.size() == 4);
65 CHECK(j1.dump() == "{\"a\":3,\"b\":2,\"c\":1,\"d\":42}");
H A Dfuzzer-parse_bson.cpp13 - j1 = from_bson(data)
14 - vec = to_bson(j1)
16 - assert(j1 == j2)
35 json j1 = json::from_bson(vec1); in LLVMFuzzerTestOneInput() local
37 if (j1.is_discarded()) in LLVMFuzzerTestOneInput()
45 std::vector<uint8_t> vec2 = json::to_bson(j1); in LLVMFuzzerTestOneInput()
H A Dunit-udt_macro.cpp361 nlohmann::json j1 = obj1; //via json string variable
362 std::string s = j1.dump();
372 nlohmann::json j1 = obj1; //via msgpack variable
373 std::vector<uint8_t> buf = nlohmann::json::to_msgpack(j1);
383 nlohmann::json j1 = obj1; //via bson variable
384 std::vector<uint8_t> buf = nlohmann::json::to_bson(j1);
394 nlohmann::json j1 = obj1; //via cbor variable
395 std::vector<uint8_t> buf = nlohmann::json::to_cbor(j1);
405 nlohmann::json j1 = obj1; //via ubjson variable
406 std::vector<uint8_t> buf = nlohmann::json::to_ubjson(j1);
[all...]
H A Dfuzzer-parse_cbor.cpp13 - j1 = from_cbor(data)
14 - vec = to_cbor(j1)
16 - assert(j1 == j2)
35 json j1 = json::from_cbor(vec1); in LLVMFuzzerTestOneInput() local
40 std::vector<uint8_t> vec2 = json::to_cbor(j1); in LLVMFuzzerTestOneInput()
H A Dfuzzer-parse_json.cpp13 - j1 = parse(data)
14 - s1 = serialize(j1)
35 json j1 = json::parse(data, data + size); in LLVMFuzzerTestOneInput() local
42 std::string s1 = j1.dump(); in LLVMFuzzerTestOneInput()
H A Dfuzzer-parse_msgpack.cpp13 - j1 = from_msgpack(data)
14 - vec = to_msgpack(j1)
16 - assert(j1 == j2)
35 json j1 = json::from_msgpack(vec1); in LLVMFuzzerTestOneInput() local
40 std::vector<uint8_t> vec2 = json::to_msgpack(j1); in LLVMFuzzerTestOneInput()
/third_party/node/deps/openssl/openssl/crypto/modes/asm/
H A Dghashv8-armx.pl423 my ($I0,$j1,$j2,$j3,
440 vrev64.8 $j1,$j1
447 vext.8 $I1,$j1,$j1,#8
464 veor $j1,$j1,$I1
466 vpmull.p64 $j1,$H34,$j1
470 veor $Ym,$Ym,$j1
[all...]
/third_party/openssl/crypto/modes/asm/
H A Dghashv8-armx.pl423 my ($I0,$j1,$j2,$j3,
440 vrev64.8 $j1,$j1
447 vext.8 $I1,$j1,$j1,#8
464 veor $j1,$j1,$I1
466 vpmull.p64 $j1,$H34,$j1
470 veor $Ym,$Ym,$j1
[all...]
/third_party/json/docs/examples/
H A Dinsert__range_object.cpp9 json j1 = {{"one", "eins"}, {"two", "zwei"}}; in main() local
13 std::cout << j1 << '\n'; in main() local
16 // insert range from j2 to j1 in main()
17 j1.insert(j2.begin(), j2.end()); in main()
20 std::cout << j1 << '\n'; in main() local
H A Dbasic_json__basic_json.cpp9 json j1 = {"one", "two", 3, 4.5, false}; in main() local
12 json j2(j1); in main()
15 std::cout << j1 << " = " << j2 << '\n'; in main()
16 std::cout << std::boolalpha << (j1 == j2) << '\n'; in main()
H A Dstd_swap.cpp10 json j1 = {{"one", 1}, {"two", 2}}; in main() local
13 std::cout << "j1 = " << j1 << " | j2 = " << j2 << '\n'; in main()
16 std::swap(j1, j2); in main()
18 std::cout << "j1 = " << j1 << " | j2 = " << j2 << std::endl; in main()
H A Dswap__reference.cpp9 json j1 = {1, 2, 3, 4, 5}; in main() local
13 j1.swap(j2); in main()
16 std::cout << "j1 = " << j1 << '\n'; in main() local
H A Dbasic_json__nullptr_t.cpp9 json j1; in main() local
15 std::cout << j1 << '\n' << j2 << '\n'; in main()
/third_party/cups-filters/filter/foomatic-rip/
H A Drenderer.c210 char *j1, *j2, *p1, *p2; in jcl_keywords_equal() local
212 j1 = strstr(jclline1, jclstr); in jcl_keywords_equal()
213 if (!j1) return 0; in jcl_keywords_equal()
214 if (!(p1 = strchr(skip_whitespace(j1), '='))) in jcl_keywords_equal()
215 p1 = j1 + strlen(j1); in jcl_keywords_equal()
217 while (p1 > j1 && isspace(*p1)) in jcl_keywords_equal()
228 if (p1 - j1 != p2 - j2) return 0; in jcl_keywords_equal()
229 return strncmp(j1, j2, p1 - j1 in jcl_keywords_equal()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DemitCompoundExponentiationAssignmentWithIndexingOnLHS1.js15 var j0 = 0, j1 = 1;
16 array3[j0++] **= array3[j1++] **= array3[j0++] **= 1;
30 var j0 = 0, j1 = 1;
31 (_o = array3)[_p = j0++] = Math.pow(_o[_p], (_l = array3)[_m = j1++] = Math.pow(_l[_m], (_j = array3)[_k = j0++] = Math.pow(_j[_k], 1)));
H A DarityAndOrderCompatibility01.js19 var j1: [number, number, number] = x; variable
46 var j1 = x; variable
/third_party/python/Lib/
H A Ddifflib.py162 # a list of (tag, i1, i2, j1, j2) tuples, where tag is
164 # 'replace' a[i1:i2] should be replaced by b[j1:j2]
166 # 'insert' b[j1:j2] should be inserted
167 # 'equal' a[i1:i2] == b[j1:j2]
469 i1 = j1 = k1 = 0
472 # Is this block adjacent to i1, j1, k1?
473 if i1 + k1 == i2 and j1 + k1 == j2:
483 non_adjacent.append((i1, j1, k1))
484 i1, j1, k1 = i2, j2, k2
486 non_adjacent.append((i1, j1, k
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/
H A Dmath_j1_test.cpp18 EXPECT_DOUBLE_EQ(0.0, j1(0.0)); in HWTEST_F()
19 EXPECT_DOUBLE_EQ(0.44005058574493355, j1(1.0)); in HWTEST_F()
/third_party/ltp/testcases/open_posix_testsuite/
H A DMakefile78 @$(BUILD_MAKE) -C conformance -j1 all
90 @$(BUILD_MAKE) -C functional -j1 all
102 @$(BUILD_MAKE) -C stress -j1 all
/third_party/FreeBSD/crypto/openssh/openbsd-compat/
H A Dchacha_private.h96 u32 j0, j1, j2, j3, j4, j5, j6, j7, j8, j9, j10, j11, j12, j13, j14, j15; in chacha_encrypt_bytes() local
104 j1 = x->input[1]; in chacha_encrypt_bytes()
128 x1 = j1; in chacha_encrypt_bytes()
154 x1 = PLUS(x1,j1); in chacha_encrypt_bytes()
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Djn.c22 * for n=1, j1(x) is called,
24 * from values of j0(x) and j1(x).
67 return j1(x); in jn()
99 b = j1(x); in jn()
204 w = j1(x); in jn()
/third_party/musl/src/math/
H A Djn.c22 * for n=1, j1(x) is called,
24 * from values of j0(x) and j1(x).
67 return j1(x); in jn()
99 b = j1(x); in jn()
204 w = j1(x); in jn()

Completed in 10 milliseconds

1234