/third_party/skia/tests/ |
H A D | JSONTest.cpp | 171 const auto& vec = v.as<T>(); in check_vector() local 172 REPORTER_ASSERT(reporter, &vec == cast_t); in check_vector() 173 REPORTER_ASSERT(reporter, vec.size() == expected_size); in check_vector() 174 REPORTER_ASSERT(reporter, vec.begin() != nullptr); in check_vector() 175 REPORTER_ASSERT(reporter, vec.end() == vec.begin() + expected_size); in check_vector()
|
/third_party/skia/third_party/externals/freetype/src/cid/ |
H A D | cidgload.c | 481 FT_Vector* vec = cur->points; in FT_LOCAL_DEF() local 488 for ( n = cur->n_points; n > 0; n--, vec++ ) in FT_LOCAL_DEF() 490 vec->x = FT_MulFix( vec->x, x_scale ); in FT_LOCAL_DEF() 491 vec->y = FT_MulFix( vec->y, y_scale ); in FT_LOCAL_DEF()
|
/third_party/skia/third_party/externals/freetype/src/pfr/ |
H A D | pfrobjs.c | 437 FT_Vector* vec = outline->points; in FT_LOCAL_DEF() local 441 for ( n = 0; n < outline->n_points; n++, vec++ ) in FT_LOCAL_DEF() 443 vec->x = FT_MulFix( vec->x, x_scale ); in FT_LOCAL_DEF() 444 vec->y = FT_MulFix( vec->y, y_scale ); in FT_LOCAL_DEF()
|
/third_party/skia/third_party/externals/freetype/src/type1/ |
H A D | t1gload.c | 541 FT_Vector* vec = cur->points; in FT_LOCAL_DEF() local 548 for ( n = cur->n_points; n > 0; n--, vec++ ) in FT_LOCAL_DEF() 550 vec->x = FT_MulFix( vec->x, x_scale ); in FT_LOCAL_DEF() 551 vec->y = FT_MulFix( vec->y, y_scale ); in FT_LOCAL_DEF()
|
/third_party/spirv-tools/source/opt/ |
H A D | loop_fission.cpp | 321 DistanceVector vec{loop_depth}; in CanPerformSplit() 329 if (!analysis.GetDependence(store, inst, &vec)) { in CanPerformSplit() 330 for (DistanceEntry& entry : vec.GetEntries()) { in CanPerformSplit() 339 DistanceVector vec{loop_depth}; in CanPerformSplit() 347 if (!analysis.GetDependence(inst, load, &vec)) { in CanPerformSplit() 348 for (DistanceEntry& entry : vec.GetEntries()) { in CanPerformSplit()
|
/third_party/zlib/examples/ |
H A D | enough.c | 120 char *vec; // allocated bit vector member 248 free(g.done[n].vec); in cleanup() 320 if (offset < length && (g.done[index].vec[offset] & bit) != 0) in been_here() 333 vector = realloc(g.done[index].vec, length); in been_here() 349 g.done[index].vec = vector; in been_here() 353 g.done[index].vec[offset] |= bit; in been_here()
|
/third_party/nghttp2/tests/ |
H A D | nghttp2_hd_test.c | 1297 nghttp2_vec vec[256]; in test_nghttp2_hd_deflate_hd_vec() local 1312 vec[0].base = &buf[0]; in test_nghttp2_hd_deflate_hd_vec() 1313 vec[0].len = buflen / 2; in test_nghttp2_hd_deflate_hd_vec() 1314 vec[1].base = &buf[buflen / 2]; in test_nghttp2_hd_deflate_hd_vec() 1315 vec[1].len = buflen / 2; in test_nghttp2_hd_deflate_hd_vec() 1317 blocklen = nghttp2_hd_deflate_hd_vec(deflater, vec, 2, nva, ARRLEN(nva)); in test_nghttp2_hd_deflate_hd_vec() 1347 vec[0].base = NULL; in test_nghttp2_hd_deflate_hd_vec() 1348 vec[0].len = 0; in test_nghttp2_hd_deflate_hd_vec() 1349 vec[1].base = NULL; in test_nghttp2_hd_deflate_hd_vec() 1350 vec[ in test_nghttp2_hd_deflate_hd_vec() [all...] |
/third_party/skia/third_party/externals/freetype/src/pshinter/ |
H A D | pshalgo.c | 1084 FT_Vector* vec = glyph->outline->points; in psh_glyph_load_points() local 1089 for ( ; count > 0; count--, point++, vec++ ) in psh_glyph_load_points() 1095 point->org_u = vec->x; in psh_glyph_load_points() 1096 point->org_v = vec->y; in psh_glyph_load_points() 1100 point->org_u = vec->y; in psh_glyph_load_points() 1101 point->org_v = vec->x; in psh_glyph_load_points() 1105 point->org_x = vec->x; in psh_glyph_load_points() 1106 point->org_y = vec->y; in psh_glyph_load_points() 1120 FT_Vector* vec = glyph->outline->points; in psh_glyph_save_points() local 1127 vec[ in psh_glyph_save_points() 1220 FT_Vector* vec = outline->points; psh_glyph_init() local [all...] |
/third_party/skia/include/private/ |
H A D | SkNx_sse.h | 40 AI SkNx(const __m128& vec) : fVec(vec) {} in SkNx() argument 128 AI SkNx(const __m128& vec) : fVec(vec) {} in SkNx() argument 242 AI SkNx(const __m128i& vec) : fVec(vec) {} in SkNx() argument 312 AI SkNx(const __m128i& vec) : fVec(vec) {} in SkNx() argument 359 AI SkNx(const __m128i& vec) : fVec(vec) {} in SkNx() argument 413 SkNx(const __m128i& vec) SkNx() argument 481 SkNx(const __m128i& vec) SkNx() argument 591 SkNx(const __m128i& vec) SkNx() argument 612 SkNx(const __m128i& vec) SkNx() argument 654 SkNx(const __m128i& vec) SkNx() argument [all...] |
/kernel/linux/linux-6.6/rust/alloc/vec/ |
H A D | mod.rs | 19 //! ...or by using the [`vec!`] macro: 22 //! let v: Vec<i32> = vec![]; 24 //! let v = vec![1, 2, 3, 4, 5]; 26 //! let v = vec![0; 10]; // ten zeroes 33 //! let mut v = vec![1, 2]; 41 //! let mut v = vec![1, 2]; 49 //! let mut v = vec![1, 2, 3]; 155 /// let mut vec = Vec::new(); 156 /// vec.push(1); 157 /// vec [all...] |
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | Initialize.cpp | 201 TType *vec = new TType(EbtVec); in InsertBuiltInFunctions() local 209 symbolTable.insertBuiltIn(COMMON_BUILTINS, EOpLessThan, bvec, "lessThan", vec, vec); in InsertBuiltInFunctions() 212 symbolTable.insertBuiltIn(COMMON_BUILTINS, EOpLessThanEqual, bvec, "lessThanEqual", vec, vec); in InsertBuiltInFunctions() 215 symbolTable.insertBuiltIn(COMMON_BUILTINS, EOpGreaterThan, bvec, "greaterThan", vec, vec); in InsertBuiltInFunctions() 218 symbolTable.insertBuiltIn(COMMON_BUILTINS, EOpGreaterThanEqual, bvec, "greaterThanEqual", vec, vec); in InsertBuiltInFunctions() 221 symbolTable.insertBuiltIn(COMMON_BUILTINS, EOpVectorEqual, bvec, "equal", vec, ve in InsertBuiltInFunctions() [all...] |
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | symm.rs | 45 //! let mut encrypted = vec![0; pubkey.size() as usize]; 46 //! let mut decrypted = vec![0; privkey.size() as usize]; 446 /// let mut ciphertext = vec![0; data_len + block_size]; 471 /// let mut plaintext = vec![0; data_len + block_size]; 699 let mut out = vec![0; data.len() + t.block_size()]; in cipher() 723 let mut out = vec![0; data.len() + t.block_size()]; in encrypt_aead() 754 let mut out = vec![0; data.len() + t.block_size()]; in decrypt_aead() 848 let mut r0 = vec![0; c0.len() + super::Cipher::aes_256_ecb().block_size()]; in test_aes_256_ecb() 862 let mut p1 = vec![0; r0.len() + super::Cipher::aes_256_ecb().block_size()]; in test_aes_256_ecb() 892 let mut unciphered_data = vec![ in test_aes_256_cbc_decrypt() [all...] |
/kernel/linux/linux-5.10/drivers/dma/idxd/ |
H A D | submit.c | 71 int vec = desc->hw->int_handle; in idxd_submit_desc() local 92 &idxd->irq_entries[vec].pending_llist); in idxd_submit_desc()
|
/kernel/linux/linux-5.10/net/dccp/ |
H A D | ackvec.h | 120 * @vec: start of vector (offset into skb) 121 * @len: length of @vec 122 * @nonce: whether @vec had an ECN nonce of 0 or 1 128 u8 *vec, member 134 int dccp_ackvec_parsed_add(struct list_head *head, u8 *vec, u8 len, u8 nonce);
|
/kernel/linux/linux-6.6/net/dccp/ |
H A D | ackvec.h | 120 * @vec: start of vector (offset into skb) 121 * @len: length of @vec 122 * @nonce: whether @vec had an ECN nonce of 0 or 1 128 u8 *vec, member 134 int dccp_ackvec_parsed_add(struct list_head *head, u8 *vec, u8 len, u8 nonce);
|
/third_party/icu/icu4j/samples/src/com/ibm/icu/samples/iuc/ |
H A D | PopulationData.java | 59 int vec[] = territoryF.getIntVector(); in getTerritoryEntries() 65 entries.add(new TerritoryEntry(territory.getDisplayCountry(ULocale.forLocale(loc)), SupplementalUtilities.ldml2d(vec[2]))); in getTerritoryEntries()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | fphdlimp.h | 69 UVector32* vec; member in FieldPositionIteratorHandler 86 FieldPositionIteratorHandler(UVector32* vec, UErrorCode& status);
|
/third_party/json/docs/examples/ |
H A D | sax_parse__binary.cpp | 98 std::vector<std::uint8_t> vec = {{0x44, 0xcA, 0xfe, 0xba, 0xbe}}; in main() local 104 bool result = json::sax_parse(vec, &sec, json::input_format_t::cbor); in main()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_image.c | 58 nir_ssa_def *vec = nir_vec_scalars(b, comps, intrin->dest.ssa.num_components); in lower_cube_size() local 59 nir_ssa_def_rewrite_uses(&intrin->dest.ssa, vec); in lower_cube_size()
|
/third_party/nghttp2/src/ |
H A D | h2load_http3_session.h | 64 ssize_t write_stream(int64_t &stream_id, int &fin, nghttp3_vec *vec, 72 void read_data(nghttp3_vec *vec, size_t veccnt, uint32_t *pflags);
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | fphdlimp.h | 69 UVector32* vec; member in FieldPositionIteratorHandler 86 FieldPositionIteratorHandler(UVector32* vec, UErrorCode& status);
|
/third_party/rust/crates/codespan/codespan-reporting/examples/ |
H A D | peg_calculator.rs | 59 .with_labels(vec![ in main() 62 .with_notes(vec![format!("expected: {}", error.expected)]); in main()
|
/third_party/skia/src/gpu/ |
H A D | GrColor.h | 84 SkFloatToHalf_finite_ftz(Sk4f::Load(color.vec())).store(&halfColor); in SkPMColor4f_toFP16() 104 memcpy(fColor, color.vec(), sizeof(fColor)); in set()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | fphdlimp.h | 69 UVector32* vec; member in FieldPositionIteratorHandler 86 FieldPositionIteratorHandler(UVector32* vec, UErrorCode& status);
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
H A D | ObjectContentHasher.h | 58 static constexpr void Call(ObjectContentHasher* recorder, const std::vector<T>& vec) { in Call() 59 recorder->RecordIterable<std::vector<T>>(vec); in Call()
|