/external/opencv3/modules/cudalegacy/src/cuda/ |
gmg.cu | 76 __device__ float findFeature(const int color, const PtrStepi& colors, const PtrStepf& weights, const int x, const int y, const int nfeatures) 80 if (color == colors(fy, x)) 101 __device__ bool insertFeature(const int color, const float weight, PtrStepi colors, PtrStepf weights, const int x, const int y, int& nfeatures) 105 if (color == colors(fy, x)) 131 colors(idx, x) = color; 137 colors(nfeatures * c_height + y, x) = color; 227 void update_gpu(PtrStepSzb frame, PtrStepb fgmask, PtrStepSzi colors, PtrStepf weights, PtrStepi nfeatures, 235 update<SrcT><<<grid, block, 0, stream>>>((PtrStepSz<SrcT>) frame, fgmask, colors, weights, nfeatures, frameNum, learningRate, updateBackgroundModel); 243 template void update_gpu<uchar >(PtrStepSzb frame, PtrStepb fgmask, PtrStepSzi colors, PtrStepf weights, PtrStepi nfeatures, int frameNum, float learningRate, bool updateBackgroundModel, cudaStream_t stream); 244 template void update_gpu<uchar3 >(PtrStepSzb frame, PtrStepb fgmask, PtrStepSzi colors, PtrStepf weights, PtrStepi nfeatures, int frameNum, float learningRate, bool updateBackgroundMode (…) [all...] |
/external/giflib/ |
gifalloc.c | 55 Object->Colors = (GifColorType *)calloc(ColorCount, sizeof(GifColorType)); 56 if (Object->Colors == (GifColorType *) NULL) { 66 memcpy((char *)Object->Colors, 80 (void)free(Object->Colors); 96 Object->Colors[i + j].Red, 97 Object->Colors[i + j].Green, 98 Object->Colors[i + j].Blue); 108 fit into 256 colors, NULL is returned, the allocated union otherwise. 109 ColorIn1 is copied as is to ColorUnion, while colors from ColorIn2 are 138 ColorUnion->Colors[i] = ColorIn1->Colors[i] [all...] |
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
SearchOrbView.java | 47 private Colors mColors; 58 * A set of colors used to display the search orb. 60 public static class Colors { 65 * Other colors are provided by the framework. 69 public Colors(@ColorInt int color) { 74 * Constructs a color set using the given colors for the search orb. 75 * Other colors are provided by the framework. 80 public Colors(@ColorInt int color, @ColorInt int brightColor) { 85 * Constructs a color set using the given colors. 91 public Colors(@ColorInt int color, @ColorInt int brightColor, @ColorInt int iconColor) [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/ |
Colors.java | 21 /** A general purpose class containing named colors that can be changed at will. For example, the markup language defined by the 22 * {@code BitmapFontCache} class uses this class to retrieve colors and the user can define his own colors. 25 public final class Colors { 39 * {@code Colors.getColors().get(name)} 49 * expression {@code Colors.getColors().put(name, color)} 59 /** Resets the color map to the predefined colors. */ 105 private Colors () {
|
/external/skia/experimental/FileReaderApp/ |
FileReaderWindow.mm | 10 SkColor colors[] = { SK_ColorRED, SK_ColorGREEN }; 12 SkGradientShader::CreateLinear(pts, colors, pos, 2,
|
/external/skia/gm/ |
gradtext.cpp | 15 SkColor colors[] = { SK_ColorRED, 0x0000FF00, SK_ColorBLUE }; local 17 return SkGradientShader::CreateLinear(pts, colors, nullptr, 18 SK_ARRAY_COUNT(colors), 24 SkColor colors[] = { SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE }; local 26 return SkGradientShader::CreateLinear(pts, colors, nullptr, 27 SK_ARRAY_COUNT(colors), 32 SkColor colors[] = { SK_ColorGREEN, SK_ColorGREEN }; local 34 return SkGradientShader::CreateLinear(pts, colors, nullptr, 2,
|
colortype.cpp | 25 const SkColor colors[] = { variable 31 SkShader* s = SkGradientShader::CreateSweep(0,0, colors, nullptr, 32 SK_ARRAY_COUNT(colors), 0, &local);
|
/external/skia/src/opts/ |
SkBitmapProcState_opts_SSE2.h | 15 int count, uint32_t* colors); 18 int count, uint32_t* colors);
|
/external/chromium-trace/catapult/third_party/graphy/graphy/ |
util.py | 3 Labels that look like hex colors will match too, unfortunately."""
|
/external/mesa3d/docs/ |
ARB_color_buffer_float.txt | 3 - For fragment programs with ARB_fog_* options, colors are clamped before fog application regardless of the fragment clamping setting (this depends on spec interpretation)
|
/external/opencv3/samples/cpp/ |
connected_components.cpp | 18 std::vector<Vec3b> colors(nLabels); 19 colors[0] = Vec3b(0, 0, 0);//background 21 colors[label] = Vec3b( (rand()&255), (rand()&255), (rand()&255) ); 28 pixel = colors[label];
|
/external/skia/include/client/android/ |
SkAvoidXfermode.h | 34 Tolerance near 0: avoid any colors even remotely similar to the op-color 35 Tolerance near 255: avoid only colors nearly identical to the op-color 39 Tolerance near 0: draw only on colors that are nearly identical to the op-color 40 Tolerance near 255: draw on any colors even remotely similar to the op-color
|
/external/skia/src/gpu/batches/ |
GrDrawVerticesBatch.h | 26 GrColor fColor; // Only used if there are no per-vertex colors 37 const GrColor* colors, const SkPoint* localCoords, 40 indices, indexCount, colors, localCoords, bounds); 59 const GrColor* colors, const SkPoint* localCoords, const SkRect& bounds);
|
GrDrawAtlasBatch.h | 26 const SkColor* colors) { 27 return new GrDrawAtlasBatch(geometry, viewMatrix, spriteCount, xforms, rects, colors); 52 const SkRSXform* xforms, const SkRect* rects, const SkColor* colors);
|
/external/skia/tests/ |
CTest.cpp | 25 sk_color_t colors[] = { local 32 &point, 1.0f, colors, nullptr, 2, tilemode, nullptr); 38 shader = sk_shader_new_sweep_gradient(&point, colors, nullptr, 2, nullptr); 45 &point, 10.0f, &point2, 50.0f, colors, nullptr, 2, tilemode, nullptr);
|
/frameworks/base/core/java/android/content/res/ |
package.html | 4 such as raw asset files, colors, drawables, media or other other files
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
color.dlg | 14 LTEXT "&Basic colors:",-1,4,4,140,9 17 LTEXT "&Custom colors:",-1,4,106,140,9 20 PUSHBUTTON "&Define Custom Colors >>" COLOR_MIX,4,150,140,14,WS_TABSTOP | WS_GROUP 54 PUSHBUTTON "&Add to Custom Colors",COLOR_ADD,152,166,142,14,WS_GROUP | WS_TABSTOP
|
/prebuilts/gdb/darwin-x86/lib/python2.7/curses/ |
__init__.py | 41 # This is a similar wrapper for start_color(), which adds the COLORS and 48 if hasattr(_curses, 'COLORS'): 49 curses.COLORS = _curses.COLORS
|
/prebuilts/gdb/linux-x86/lib/python2.7/curses/ |
__init__.py | 41 # This is a similar wrapper for start_color(), which adds the COLORS and 48 if hasattr(_curses, 'COLORS'): 49 curses.COLORS = _curses.COLORS
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/ |
__init__.py | 41 # This is a similar wrapper for start_color(), which adds the COLORS and 48 if hasattr(_curses, 'COLORS'): 49 curses.COLORS = _curses.COLORS
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/ |
__init__.py | 41 # This is a similar wrapper for start_color(), which adds the COLORS and 48 if hasattr(_curses, 'COLORS'): 49 curses.COLORS = _curses.COLORS
|
/external/dexmaker/javadoc/ |
stylesheet.css | 3 /* Define colors, fonts and other style attributes here to override the defaults */ 11 /* Table colors */ 21 /* Navigation bar fonts and colors */
|
/external/jsr305/javadoc/ |
stylesheet.css | 3 /* Define colors, fonts and other style attributes here to override the defaults */ 11 /* Table colors */ 21 /* Navigation bar fonts and colors */
|
/external/jsr330/javadoc/ |
stylesheet.css | 3 /* Define colors, fonts and other style attributes here to override the defaults */ 11 /* Table colors */ 21 /* Navigation bar fonts and colors */
|
/external/owasp/sanitizer/distrib/javadoc/ |
stylesheet.css | 3 /* Define colors, fonts and other style attributes here to override the defaults */ 11 /* Table colors */ 21 /* Navigation bar fonts and colors */
|