/external/libvpx/ |
docs.mk | 52 DIST-DOCS-yes = $(wildcard docs/html/*) 53 DIST-DOCS-$(CONFIG_CODEC_SRCS) += $(addprefix src/,$(CODEC_DOX)) 54 DIST-DOCS-$(CONFIG_CODEC_SRCS) += src/libs.doxy_template 55 DIST-DOCS-yes += CHANGELOG 56 DIST-DOCS-yes += README
|
examples.mk | 155 DIST-BINS-$(NOT_MSVS) += $(addprefix bin/,$(ALL_EXAMPLES:.c=)) 157 DIST-SRCS-yes += $(ALL_SRCS)
|
/external/libvpx/build/make/ |
Makefile | 34 dist: 69 DIST_DIR?=dist 93 .PHONY: dist 94 dist: 267 ifeq ($(MAKECMDGOALS),dist) 268 INSTALL-DOCS+=$(call cond_enabled,CONFIG_INSTALL_DOCS,DIST-DOCS) 281 ifeq ($(MAKECMDGOALS),dist) 282 INSTALL-BINS+=$(call cond_enabled,CONFIG_INSTALL_BINS,DIST-BINS) 297 ifeq ($(MAKECMDGOALS),dist) 298 INSTALL-LIBS+=$(call cond_enabled,CONFIG_INSTALL_LIBS,DIST-LIBS [all...] |
/external/qemu/distrib/zlib-1.2.3/ |
inflate.h | 41 DIST, /* i: waiting for distance code */ 70 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
|
inflate.c | 328 unsigned copy, dist; local 355 dist = state->wsize - state->write; 356 if (dist > copy) dist = copy; 357 zmemcpy(state->window + state->write, strm->next_out - copy, dist); 358 copy -= dist; 365 state->write += dist; 367 if (state->whave < state->wsize) state->whave += dist; [all...] |
/external/zlib/ |
inflate.h | 43 DIST, /* i: waiting for distance code */ 74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
|
inflate.c | 363 unsigned copy, dist; local 390 dist = state->wsize - state->wnext; 391 if (dist > copy) dist = copy; 392 zmemcpy(state->window + state->wnext, strm->next_out - copy, dist); 393 copy -= dist; 400 state->wnext += dist; 402 if (state->whave < state->wsize) state->whave += dist; [all...] |
/external/libvpx/vp8/encoder/ |
mcomp.c | 189 #define DIST(r,c) vfp->svf( PRE(r,c), d->pre_stride, SP(c),SP(r), z,b->src_stride,&sse) // returns subpixel variance error function. 191 #define ERR(r,c) (MVC(r,c)+DIST(r,c)) // returns distortion + motion vector cost 307 #undef DIST 758 #define DIST(r,c,v) vfp->sdf( src,src_stride,PRE(r,c),d->pre_stride, v) // returns sad error score. 759 #define ERR(r,c,v) (MVC(r,c)+DIST(r,c,v)) // returns distortion + motion vector cost 902 #undef DIST [all...] |