/third_party/json/tests/src/ |
H A D | unit-32bit.cpp | 111 std::vector<uint8_t> vM = {'[', '$', 'M', '#', '[', 'I', 0x00, 0x20, 'M', 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0xFF, ']'}; variable 115 CHECK_THROWS_WITH_AS(_ = json::from_bjdata(vM), "[json.exception.out_of_range.408] syntax error while parsing BJData size: integer value overflow", json::out_of_range&); 116 CHECK(json::from_bjdata(vM, true, false).is_discarded()); 125 std::vector<uint8_t> vM = {'[', '$', 'M', '#', '[', 'I', 0x00, 0x20, 'M', 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0xFF, ']'}; variable 131 CHECK_THROWS_WITH_AS(_ = json::from_bjdata(vM), "[json.exception.out_of_range.408] syntax error while parsing BJData size: integer value overflow", json::out_of_range&); 132 CHECK(json::from_bjdata(vM, true, false).is_discarded());
|
H A D | unit-bjdata.cpp | 2614 std::vector<uint8_t> vM = {'[', '$', 'M', '#', '[', 'I', 0x00, 0x20, 'M', 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0xFF, ']'}; variable 2646 CHECK_THROWS_WITH_AS(_ = json::from_bjdata(vM), "[json.exception.out_of_range.408] syntax error while parsing BJData size: excessive ndarray size caused overflow", json::out_of_range&); 2648 CHECK_THROWS_WITH_AS(_ = json::from_bjdata(vM), "[json.exception.out_of_range.408] syntax error while parsing BJData size: integer value overflow", json::out_of_range&); 2650 CHECK(json::from_bjdata(vM, true, false).is_discarded()); 2663 std::vector<uint8_t> vM = {'[', '$', 'M', '#', '[', 'I', 0x00, 0x20, 'M', 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0xFF, ']'}; variable 2672 CHECK_THROWS_WITH_AS(_ = json::from_bjdata(vM), "[json.exception.out_of_range.408] syntax error while parsing BJData size: integer value overflow", json::out_of_range&); 2673 CHECK(json::from_bjdata(vM, true, false).is_discarded()); 2767 std::vector<uint8_t> vM = {'[', '#', 'M'}; variable 2768 CHECK_THROWS_WITH_AS(_ = json::from_bjdata(vM), "[json.exception.parse_error.110] parse error at byte 4: syntax error while parsing BJData number: unexpected end of input", json::parse_error&); 2769 CHECK(json::from_bjdata(vM, tru 2787 std::vector<uint8_t> vM = {'[', '#', 'M'}; global() variable 2867 std::vector<uint8_t> vM = {'[', '$', 'i', '#', '[', '$', 'i', '#', 'M', 1, 0, 0, 0, 0, 0, 0, 0}; global() variable [all...] |
/third_party/mksh/ |
H A D | edit.c | 3487 #define vC 0x01 /* a valid command that isn't a vM, vE, vU */ 3488 #define vM 0x02 /* movement command (h, l, etc.) */ macro 3491 #define vU 0x10 /* an UN-undoable command (that isn't a vM) */ 3497 #define is_cmd(c) (classify[rtt2asc(c) & 0x7F] & (vM | vE | vC | vU)) 3498 #define is_move(c) (classify[rtt2asc(c) & 0x7F] & vM) 3510 vM, vC|vZ, 0, 0, vC|vU, 0, vC, 0, 3516 vM, 0, 0, vC, vM, vM, 0, 0, 3518 0, 0, vC, vC, vM, v [all...] |
/third_party/skia/src/gpu/ |
H A D | SurfaceContext.cpp | 938 float vM[20]; in asyncRescaleAndReadPixelsYUV420() local 939 std::fill_n(vM, 15, 0.f); in asyncRescaleAndReadPixelsYUV420() 940 std::copy_n(baseM + 10, 5, vM + 15); in asyncRescaleAndReadPixelsYUV420() 946 vM, in asyncRescaleAndReadPixelsYUV420()
|
/third_party/skia/src/gpu/geometry/ |
H A D | GrTriangulator.cpp | 226 SkPoint vM = {(float) (0.5 * v0.fX + 0.5 * v1.fX), in recursive_edge_intersect() local 230 v1 = vM; in recursive_edge_intersect() 233 v0 = vM; in recursive_edge_intersect()
|