/external/autotest/site_utils/ |
gmail_lib.py | 11 $ echo "Some content" |./gmail_lib.py -s "subject" abc@bb.com xyz@gmail.com 14 $ ./gmail_lib.py -s "subject" abc@bb.com xyz@gmail.com 63 e.g. 'abc@gmail.com,xyz@gmail.com'
|
/external/bison/djgpp/ |
djunpack.bat | 28 Rem djunpack bison-XYZ.tar.gz
30 Rem djunpack bison-XYZ.tar.bz2
32 Rem where XYZ is the version number. If the argument includes leading
|
/external/llvm/lib/CodeGen/ |
LowerEmuTLS.cpp | 11 // emulated thread local storage variables. For every defined TLS variable xyz, 12 // an __emutls_v.xyz is generated. If there is non-zero initialized value 13 // an __emutls_t.xyz is also generated.
|
/external/llvm/test/DebugInfo/Generic/ |
2010-06-29-InlinedFnLocalVar.ll | 2 ; Check struct X for dead variable xyz from inlined function foo. 38 !10 = !DILocalVariable(name: "xyz", line: 10, scope: !11, file: !1, type: !12) 41 !60 = !DILocalVariable(name: "xyz", line: 10, scope: !11, file: !1, type: !12)
|
/external/llvm/test/DebugInfo/Mips/ |
InlinedFnLocalVar.ll | 2 ; Check struct X for dead variable xyz from inlined function foo. 38 !10 = !DILocalVariable(name: "xyz", line: 10, scope: !11, file: !1, type: !12) 41 !60 = !DILocalVariable(name: "xyz", line: 10, scope: !11, file: !1, type: !12)
|
/external/llvm/test/DebugInfo/X86/ |
InlinedFnLocalVar.ll | 2 ; Check struct X for dead variable xyz from inlined function foo. 38 !10 = !DILocalVariable(name: "xyz", line: 10, scope: !11, file: !1, type: !12) 41 !110 = !DILocalVariable(name: "xyz", line: 10, scope: !11, file: !1, type: !12)
|
/external/mesa3d/src/gallium/drivers/svga/ |
svga_pipe_vs.c | 66 " MOV TEMP[2].xyz, IN[2]\n" 67 " MOV TEMP[2].xyz, IN[0]\n" 68 " MOV TEMP[2].xyz, IN[1]\n"
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/ |
d3d11spikysphere.hlsl | 187 // r.xyz = normalize(input.objpos + 2 * input.objnormal);
188 r.xyz = pseudoambient * saturate(dot(normalize(input.objnormal), normalize(input.objpos)));
189 r.xyz += saturate(dot(light, normalize(input.worldnormal))) * diffuse;
|
/external/pcre/dist/testdata/ |
testinput18 | 148 /\x{100}abc(xyz(?1))/8DZ 219 AB\x{85}xxx\x{a0}XYZ 220 AB\x{a0}xxx\x{85}XYZ
|
testinput2 | 295 /(?>.*)(?<=(abcd)|(xyz))/I 398 /[a[:xyz:/ 527 /ab[xyz]/I 599 (abcd)xyz 600 xyz(abcd) 604 12(abcde(fsh)xyz(foo(bar))lmno)89 624 12(abcde(fsh)xyz(foo(bar))lmno)89 644 (abcd(xyz<p>qrs)123) 868 (abc(def)xyz) 947 /(.*(xyz))\d+\2/ [all...] |
testinput4 | 128 \x{256}XYZ 130 XYZ 452 XYZ 455 XYZ 524 abc\n\r\x{442}\x{435}\x{441}\x{442}xyz 530 abc def\x{442}\x{443}xyz\npqr 533 abc def\x{442}\x{443}xyz\npqr
|
/external/v8/test/mjsunit/ |
regexp-lookahead.js | 154 testRE(re, "xyz", false); 162 testRE(re, "xyz", true); 166 execRE(re, "xyz", ["", undefined, undefined, undefined]);
|
/frameworks/native/libs/ui/tests/ |
vec_test.cpp | 35 vec3& v3(v4.xyz); 68 vec4 v4(v3.xyz, 42); 107 v0.xyz = vec3(1,2,3);
|
/frameworks/rs/java/tests/HealingBrush/src/rs/example/android/com/healingbrush/ |
find_region.rs | 91 return convert_float3(rsGetElementAt_uchar4(image, in.x, in.y).xyz); 146 float3 orig = convert_float3(rsGetElementAt_uchar4(image, coord.x + dx, coord.y + dy).xyz); 147 float3 candidate = rsGetElementAt_float3(border_values, i).xyz;
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
saturation.rs | 155 pixel.xyz = rsMatrixMultiply(&colorMatrix_min ,pixel.xyz) * (1 - t) + 156 t * (rsMatrixMultiply(&colorMatrix_max ,pixel.xyz));
|
/external/opencv3/3rdparty/libjasper/ |
jas_icc.c | 100 static int jas_iccgetxyz(jas_stream_t *in, jas_iccxyz_t *xyz); 168 static int jas_iccputxyz(jas_stream_t *out, jas_iccxyz_t *xyz); 638 static int jas_iccgetxyz(jas_stream_t *in, jas_iccxyz_t *xyz) 640 if (jas_iccgetsint32(in, &xyz->x) || 641 jas_iccgetsint32(in, &xyz->y) || 642 jas_iccgetsint32(in, &xyz->z)) { 659 static int jas_iccputxyz(jas_stream_t *out, jas_iccxyz_t *xyz) 661 jas_iccputuint32(out, xyz->x); 662 jas_iccputuint32(out, xyz->y); 663 jas_iccputuint32(out, xyz->z) 945 jas_iccxyz_t *xyz = &attrval->data.xyz; local 963 jas_iccxyz_t *xyz = &attrval->data.xyz; local [all...] |
/external/v8/test/mjsunit/third_party/regexp-pcre/ |
regexp-pcre.js | 176 res[97] = /ab[xyz]/i; 273 res[194] = /(.*(xyz))\d+\2/i; 277 res[198] = /(?=abc).xyz/i; 349 res[270] = /()[ab]xyz/i; 350 res[271] = /(|)[ab]xyz/i; 351 res[272] = /(|c)[ab]xyz/i; 352 res[273] = /(|c?)[ab]xyz/i; 353 res[274] = /(d?|c?)[ab]xyz/i; 354 res[275] = /(d?|c)[ab]xyz/i; 540 res[461] = /(abc|pqr|123){0}[xyz]/i [all...] |
/external/opencv3/3rdparty/libjasper/jasper/ |
jas_icc.h | 88 #define JAS_ICC_COLORSPC_XYZ 0x58595a20 /* XYZ */ 115 #define JAS_ICC_REFCOLORSPC_XYZ 0x58595a20 /* CIE XYZ */ 211 #define JAS_ICC_TYPE_XYZ 0x58595a20 /* XYZ */ 236 /* XYZ type. */ 311 jas_iccxyz_t xyz; member in union:jas_iccattrval_s::__anon20820
|
/external/opencv3/3rdparty/libtiff/ |
tif_color.c | 28 * CIE L*a*b* to CIE XYZ and CIE XYZ to RGB conversion routines are taken 43 * Convert color value from the CIE L*a*b* 1976 space to CIE XYZ. 75 * Convert color value from the XYZ space to RGB. 171 * Convert color value from the YCbCr space to CIE XYZ.
|
/external/pdfium/third_party/libtiff/ |
tif_color.c | 28 * CIE L*a*b* to CIE XYZ and CIE XYZ to RGB conversion routines are taken 43 * Convert color value from the CIE L*a*b* 1976 space to CIE XYZ. 75 * Convert color value from the XYZ space to RGB. 171 * Convert color value from the YCbCr space to CIE XYZ.
|
/external/mesa3d/src/gallium/auxiliary/postprocess/ |
pp_mlaa.h | 86 " 0: TEX TEMP[1].xyz, IN[1].xyyy, SAMP[0], 2D\n" 88 " 2: TEX TEMP[1].xyz, IN[1].zwww, SAMP[0], 2D\n" 90 " 4: TEX TEMP[1].xyz, IN[2].xyyy, SAMP[0], 2D\n" 92 " 6: TEX TEMP[1].xyz, IN[2].zwww, SAMP[0], 2D\n" 94 " 8: TEX TEMP[1].xyz, IN[0].xyyy, SAMP[0], 2D\n" 201 " 14: MAD TEMP[3].xyz, CONST[0].xyyy, TEMP[4].xyyy, TEMP[1].xyyy\n" 226 " 39: MAD TEMP[4].xyz, CONST[0].xyyy, TEMP[5].xyyy, TEMP[3].xyyy\n" 260 " 73: MUL TEMP[5].xyz, TEMP[3].xyyy, IMM[0].zzzz\n" 275 " 88: MAD TEMP[5].xyz, CONST[0].xyyy, TEMP[3].yxxx, TEMP[1].xyyy\n" 300 "113: MAD TEMP[5].xyz, CONST[0].xyyy, TEMP[4].yxxx, TEMP[2].xyyy\n [all...] |
/device/generic/goldfish/camera/fake-pipeline2/ |
Scene.cpp | 190 // Converting for xyY to XYZ: 206 ALOGV("Sun XYZ: %f, %f, %f", 208 ALOGV("Sun shade XYZ: %f, %f, %f", 265 ALOGV("Direct XYZ: %f, %f, %f", 267 ALOGV("Shade XYZ: %f, %f, %f", 271 // Converting for xyY to XYZ: 293 ALOGV("Mat %d XYZ: %f, %f, %f", i, matXYZ[0], matXYZ[1], matXYZ[2]);
|
/external/pdfium/third_party/lcms2-2.6/src/ |
cmsps2.c | 38 PostScript does use XYZ as its internal PCS. But since PostScript 43 convert Lab <-> XYZ is also included. 51 the device -> XYZ transform. These cases identifies monochrome profiles (often 59 no interpolation tables, I do the conversion directly to XYZ 75 On simpler profiles, the PCS is already XYZ, so no conversion is required. 83 the conversion directly to XYZ 138 /RangeABC <.. used for XYZ -> Lab> 147 The following stages are used to convert from XYZ to Lab 179 The following stages are used to convert Lab to XYZ 442 // Lab -> XYZ, see the discussion abov [all...] |
cmsio1.c | 225 // XYZ PCS in encoded in 1.15 format, and the matrix output comes in 0..0xffff range, so 268 // Read the DToAX tag, adjusting the encoding of Lab or XYZ if neded 279 // input and output of transform are in lcms 0..1 encoding. If XYZ or Lab spaces are used, 280 // these need to be normalized into the appropriate ranges (Lab = 100,0,0, XYZ=1.0,1.0,1.0) 410 // XYZ -> Gray or Lab -> Gray. Since we only know the GrayTRC, we need to do some assumptions. Gray component will be 411 // given by Y on XYZ PCS and by L* on Lab PCS, Both across inverse TRC curve. 412 // The complete pipeline on XYZ is Matrix[3:1] -> Tone curve and in Lab Matrix[3:1] -> Tone Curve as well. 471 // XYZ PCS in encoded in 1.15 format, and the matrix input should come in 0..0xffff range, so 541 // Read the DToAX tag, adjusting the encoding of Lab or XYZ if neded 552 // If PCS is Lab or XYZ, the floating point tag is accepting data in the space encoding [all...] |
/external/opencv3/3rdparty/libpng/ |
pngset.c | 75 png_XYZ XYZ; 78 png_debug1(1, "in %s storage function", "cHRM XYZ fixed"); 83 XYZ.redX = int_red_X; 84 XYZ.redY = int_red_Y; 85 XYZ.redZ = int_red_Z; 86 XYZ.greenX = int_green_X; 87 XYZ.greenY = int_green_Y; 88 XYZ.greenZ = int_green_Z; 89 XYZ.blueX = int_blue_X; 90 XYZ.blueY = int_blue_Y [all...] |