HomeSort by relevance Sort by last modified time
    Searched refs:DIST (Results 1 - 18 of 18) sorted by null

  /external/libvpx/libvpx/
docs.mk 49 DIST-DOCS-yes = $(wildcard docs/html/*)
50 DIST-DOCS-$(CONFIG_CODEC_SRCS) += $(addprefix src/,$(CODEC_DOX))
51 DIST-DOCS-$(CONFIG_CODEC_SRCS) += src/libs.doxy_template
52 DIST-DOCS-yes += CHANGELOG
53 DIST-DOCS-yes += README
examples.mk 184 DIST-BINS-$(NOT_MSVS) += $(addprefix bin/,$(ALL_EXAMPLES:.c=$(EXE_SFX)))
186 DIST-SRCS-yes += $(ALL_SRCS)
  /external/libvpx/libvpx/build/make/
Makefile 36 dist:
72 DIST_DIR?=dist
97 .PHONY: dist
98 dist:
327 ifeq ($(MAKECMDGOALS),dist)
328 INSTALL-DOCS+=$(call cond_enabled,CONFIG_INSTALL_DOCS,DIST-DOCS)
341 ifeq ($(MAKECMDGOALS),dist)
342 INSTALL-BINS+=$(call cond_enabled,CONFIG_INSTALL_BINS,DIST-BINS)
358 ifeq ($(MAKECMDGOALS),dist)
359 INSTALL-LIBS+=$(call cond_enabled,CONFIG_INSTALL_LIBS,DIST-LIBS
    [all...]
  /external/chromium_org/third_party/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/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/src/
inflate.h 43 DIST, /* i: waiting for distance code */
74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
inflate.c 385 unsigned dist; local
411 dist = state->wsize - state->wnext;
412 if (dist > copy) dist = copy;
413 zmemcpy(state->window + state->wnext, end - copy, dist);
414 copy -= dist;
421 state->wnext += dist;
423 if (state->whave < state->wsize) state->whave += dist;
    [all...]
  /external/chromium_org/third_party/jemalloc/chromium/
Makefile.in 60 # copy the CRT DLL to dist/bin,
61 # copy the import lib to dist/lib
64 $(INSTALL) $(MOZ_CRT_IMPORT_LIB) $(DIST)/lib
  /external/chromium_org/third_party/jemalloc/vendor/
Makefile.in 60 # copy the CRT DLL to dist/bin,
61 # copy the import lib to dist/lib
64 $(INSTALL) $(MOZ_CRT_IMPORT_LIB) $(DIST)/lib
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c 194 #define DIST(r, c) \
200 thismse = (DIST(r, c)); \
460 #undef DIST
462 #define DIST(r, c) \
667 #undef DIST
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
mcomp.c 196 #define DIST(r,c) vfp->svf( PRE(r,c), y_stride, SP(c),SP(r), z,b->src_stride,&sse)
199 #define ERR(r,c) (MVC(r,c)+DIST(r,c))
201 #define CHECK_BETTER(v,r,c) IFMVCV(r,c,{thismse = DIST(r,c); if((v = (MVC(r,c)+thismse)) < besterr) { besterr = v; br=r; bc=c; *distortion = thismse; *sse1 = sse; }}, v=UINT_MAX;)
356 #undef DIST
    [all...]
  /external/chromium_org/third_party/libwebp/dec/
vp8l.c 46 DIST = 4
147 const int dist = yoffset * xsize + xoffset; local
148 return (dist >= 1) ? dist : 1;
738 int dist_code, dist; \
741 const int dist_symbol = ReadSymbol(&htree_group->htrees_[DIST], br); \
744 dist = PlaneCodeToDistance(width, dist_code); \
745 if (src - data < dist || src_end - src < length) { \
751 for (i = 0; i < length; ++i) src[i] = src[i - dist]; \
    [all...]
  /external/webp/src/dec/
vp8l.c 46 DIST = 4
146 const int dist = yoffset * xsize + xoffset; local
147 return (dist >= 1) ? dist : 1;
737 int dist_code, dist; \
740 const int dist_symbol = ReadSymbol(&htree_group->htrees_[DIST], br); \
743 dist = PlaneCodeToDistance(width, dist_code); \
744 if (src - data < dist || src_end - src < length) { \
750 for (i = 0; i < length; ++i) src[i] = src[i - dist]; \
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiStateMachine.java 1063 int dist, distSd; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/config/
Makefile 170 DIST= $(DISTFILES) $(DISTDIRS)
567 Modules/Setup: $(srcdir)/Modules/Setup.dist
570 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
573 echo "Usually, copying Modules/Setup.dist to Modules/Setup will work."; \
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/config/
Makefile 170 DIST= $(DISTFILES) $(DISTDIRS)
568 Modules/Setup: $(srcdir)/Modules/Setup.dist
571 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
574 echo "Usually, copying Modules/Setup.dist to Modules/Setup will work."; \
    [all...]

Completed in 1330 milliseconds