Searched refs:entry_size (Results 1 - 25 of 49) sorted by relevance

12

/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dsavedir.c85 size_t entry_size = _D_EXACT_NAMLEN (dp) + 1; local
86 if (used + entry_size < used)
88 if (allocated <= used + entry_size)
96 while (allocated <= used + entry_size);
100 memcpy (name_space + used, entry, entry_size);
101 used += entry_size;
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Dxsym.c84 unsigned long entry_size,
87 unsigned long entries_per_page = page_size / entry_size;
89 unsigned long page_offset = (index % entries_per_page) * entry_size;
535 unsigned long entry_size; local
554 entry_size = 18;
567 entry_size, index);
571 if (bfd_bread (buf, entry_size, abfd) != entry_size)
574 (*parser) (buf, entry_size, entry);
586 unsigned long entry_size; local
82 compute_offset(unsigned long first_page, unsigned long page_size, unsigned long entry_size, unsigned long index) argument
637 unsigned long entry_size = 0; local
687 unsigned long entry_size = 0; local
737 unsigned long entry_size = 0; local
787 unsigned long entry_size = 0; local
837 unsigned long entry_size = 0; local
887 unsigned long entry_size = 0; local
937 unsigned long entry_size = 0; local
987 unsigned long entry_size = 0; local
1037 unsigned long entry_size = 0; local
[all...]
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Ducsmap.c104 size_t entry_size; /* allocated size */ member in struct:idn_ucsmap
133 ctx->entry_size = 0;
191 if (ctx->nentries >= ctx->entry_size) {
192 if (ctx->entry_size == 0)
193 ctx->entry_size = INIT_SIZE;
195 ctx->entry_size *= 2;
196 newbuf = realloc(ctx->entries, sizeof(*e) * ctx->entry_size);
/macosx-10.9.5/libarchive-29/libarchive/libarchive/
H A Darchive_read_support_format_ar.c167 size_t bsd_name_length, entry_size; local
274 entry_size = (size_t)number;
275 if (entry_size == 0) {
287 st = malloc(entry_size);
294 ar->strtab_size = entry_size;
295 if ((b = __archive_read_ahead(a, entry_size, NULL)) == NULL)
297 memcpy(st, b, entry_size);
298 __archive_read_consume(a, entry_size);
/macosx-10.9.5/apache-786.1/httpd/modules/cache/
H A Dcache_cache.c155 apr_size_t entry_size = c->size_entry(entry); local
162 c->current_size -= entry_size;
/macosx-10.9.5/cxxfilt-11/cxxfilt/opcodes/
H A Dcgen-dis.c203 insn_table->entry_size,
210 macro_insn_table->entry_size,
H A Dcgen-asm.c149 insn_table->entry_size,
156 macro_insn_table->entry_size,
H A Dip2k-desc.c903 cd->hw_table.entry_size = sizeof (CGEN_HW_ENTRY);
936 cd->operand_table.entry_size = sizeof (CGEN_OPERAND);
966 cd->insn_table.entry_size = sizeof (CGEN_IBASE);
H A Dopenrisc-desc.c744 cd->hw_table.entry_size = sizeof (CGEN_HW_ENTRY);
777 cd->operand_table.entry_size = sizeof (CGEN_OPERAND);
807 cd->insn_table.entry_size = sizeof (CGEN_IBASE);
H A Dfr30-desc.c1474 cd->hw_table.entry_size = sizeof (CGEN_HW_ENTRY);
1507 cd->operand_table.entry_size = sizeof (CGEN_OPERAND);
1537 cd->insn_table.entry_size = sizeof (CGEN_IBASE);
H A Dm32r-desc.c1254 cd->hw_table.entry_size = sizeof (CGEN_HW_ENTRY);
1287 cd->operand_table.entry_size = sizeof (CGEN_OPERAND);
1317 cd->insn_table.entry_size = sizeof (CGEN_IBASE);
H A Dmt-desc.c1034 cd->hw_table.entry_size = sizeof (CGEN_HW_ENTRY);
1067 cd->operand_table.entry_size = sizeof (CGEN_OPERAND);
1097 cd->insn_table.entry_size = sizeof (CGEN_IBASE);
H A Dxstormy16-desc.c1205 cd->hw_table.entry_size = sizeof (CGEN_HW_ENTRY);
1238 cd->operand_table.entry_size = sizeof (CGEN_OPERAND);
1268 cd->insn_table.entry_size = sizeof (CGEN_IBASE);
H A Dip2k-opc.c904 cd->macro_insn_table.entry_size = sizeof (CGEN_IBASE);
/macosx-10.9.5/ruby-104/ruby/test/rss/
H A Dtest_setup_maker_atom_feed.rb369 entry_size = 5
394 entry_size.times do |i|
433 assert_equal(entry_size, new_feed.entries.size)
H A Dtest_setup_maker_atom_entry.rb345 entry_size = 5
370 entry_size.times do |i|
/macosx-10.9.5/ntfs-83/kext/
H A Dntfs_index.h379 u32 entry_size, const void *key, const u32 key_len,
H A Dntfs_index.c3545 * @entry_size: size of the entry that will be added after the split
3553 * inserted after the split is completed. @entry_size is the size of the entry
3561 * If @split_only is false @entry_size is ignored and @key, @key_len, @data,
3590 const BOOL split_only, u32 entry_size, const void *key,
3604 * If this is only a split @entry_size contains the size of the entry
3607 * If this is an addition, @entry_size is not set and we need to work
3624 entry_size = sizeof(INDEX_ENTRY_HEADER) + key_len;
3626 data_ofs = (entry_size + 4) & ~4;
3627 entry_size = data_ofs + data_len;
3629 entry_size
3589 ntfs_index_entry_add_or_node_split(ntfs_index_context *ictx, const BOOL split_only, u32 entry_size, const void *key, const u32 key_len, const void *data, const u32 data_len) argument
4551 ntfs_index_node_split(ntfs_index_context *ictx, const u32 entry_size) argument
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/vm/
H A Dvm_map.c2305 vm_map_size_t entry_size; local
2307 entry_size = (entry2->vme_end -
2311 zap_old_map->size -= entry_size;
2313 map->size += entry_size;
5513 vm_map_size_t entry_size; local
5525 entry_size = entry->vme_end - entry->vme_start;
5526 map->size -= entry_size;
5527 zap_map->size += entry_size;
6248 vm_map_size_t entry_size; local
6255 entry_size
6388 vm_map_size_t entry_size; local
9047 vm_map_size_t entry_size = old_entry->vme_end - old_entry->vme_start; local
9132 vm_map_size_t new_size = 0, entry_size; local
10478 uint32_t entry_size; local
11876 vm_map_size_t entry_size; local
[all...]
H A Dvm_shared_region.c1992 mach_vm_size_t entry_size,
2002 ("vm_shared_region_slide: -> slide %#x, entry_start %#llx, entry_size %#llx, slide_start %#llx, slide_size %#llx\n",
2003 slide, entry_start_address, entry_size, slide_start, slide_size));
2037 if((error = vm_shared_region_slide_init(sr, slide_size, entry_start_address, entry_size, slide, sr_file_control))) {
2064 (unsigned long)entry_size,
1990 vm_shared_region_slide(uint32_t slide, mach_vm_offset_t entry_start_address, mach_vm_size_t entry_size, mach_vm_offset_t slide_start, mach_vm_size_t slide_size, memory_object_control_t sr_file_control) argument
/macosx-10.9.5/cxxfilt-11/cxxfilt/include/opcode/
H A Dcgen.h463 unsigned int entry_size; /* since the attribute member is variable sized */
717 unsigned int entry_size; /* since the attribute member is variable sized */
1085 unsigned int entry_size; /* since the attribute member is variable sized */
455 unsigned int entry_size; /* since the attribute member is variable sized */ member in struct:__anon7892
707 unsigned int entry_size; /* since the attribute member is variable sized */ member in struct:__anon7896
1071 unsigned int entry_size; /* since the attribute member is variable sized */ member in struct:__anon7904
/macosx-10.9.5/xnu-2422.115.4/libkern/libkern/
H A DOSKextLibPrivate.h876 * @field entry_size The size of each entry in summaries.
890 uint32_t entry_size; member in struct:_loaded_kext_summary_header
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dmach_loader.c1360 uint32_t entry_size; local
1372 entry_size = (size+2)*sizeof(uint32_t);
1373 if (entry_size > total_size)
1375 total_size -= entry_size;
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/blt/
H A Dtreeview.rb497 def entry_size(tag) method in class:Tk.OpenCloseCommand.ValidateArgs
923 def entry_size method in class:Tk.OpenCloseCommand.ValidateArgs.FindExecFlagValue.Tk
924 @tree.entry_size(self)
/macosx-10.9.5/xnu-2422.115.4/tools/lldbmacros/
H A Dmemory.py1058 entry_size = 64 + 16 + 8 + 8 + 8 + 4 + 4
1060 entry_size = int(kern.globals.gLoadedKextSummaries.entry_size)
1063 tmpaddress = unsigned(summaries_begin) + (i * entry_size)

Completed in 405 milliseconds

12