loose              15 builtin/count-objects.c static unsigned long loose, packed, packed_loose;
loose              41 builtin/count-objects.c 		loose++;
loose             113 builtin/count-objects.c 		printf("count: %lu\n", loose);
loose             131 builtin/count-objects.c 		printf("%lu objects, %s\n", loose, buf.buf);
loose            1065 refs.c         	struct ref_entry *loose;
loose            1116 refs.c         	if (refs->loose) {
loose            1117 refs.c         		free_ref_entry(refs->loose);
loose            1118 refs.c         		refs->loose = NULL;
loose            1443 refs.c         	if (!refs->loose) {
loose            1449 refs.c         		refs->loose = create_dir_entry(refs, "", 0, 0);
loose            1453 refs.c         		add_entry_to_dir(get_ref_dir(refs->loose),
loose            1456 refs.c         	return get_ref_dir(refs->loose);
loose              42 streaming.c    static open_method_decl(loose);
loose              84 streaming.c    		} loose;
loose             122 streaming.c    		return loose;
loose             278 streaming.c    static read_method_decl(loose)
loose             291 streaming.c    	if (st->u.loose.hdr_used < st->u.loose.hdr_avail) {
loose             292 streaming.c    		size_t to_copy = st->u.loose.hdr_avail - st->u.loose.hdr_used;
loose             295 streaming.c    		memcpy(buf, st->u.loose.hdr + st->u.loose.hdr_used, to_copy);
loose             296 streaming.c    		st->u.loose.hdr_used += to_copy;
loose             323 streaming.c    static close_method_decl(loose)
loose             326 streaming.c    	munmap(st->u.loose.mapped, st->u.loose.mapsize);
loose             335 streaming.c    static open_method_decl(loose)
loose             337 streaming.c    	st->u.loose.mapped = map_sha1_file(sha1, &st->u.loose.mapsize);
loose             338 streaming.c    	if (!st->u.loose.mapped)
loose             341 streaming.c    			       st->u.loose.mapped,
loose             342 streaming.c    			       st->u.loose.mapsize,
loose             343 streaming.c    			       st->u.loose.hdr,
loose             344 streaming.c    			       sizeof(st->u.loose.hdr)) < 0) {
loose             346 streaming.c    		munmap(st->u.loose.mapped, st->u.loose.mapsize);
loose             350 streaming.c    	parse_sha1_header(st->u.loose.hdr, &st->size);
loose             351 streaming.c    	st->u.loose.hdr_used = strlen(st->u.loose.hdr) + 1;
loose             352 streaming.c    	st->u.loose.hdr_avail = st->z.total_out;