HomeSort by relevance Sort by last modified time
    Searched refs:gm (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /external/skia/tools/viewer/
GMSlide.cpp 17 GMSlide::GMSlide(skiagm::GM* gm) : fGM(gm) {
18 fName.printf("GM_%s", gm->getName());
25 // Does the GM ever rely on drawBackground to lazily compute something?
GMSlide.h 12 #include "gm.h"
16 GMSlide(skiagm::GM* gm);
27 skiagm::GM* fGM;
  /external/skqp/tools/viewer/
GMSlide.cpp 17 GMSlide::GMSlide(skiagm::GM* gm) : fGM(gm) {
18 fName.printf("GM_%s", gm->getName());
25 // Does the GM ever rely on drawBackground to lazily compute something?
GMSlide.h 12 #include "gm.h"
16 GMSlide(skiagm::GM* gm);
27 skiagm::GM* fGM;
  /external/skia/tools/
list_gms.cpp 13 #include "gm.h"
18 std::unique_ptr<skiagm::GM> gm(r->factory()(nullptr));
19 gms.push_back(std::string(gm->getName()));
22 for (const std::string& gm : gms) {
23 std::cout << gm << '\n'; local
reformat-json.py 26 # We need to add the 'gm' directory, so that we can import gm_json.py within
28 # written out by the GM tool.
29 # Make sure that the 'gm' dir is in the PYTHONPATH, but add it at the *end*
32 # This assumes that the 'gm' directory has been checked out as a sibling of
36 os.path.join(os.path.dirname(os.path.dirname(__file__)), 'gm'))
  /external/skqp/tools/
list_gms.cpp 13 #include "gm.h"
18 std::unique_ptr<skiagm::GM> gm(r->factory()(nullptr));
19 gms.push_back(std::string(gm->getName()));
22 for (const std::string& gm : gms) {
23 std::cout << gm << '\n'; local
reformat-json.py 26 # We need to add the 'gm' directory, so that we can import gm_json.py within
28 # written out by the GM tool.
29 # Make sure that the 'gm' dir is in the PYTHONPATH, but add it at the *end*
32 # This assumes that the 'gm' directory has been checked out as a sibling of
36 os.path.join(os.path.dirname(os.path.dirname(__file__)), 'gm'))
  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
mixture_same_family_test.py 39 gm = mixture_same_family_lib.MixtureSameFamily(
43 x = gm.sample([4, 5], seed=42)
44 log_prob_x = gm.log_prob(x)
50 gm = mixture_same_family_lib.MixtureSameFamily(
54 x = gm.sample([4, 5], seed=42)
55 log_prob_x = gm.log_prob(x)
76 gm = mixture_same_family_lib.MixtureSameFamily(
80 x = gm.sample([4, 5], seed=42)
81 log_prob_x = gm.log_prob(x)
87 gm = mixture_same_family_lib.MixtureSameFamily
    [all...]
  /external/webrtc/webrtc/examples/peerconnection/client/
main.cc 56 BOOL gm; local
57 while ((gm = ::GetMessage(&msg, NULL, 0, 0)) != 0 && gm != -1) {
66 (gm = ::GetMessage(&msg, NULL, 0, 0)) != 0 && gm != -1) {
  /external/skia/bench/
GMBench.cpp 10 GMBench::GMBench(skiagm::GM* gm) : fGM(gm) {
11 fName.printf("GM_%s", gm->getName());
25 fGM->setMode(skiagm::GM::kBench_Mode);
27 // Does the GM ever rely on drawBackground to lazily compute something?
GMBench.h 12 #include "gm.h"
15 * Runs a GM as a benchmark by repeatedly drawing the GM.
19 // Constructor takes ownership of the GM param.
20 GMBench(skiagm::GM* gm);
34 skiagm::GM* fGM;
  /external/skqp/bench/
GMBench.cpp 10 GMBench::GMBench(skiagm::GM* gm) : fGM(gm) {
11 fName.printf("GM_%s", gm->getName());
25 fGM->setMode(skiagm::GM::kBench_Mode);
27 // Does the GM ever rely on drawBackground to lazily compute something?
GMBench.h 12 #include "gm.h"
15 * Runs a GM as a benchmark by repeatedly drawing the GM.
19 // Constructor takes ownership of the GM param.
20 GMBench(skiagm::GM* gm);
34 skiagm::GM* fGM;
  /external/mesa3d/src/util/
format_rgb9e5.h 62 int rm, gm, bm, exp_shared; local
91 gm = (int) (gc.f * revdenom.f);
94 gm = (gm & 1) + (gm >> 1);
98 assert(gm <= MAX_RGB9E5_MANTISSA);
101 assert(gm >= 0);
104 return (exp_shared << 27) | (bm << 18) | (gm << 9) | rm;
  /external/skia/platform_tools/android/apps/skqp/src/main/java/org/skia/skqp/
SkQP.java 18 protected native float nExecuteGM(int gm, int backend) throws SkQPException;
49 for (int gm = 0; gm < mGMs.length; gm++) {
50 String testName = kSkiaGM + mBackends[backend] + "_" +mGMs[gm];
55 value = this.nExecuteGM(gm, backend);
  /external/skqp/platform_tools/android/apps/skqp/src/main/java/org/skia/skqp/
SkQP.java 18 protected native float nExecuteGM(int gm, int backend) throws SkQPException;
49 for (int gm = 0; gm < mGMs.length; gm++) {
50 String testName = kSkiaGM + mBackends[backend] + "_" +mGMs[gm];
55 value = this.nExecuteGM(gm, backend);
  /frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
TestAppWidgetProvider.java 57 AppWidgetManager gm = AppWidgetManager.getInstance(context); local
61 gm.updateAppWidget(appWidgetIds, views);
63 gm.updateAppWidget(new ComponentName("com.android.tests.appwidgethost",
  /frameworks/base/tests/appwidgets/AppWidgetProviderTest/src/com/android/tests/appwidgetprovider/
TestAppWidgetProvider.java 49 AppWidgetManager gm = AppWidgetManager.getInstance(context); local
53 gm.updateAppWidget(appWidgetIds, views);
55 gm.updateAppWidget(new ComponentName("com.android.tests.appwidgetprovider",
  /external/skia/tools/skqp/
gm_runner.cpp 22 #include "gm.h"
141 static GrContextOptions context_options(skiagm::GM* gm = nullptr) {
148 if (gm) {
149 gm->modifyGrContextOptions(&grContextOptions);
177 skiagm::GM* gm,
183 SkASSERT(gm);
186 SkISize size = gm->getISize();
200 testCtx->makeGrContext(context_options(gm)).get(), SkBudgeted::kNo, info, 0, &props)
    [all...]
  /external/skqp/tools/skqp/
gm_runner.cpp 21 #include "gm.h"
142 static GrContextOptions context_options(skiagm::GM* gm = nullptr) {
149 if (gm) {
150 gm->modifyGrContextOptions(&grContextOptions);
178 skiagm::GM* gm,
184 SkASSERT(gm);
187 SkISize size = gm->getISize();
201 testCtx->makeGrContext(context_options(gm)).get(), SkBudgeted::kNo, info, 0, &props)
    [all...]
  /external/skia/fuzz/
FuzzGradients.cpp 130 SkMatrix gm; local
131 makeMatrix(fuzz, &gm);
132 logLinearGradient(pts, colors, pos, mode, flags, localMatrix.getMaybeNull(), &gm);
134 c->setMatrix(gm);
169 SkMatrix gm; local
170 makeMatrix(fuzz, &gm);
172 c->setMatrix(gm);
207 SkMatrix gm; local
208 makeMatrix(fuzz, &gm);
210 c->setMatrix(gm);
243 SkMatrix gm; local
    [all...]
  /external/skqp/fuzz/
FuzzGradients.cpp 130 SkMatrix gm; local
131 makeMatrix(fuzz, &gm);
132 logLinearGradient(pts, colors, pos, mode, flags, localMatrix.getMaybeNull(), &gm);
134 c->setMatrix(gm);
169 SkMatrix gm; local
170 makeMatrix(fuzz, &gm);
172 c->setMatrix(gm);
207 SkMatrix gm; local
208 makeMatrix(fuzz, &gm);
210 c->setMatrix(gm);
243 SkMatrix gm; local
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
softfloat64.go 197 gs, gm, ge, gi, gn := funpack64(g)
213 case fm == 0 && gm == 0 && fs != 0 && gs != 0: // -0 + -0 = -0
217 if gm == 0 {
222 case gm == 0: // f + 0 = f
227 if fe < ge || fe == ge && fm < gm {
228 f, g, fs, fm, fe, gs, gm, ge = g, f, gs, gm, ge, fs, fm, fe
233 gm <<= 2
234 trunc := gm & (1<<shift - 1)
235 gm >>= shif
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
softfloat64.go 197 gs, gm, ge, gi, gn := funpack64(g)
213 case fm == 0 && gm == 0 && fs != 0 && gs != 0: // -0 + -0 = -0
217 if gm == 0 {
222 case gm == 0: // f + 0 = f
227 if fe < ge || fe == ge && fm < gm {
228 f, g, fs, fm, fe, gs, gm, ge = g, f, gs, gm, ge, fs, fm, fe
233 gm <<= 2
234 trunc := gm & (1<<shift - 1)
235 gm >>= shif
    [all...]

Completed in 805 milliseconds

1 2 3 4