incore             41 streaming.c    static open_method_decl(incore);
incore             76 streaming.c    		} incore;
incore            128 streaming.c    		return incore;
incore            461 streaming.c    static close_method_decl(incore)
incore            463 streaming.c    	free(st->u.incore.buf);
incore            467 streaming.c    static read_method_decl(incore)
incore            470 streaming.c    	size_t remainder = st->size - st->u.incore.read_ptr;
incore            475 streaming.c    		memcpy(buf, st->u.incore.buf + st->u.incore.read_ptr, read_size);
incore            476 streaming.c    		st->u.incore.read_ptr += read_size;
incore            486 streaming.c    static open_method_decl(incore)
incore            488 streaming.c    	st->u.incore.buf = read_sha1_file_extended(sha1, type, &st->size, 0);
incore            489 streaming.c    	st->u.incore.read_ptr = 0;
incore            492 streaming.c    	return st->u.incore.buf ? 0 : -1;