HomeSort by relevance Sort by last modified time
    Searched defs:cfg (Results 1 - 25 of 386) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/config/arm/
vpx_config.c 9 static const char* const cfg = "--target=armv7-linux-gcc --disable-neon --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/arm-neon/
vpx_config.c 9 static const char* const cfg = "--target=armv7-linux-gcc --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/arm64/
vpx_config.c 9 static const char* const cfg = "--force-target=armv8-linux-gcc --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/generic/
vpx_config.c 9 static const char* const cfg = "--target=generic-gnu --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/mips32/
vpx_config.c 9 static const char* const cfg = "--target=mips32-linux-gcc --disable-dspr2 --disable-msa --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/mips32-dspr2/
vpx_config.c 9 static const char* const cfg = "--target=mips32-linux-gcc --enable-dspr2 --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/mips32-msa/
vpx_config.c 9 static const char* const cfg = "--target=mips32-linux-gcc --enable-msa --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/mips64/
vpx_config.c 9 static const char* const cfg = "--target=mips64-linux-gcc --disable-msa --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/mips64-msa/
vpx_config.c 9 static const char* const cfg = "--target=mips64-linux-gcc --enable-msa --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/x86/
vpx_config.c 9 static const char* const cfg = "--target=x86-linux-gcc --disable-sse4_1 --disable-avx --disable-avx2 --as=yasm --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/x86_64/
vpx_config.c 9 static const char* const cfg = "--target=x86_64-linux-gcc --disable-sse4_1 --disable-avx --disable-avx2 --as=yasm --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /prebuilts/go/darwin-x86/src/cmd/vet/internal/cfg/
cfg_test.go 5 package cfg package
134 // We'll use dead code detection to verify the CFG.
cfg.go 5 // This package constructs a simple control-flow graph (CFG) of the
8 // Use cfg.New to construct the CFG for a function body.
10 // The blocks of the CFG contain all the function's non-control
11 // statements. The CFG does not contain control statements such as If,
21 // produces this CFG:
32 // The CFG does contain Return statements; even implicit returns are
35 // The CFG does not record conditions associated with conditional branch
40 package cfg package
55 // A CFG represents the control-flow graph of a single function
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/internal/cfg/
cfg_test.go 5 package cfg package
134 // We'll use dead code detection to verify the CFG.
cfg.go 5 // This package constructs a simple control-flow graph (CFG) of the
8 // Use cfg.New to construct the CFG for a function body.
10 // The blocks of the CFG contain all the function's non-control
11 // statements. The CFG does not contain control statements such as If,
21 // produces this CFG:
32 // The CFG does contain Return statements; even implicit returns are
35 // The CFG does not record conditions associated with conditional branch
40 package cfg package
55 // A CFG represents the control-flow graph of a single function
    [all...]
  /external/libvpx/libvpx/test/
encode_api_test.cc 33 vpx_codec_enc_cfg_t cfg; local
45 vpx_codec_enc_config_default(NULL, &cfg, 0));
55 vpx_codec_enc_config_default(kCodecs[i], &cfg, 1));
57 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_enc_config_default(kCodecs[i], &cfg, 0));
58 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_enc_init(&enc, kCodecs[i], &cfg, 0));
level_test.cc 125 vpx_codec_enc_cfg_t cfg; local
126 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_enc_config_default(codec, &cfg, 0));
127 cfg.rc_target_bitrate = 100;
128 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_enc_init(&enc, codec, &cfg, 0));
  /external/libvpx/libvpx/
video_writer.c 25 struct vpx_codec_enc_cfg cfg; local
26 cfg.g_w = info->frame_width;
27 cfg.g_h = info->frame_height;
28 cfg.g_timebase.num = info->time_base.numerator;
29 cfg.g_timebase.den = info->time_base.denominator;
31 ivf_write_file_header(file, &cfg, info->codec_fourcc, frame_count);
  /external/mesa3d/src/glx/
create_context.c 42 struct glx_config *const cfg = (struct glx_config *) config; local
52 if (dpy == NULL || cfg == NULL)
59 psc = GetGLXScreenConfigs(dpy, cfg->screen);
63 assert(cfg->screen == psc->scr);
78 gc = psc->vtable->create_context_attribs(psc, cfg, share, num_attribs,
85 gc = applegl_create_context(psc, cfg, share, 0);
87 gc = indirect_create_context(psc, cfg, share, 0);
105 cfg->fbconfigID,
106 cfg->screen,
  /frameworks/base/tests/net/java/com/android/server/connectivity/tethering/
TetheringConfigurationTest.java 94 final TetheringConfiguration cfg = new TetheringConfiguration(mMockContext); local
95 assertTrue(cfg.isDunRequired);
96 assertTrue(cfg.preferredUpstreamIfaceTypes.contains(TYPE_MOBILE_DUN));
97 assertFalse(cfg.preferredUpstreamIfaceTypes.contains(TYPE_MOBILE));
98 assertFalse(cfg.preferredUpstreamIfaceTypes.contains(TYPE_MOBILE_HIPRI));
100 assertTrue(cfg.preferredUpstreamIfaceTypes.contains(TYPE_WIFI));
110 final TetheringConfiguration cfg = new TetheringConfiguration(mMockContext); local
111 assertFalse(cfg.isDunRequired);
112 assertFalse(cfg.preferredUpstreamIfaceTypes.contains(TYPE_MOBILE_DUN));
113 assertTrue(cfg.preferredUpstreamIfaceTypes.contains(TYPE_MOBILE))
126 final TetheringConfiguration cfg = new TetheringConfiguration(mMockContext); local
    [all...]
  /external/clang/lib/Analysis/
PostOrderCFGView.cpp 1 //===- PostOrderCFGView.cpp - Post order view of CFG blocks -------*- C++ --*-//
10 // This file implements post order view of the blocks in a CFG.
20 PostOrderCFGView::PostOrderCFGView(const CFG *cfg) {
21 Blocks.reserve(cfg->getNumBlockIDs());
22 CFGBlockSet BSet(cfg);
24 for (po_iterator I = po_iterator::begin(cfg, BSet),
25 E = po_iterator::end(cfg, BSet); I != E; ++I) {
32 const CFG *cfg = ctx.getCFG() local
    [all...]
  /external/clang/unittests/Analysis/
CFGTest.cpp 1 //===- unittests/Analysis/CFGTest.cpp - CFG tests -------------------------===//
11 #include "clang/Analysis/CFG.h"
21 // Constructing a CFG for a range-based for over a dependent type fails (but
23 TEST(CFG, RangeBasedForOverDependentType) {
41 std::unique_ptr<CFG> cfg = local
42 CFG::buildCFG(nullptr, Body, Result.Context, CFG::BuildOptions());
43 EXPECT_EQ(nullptr, cfg);
  /external/libnl/lib/route/cls/ematch/
cmp.c 25 void rtnl_ematch_cmp_set(struct rtnl_ematch *e, struct tcf_em_cmp *cfg)
27 memcpy(rtnl_ematch_data(e), cfg, sizeof(*cfg)); local
  /external/libopus/celt/arm/
celt_ne10_fft.c 100 NE10_FFT_CFG_TYPE_T cfg; local
105 cfg = (NE10_FFT_CFG_TYPE_T)st->arch_fft->priv;
106 if (cfg)
107 NE10_FFT_DESTROY_C2C_TYPE(cfg);
117 NE10_FFT_CFG_TYPE_T cfg = &state; local
127 memcpy((void *)cfg, st->arch_fft->priv, sizeof(NE10_FFT_STATE_TYPE_T));
134 cfg, 0);
138 cfg, 0, 1);
149 NE10_FFT_CFG_TYPE_T cfg = &state; local
159 memcpy((void *)cfg, st->arch_fft->priv, sizeof(NE10_FFT_STATE_TYPE_T))
    [all...]
  /external/libopus/celt/dump_modes/
dump_modes_arm_ne10.c 80 /* cfg->factors */
82 NE10_FFT_CFG_TYPE_T cfg; local
83 cfg = (NE10_FFT_CFG_TYPE_T)mode->mdct.kfft[k]->arch_fft->priv;
84 if (!cfg)
89 fprintf(file, "%d,%c", cfg->factors[j],(j+16)%15==0?'\n':' ');
94 /* cfg->twiddles */
96 NE10_FFT_CFG_TYPE_T cfg; local
97 cfg = (NE10_FFT_CFG_TYPE_T)mode->mdct.kfft[k]->arch_fft->priv;
98 if (!cfg)
106 cfg->twiddles[j].r, cfg->twiddles[j].i,(j+4)%3==0?'\n':' ')
116 NE10_FFT_CFG_TYPE_T cfg; local
    [all...]

Completed in 438 milliseconds

1 2 3 4 5 6 7 8 91011>>