/external/grpc-grpc/src/core/ext/transport/chttp2/transport/ |
D | hpack_table.cc | 180 tbl->ents = static_cast<grpc_mdelem*>( in grpc_chttp2_hptbl_init() 181 gpr_malloc(sizeof(*tbl->ents) * tbl->cap_entries)); in grpc_chttp2_hptbl_init() 182 memset(tbl->ents, 0, sizeof(*tbl->ents) * tbl->cap_entries); in grpc_chttp2_hptbl_init() 197 GRPC_MDELEM_UNREF(tbl->ents[(tbl->first_ent + i) % tbl->cap_entries]); in grpc_chttp2_hptbl_destroy() 199 gpr_free(tbl->ents); in grpc_chttp2_hptbl_destroy() 213 return tbl->ents[offset]; in grpc_chttp2_hptbl_lookup() 221 grpc_mdelem first_ent = tbl->ents[tbl->first_ent]; in evict1() 233 grpc_mdelem* ents = in rebuild_ents() local 234 static_cast<grpc_mdelem*>(gpr_malloc(sizeof(*ents) * new_cap)); in rebuild_ents() 238 ents[i] = tbl->ents[(tbl->first_ent + i) % tbl->cap_entries]; in rebuild_ents() [all …]
|
D | hpack_table.h | 68 grpc_mdelem* ents; member
|
/external/rust/crates/grpcio-sys/grpc/src/core/ext/transport/chttp2/transport/ |
D | hpack_table.cc | 42 GRPC_MDELEM_UNREF(tbl->ents[(tbl->first_ent + i) % tbl->cap_entries]); in grpc_chttp2_hptbl_destroy() 44 gpr_free(tbl->ents); in grpc_chttp2_hptbl_destroy() 45 tbl->ents = nullptr; in grpc_chttp2_hptbl_destroy() 56 grpc_mdelem md = tbl->ents[offset]; in lookup_dynamic_index() 78 grpc_mdelem first_ent = tbl->ents[tbl->first_ent]; in evict1() 90 grpc_mdelem* ents = in rebuild_ents() local 91 static_cast<grpc_mdelem*>(gpr_malloc(sizeof(*ents) * new_cap)); in rebuild_ents() 95 ents[i] = tbl->ents[(tbl->first_ent + i) % tbl->cap_entries]; in rebuild_ents() 97 gpr_free(tbl->ents); in rebuild_ents() 98 tbl->ents = ents; in rebuild_ents() [all …]
|
D | hpack_table.h | 61 GPR_DEBUG_ASSERT(!ents); in grpc_chttp2_hptbl() 62 constexpr uint32_t AllocSize = sizeof(*ents) * kInitialCapacity; in grpc_chttp2_hptbl() 63 ents = static_cast<grpc_mdelem*>(gpr_malloc(AllocSize)); in grpc_chttp2_hptbl() 64 memset(ents, 0, AllocSize); in grpc_chttp2_hptbl() 86 grpc_mdelem* ents = nullptr; member
|
/external/rust/crates/walkdir/src/tests/ |
D | recursive.rs | 29 assert_eq!(1, r.ents().len()); in empty() 30 let ent = &r.ents()[0]; in empty() 45 assert_eq!(1, r.ents().len()); in empty_follow() 46 let ent = &r.ents()[0]; in empty_follow() 63 assert_eq!(1, r.ents().len()); in empty_file() 64 let ent = &r.ents()[0]; in empty_file() 81 assert_eq!(1, r.ents().len()); in empty_file_follow() 82 let ent = &r.ents()[0]; in empty_file_follow() 99 let ents = r.ents(); in one_dir() localVariable 100 assert_eq!(2, ents.len()); in one_dir() [all …]
|
D | util.rs | 24 ents: Vec<DirEntry>, field 45 pub fn ents(&self) -> &[DirEntry] { in ents() method 46 &self.ents in ents() 53 self.ents.iter().map(|d| d.path().to_path_buf()).collect() in paths() 59 let mut ents = self.ents.clone(); in sorted_ents() localVariable 60 ents.sort_by(|e1, e2| e1.path().cmp(e2.path())); in sorted_ents() 61 ents in sorted_ents() 105 let mut results = RecursiveResults { ents: vec![], errs: vec![] }; in run_recursive() 108 Ok(ent) => results.ents.push(ent), in run_recursive()
|
/external/strace/ |
D | ubi.c | 98 ", name=", rnvol.ents[c].vol_id, in ubi_ioctl() 99 rnvol.ents[c].name_len); in ubi_ioctl() 100 print_quoted_cstring(rnvol.ents[c].name, in ubi_ioctl() 101 CLAMP(rnvol.ents[c].name_len, 0, in ubi_ioctl()
|
/external/libxkbcommon/tools/ |
D | interactive-evdev.c | 190 struct dirent **ents; in get_keyboards() local 193 nents = scandir("/dev/input", &ents, filter_device_name, alphasort); in get_keyboards() 200 ret = keyboard_new(ents[i], keymap, compose_table, &kbd); in get_keyboards() 205 ents[i]->d_name, strerror(-ret)); in get_keyboards() 210 ents[i]->d_name, strerror(-ret)); in get_keyboards() 227 free(ents[i]); in get_keyboards() 228 free(ents); in get_keyboards()
|
/external/mesa3d/src/mapi/glapi/gen/ |
D | gl_apitemp.py | 285 for func, ents in normal_entry_points: 286 for ent in ents: 294 for func, ents in proto_entry_points: 295 for ent in ents:
|
/external/libxml2/result/XInclude/ |
D | nodes3.xml.err | 1 …nclude: XInclude error : Invalid fragment identifier in URI test/XInclude/ents/something.xml#xpoin…
|
/external/kernel-headers/original/uapi/mtd/ |
D | ubi-user.h | 404 } ents[UBI_MAX_RNVOL]; member
|
/external/openssh/ |
D | sftp-client.c | 540 u_int count, id, i, expected_id, ents = 0; in do_lsreaddir() local 567 ents = 0; in do_lsreaddir() 649 *dir = xreallocarray(*dir, ents + 2, sizeof(**dir)); in do_lsreaddir() 650 (*dir)[ents] = xcalloc(1, sizeof(***dir)); in do_lsreaddir() 651 (*dir)[ents]->filename = xstrdup(filename); in do_lsreaddir() 652 (*dir)[ents]->longname = xstrdup(longname); in do_lsreaddir() 653 memcpy(&(*dir)[ents]->a, &a, sizeof(a)); in do_lsreaddir() 654 (*dir)[++ents] = NULL; in do_lsreaddir()
|
/external/e2fsprogs/po/ |
D | ca.po | 6794 "Hi ha disponibles les següents opcions de quota (separeu-les amb coma):\n" 7370 msgstr[1] "S'ha generat el UUID de temps %s i els %d subsegüents UUIDs\n" 7397 msgstr[1] "%s i els subsegüents %d UUIDs\n"
|
/external/selinux/policycoreutils/po/ |
D | ca.po | 953 msgstr "Heu d'especificar un dels següents valors: %s"
|
/external/libxml2/ |
D | ChangeLog | 12436 test/XInclude/ents/isolatin.txt : added a specific regression test 14347 test/XInclude/ents/ids.xml: test case 16495 test/XInclude/ents/inc.txt test/XInclude/ents/sub-inc.ent: 17744 * Makefile.am test/XInclude/docs test/XInclude/ents result/XInclude:
|
/external/libtextclassifier/native/annotator/pod_ner/test_data/ |
D | vocab.txt | 11188 ##ents
|
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/ |
D | internal_raw_IPA-old.txt | 40390 complaints %34649 kəmplˈents 41797 constraints %31845 kənstrˈents 64002 ents %11966 103906 jonassaint's ʤˌonəsˈents 164755 restraints %27025 ristrˈents, rəstrˈents
|
D | internal_raw_IPA.txt | 34059 complaints %43283 kəmplˈents 35280 constraints %41338 kənstrˈents 87625 jonassaint's dʒˌonəsˈents 138087 restraints %35659 ristrˈents, rəstrˈents
|