/external/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_formats.c | 127 F3(A, B8G8R8X8_UNORM, BGRX8_UNORM, B, G, R, xx, UNORM, A8B8G8R8, TD), 129 F3(A, B8G8R8X8_SRGB, BGRX8_SRGB, B, G, R, xx, UNORM, A8B8G8R8, TD), 131 F3(A, R8G8B8X8_UNORM, RGBX8_UNORM, R, G, B, xx, UNORM, A8B8G8R8, TB), 133 F3(A, R8G8B8X8_SRGB, RGBX8_SRGB, R, G, B, xx, UNORM, A8B8G8R8, TB), 135 ZX(B, Z16_UNORM, Z16_UNORM, R, R, R, xx, UNORM, Z16, TZ), 136 ZX(A, Z32_FLOAT, Z32_FLOAT, R, R, R, xx, FLOAT, ZF32, TZ), 137 ZX(A, Z24X8_UNORM, Z24_X8_UNORM, R, R, R, xx, UNORM, X8Z24, TZ), 138 SZ(A, X8Z24_UNORM, S8_Z24_UNORM, G, G, G, xx, UNORM, Z24S8, TZ), 139 ZS(A, Z24_UNORM_S8_UINT, Z24_S8_UNORM, R, R, R, xx, UNORM, S8Z24, TZ), 140 SZ(A, S8_UINT_Z24_UNORM, S8_Z24_UNORM, G, G, G, xx, UNORM, Z24S8, TZ), [all …]
|
/external/libvpx/libvpx/vp8/common/x86/ |
D | subpixel_sse2.asm | 74 … punpcklbw xmm3, xmm0 ; xx05 xx04 xx03 xx02 xx01 xx01 xx-1 xx-2 75 …psrldq xmm4, 1 ; xx 0d 0c 0b 0a 09 08 07 06 05 04 03 02 01 00… 78 … punpcklbw xmm4, xmm0 ; xx06 xx05 xx04 xx03 xx02 xx01 xx00 xx-1 80 …psrldq xmm5, 2 ; xx xx 0d 0c 0b 0a 09 08 07 06 05 04 03 02 01… 85 …psrldq xmm6, 3 ; xx xx xx 0d 0c 0b 0a 09 08 07 06 05 04 03 02… 90 …psrldq xmm7, 4 ; xx xx xx xx 0d 0c 0b 0a 09 08 07 06 05 04 03… 95 …psrldq xmm1, 5 ; xx xx xx xx xx 0d 0c 0b 0a 09 08 07 06 05 04… 203 … punpcklbw xmm3, xmm0 ; xx05 xx04 xx03 xx02 xx01 xx01 xx-1 xx-2 204 …psrldq xmm4, 1 ; xx 0d 0c 0b 0a 09 08 07 06 05 04 03 02 01 00… 207 … punpcklbw xmm4, xmm0 ; xx06 xx05 xx04 xx03 xx02 xx01 xx00 xx-1 [all …]
|
D | loopfilter_sse2.asm | 654 … movq xmm4, [rsi] ; xx xx xx xx xx xx xx xx 07 06 05 04 03 02 01 00 655 … movq xmm1, [rdi] ; xx xx xx xx xx xx xx xx 17 16 15 14 13 12 11 10 656 … movq xmm0, [rsi+2*rax] ; xx xx xx xx xx xx xx xx 27 26 25 24 23 22 21 20 657 … movq xmm7, [rdi+2*rax] ; xx xx xx xx xx xx xx xx 37 36 35 34 33 32 31 30 658 … movq xmm5, [rsi+4*rax] ; xx xx xx xx xx xx xx xx 47 46 45 44 43 42 41 40 659 … movq xmm2, [rdi+4*rax] ; xx xx xx xx xx xx xx xx 57 56 55 54 53 52 51 50 663 … movq xmm1, [rdi+2*rcx] ; xx xx xx xx xx xx xx xx 77 76 75 74 73 72 71 70 668 … movq xmm7, [rsi+2*rcx] ; xx xx xx xx xx xx xx xx 67 66 65 64 63 62 61 60 703 … movq xmm2, [rsi] ; xx xx xx xx xx xx xx xx 87 86 85 84 83 82 81 80 704 … movq xmm6, [rdi] ; xx xx xx xx xx xx xx xx 97 96 95 94 93 92 91 90 [all …]
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/ec/custom/sec/ |
D | SecP384R1Field.java | 40 public static void addExt(int[] xx, int[] yy, int[] zz) in addExt() argument 42 int c = Nat.add(24, xx, yy, zz); in addExt() 139 public static void reduce(int[] xx, int[] z) in reduce() argument 141 long xx16 = xx[16] & M, xx17 = xx[17] & M, xx18 = xx[18] & M, xx19 = xx[19] & M; in reduce() 142 long xx20 = xx[20] & M, xx21 = xx[21] & M, xx22 = xx[22] & M, xx23 = xx[23] & M; in reduce() 146 long t0 = (xx[12] & M) + xx20 - n; in reduce() 147 long t1 = (xx[13] & M) + xx22; in reduce() 148 long t2 = (xx[14] & M) + xx22 + xx23; in reduce() 149 long t3 = (xx[15] & M) + xx23; in reduce() 156 cc += (xx[0] & M) + t7; in reduce() [all …]
|
D | SecP256R1Field.java | 37 public static void addExt(int[] xx, int[] yy, int[] zz) in addExt() argument 39 int c = Nat.add(16, xx, yy, zz); in addExt() 142 public static void reduce(int[] xx, int[] z) in reduce() argument 144 long xx08 = xx[8] & M, xx09 = xx[9] & M, xx10 = xx[10] & M, xx11 = xx[11] & M; in reduce() 145 long xx12 = xx[12] & M, xx13 = xx[13] & M, xx14 = xx[14] & M, xx15 = xx[15] & M; in reduce() 161 cc += (xx[0] & M) - t3 - t7; in reduce() 164 cc += (xx[1] & M) + t1 - t4 - t6; in reduce() 167 cc += (xx[2] & M) + t2 - t5; in reduce() 170 cc += (xx[3] & M) + (t3 << 1) + t7 - t6; in reduce() 173 cc += (xx[4] & M) + (t4 << 1) + xx14 - t1; in reduce() [all …]
|
D | SecP224R1Field.java | 38 public static void addExt(int[] xx, int[] yy, int[] zz) in addExt() argument 40 int c = Nat.add(14, xx, yy, zz); in addExt() 149 public static void reduce(int[] xx, int[] z) in reduce() argument 151 long xx10 = xx[10] & M, xx11 = xx[11] & M, xx12 = xx[12] & M, xx13 = xx[13] & M; in reduce() 155 long t0 = (xx[7] & M) + xx11 - n; in reduce() 156 long t1 = (xx[8] & M) + xx12; in reduce() 157 long t2 = (xx[9] & M) + xx13; in reduce() 160 cc += (xx[0] & M) - t0; in reduce() 163 cc += (xx[1] & M) - t1; in reduce() 166 cc += (xx[2] & M) - t2; in reduce() [all …]
|
D | SecP192R1Field.java | 37 public static void addExt(int[] xx, int[] yy, int[] zz) in addExt() argument 39 int c = Nat.add(12, xx, yy, zz); in addExt() 148 public static void reduce(int[] xx, int[] z) in reduce() argument 150 long xx06 = xx[6] & M, xx07 = xx[7] & M, xx08 = xx[8] & M; in reduce() 151 long xx09 = xx[9] & M, xx10 = xx[10] & M, xx11 = xx[11] & M; in reduce() 157 cc += (xx[0] & M) + t0; in reduce() 160 cc += (xx[1] & M) + t1; in reduce() 167 cc += (xx[2] & M) + t0; in reduce() 170 cc += (xx[3] & M) + t1; in reduce() 177 cc += (xx[4] & M) + t0; in reduce() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/ |
D | SecP384R1Field.java | 36 public static void addExt(int[] xx, int[] yy, int[] zz) in addExt() argument 38 int c = Nat.add(24, xx, yy, zz); in addExt() 135 public static void reduce(int[] xx, int[] z) in reduce() argument 137 long xx16 = xx[16] & M, xx17 = xx[17] & M, xx18 = xx[18] & M, xx19 = xx[19] & M; in reduce() 138 long xx20 = xx[20] & M, xx21 = xx[21] & M, xx22 = xx[22] & M, xx23 = xx[23] & M; in reduce() 142 long t0 = (xx[12] & M) + xx20 - n; in reduce() 143 long t1 = (xx[13] & M) + xx22; in reduce() 144 long t2 = (xx[14] & M) + xx22 + xx23; in reduce() 145 long t3 = (xx[15] & M) + xx23; in reduce() 152 cc += (xx[0] & M) + t7; in reduce() [all …]
|
D | SecP256R1Field.java | 33 public static void addExt(int[] xx, int[] yy, int[] zz) in addExt() argument 35 int c = Nat.add(16, xx, yy, zz); in addExt() 138 public static void reduce(int[] xx, int[] z) in reduce() argument 140 long xx08 = xx[8] & M, xx09 = xx[9] & M, xx10 = xx[10] & M, xx11 = xx[11] & M; in reduce() 141 long xx12 = xx[12] & M, xx13 = xx[13] & M, xx14 = xx[14] & M, xx15 = xx[15] & M; in reduce() 157 cc += (xx[0] & M) - t3 - t7; in reduce() 160 cc += (xx[1] & M) + t1 - t4 - t6; in reduce() 163 cc += (xx[2] & M) + t2 - t5; in reduce() 166 cc += (xx[3] & M) + (t3 << 1) + t7 - t6; in reduce() 169 cc += (xx[4] & M) + (t4 << 1) + xx14 - t1; in reduce() [all …]
|
D | SecP224R1Field.java | 34 public static void addExt(int[] xx, int[] yy, int[] zz) in addExt() argument 36 int c = Nat.add(14, xx, yy, zz); in addExt() 145 public static void reduce(int[] xx, int[] z) in reduce() argument 147 long xx10 = xx[10] & M, xx11 = xx[11] & M, xx12 = xx[12] & M, xx13 = xx[13] & M; in reduce() 151 long t0 = (xx[7] & M) + xx11 - n; in reduce() 152 long t1 = (xx[8] & M) + xx12; in reduce() 153 long t2 = (xx[9] & M) + xx13; in reduce() 156 cc += (xx[0] & M) - t0; in reduce() 159 cc += (xx[1] & M) - t1; in reduce() 162 cc += (xx[2] & M) - t2; in reduce() [all …]
|
D | SecP192R1Field.java | 33 public static void addExt(int[] xx, int[] yy, int[] zz) in addExt() argument 35 int c = Nat.add(12, xx, yy, zz); in addExt() 144 public static void reduce(int[] xx, int[] z) in reduce() argument 146 long xx06 = xx[6] & M, xx07 = xx[7] & M, xx08 = xx[8] & M; in reduce() 147 long xx09 = xx[9] & M, xx10 = xx[10] & M, xx11 = xx[11] & M; in reduce() 153 cc += (xx[0] & M) + t0; in reduce() 156 cc += (xx[1] & M) + t1; in reduce() 163 cc += (xx[2] & M) + t0; in reduce() 166 cc += (xx[3] & M) + t1; in reduce() 173 cc += (xx[4] & M) + t0; in reduce() [all …]
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/math/ec/custom/sec/ |
D | SecP384R1Field.java | 40 public static void addExt(int[] xx, int[] yy, int[] zz) in addExt() argument 42 int c = Nat.add(24, xx, yy, zz); in addExt() 139 public static void reduce(int[] xx, int[] z) in reduce() argument 141 long xx16 = xx[16] & M, xx17 = xx[17] & M, xx18 = xx[18] & M, xx19 = xx[19] & M; in reduce() 142 long xx20 = xx[20] & M, xx21 = xx[21] & M, xx22 = xx[22] & M, xx23 = xx[23] & M; in reduce() 146 long t0 = (xx[12] & M) + xx20 - n; in reduce() 147 long t1 = (xx[13] & M) + xx22; in reduce() 148 long t2 = (xx[14] & M) + xx22 + xx23; in reduce() 149 long t3 = (xx[15] & M) + xx23; in reduce() 156 cc += (xx[0] & M) + t7; in reduce() [all …]
|
D | SecP256R1Field.java | 37 public static void addExt(int[] xx, int[] yy, int[] zz) in addExt() argument 39 int c = Nat.add(16, xx, yy, zz); in addExt() 142 public static void reduce(int[] xx, int[] z) in reduce() argument 144 long xx08 = xx[8] & M, xx09 = xx[9] & M, xx10 = xx[10] & M, xx11 = xx[11] & M; in reduce() 145 long xx12 = xx[12] & M, xx13 = xx[13] & M, xx14 = xx[14] & M, xx15 = xx[15] & M; in reduce() 161 cc += (xx[0] & M) - t3 - t7; in reduce() 164 cc += (xx[1] & M) + t1 - t4 - t6; in reduce() 167 cc += (xx[2] & M) + t2 - t5; in reduce() 170 cc += (xx[3] & M) + (t3 << 1) + t7 - t6; in reduce() 173 cc += (xx[4] & M) + (t4 << 1) + xx14 - t1; in reduce() [all …]
|
D | SecP224R1Field.java | 38 public static void addExt(int[] xx, int[] yy, int[] zz) in addExt() argument 40 int c = Nat.add(14, xx, yy, zz); in addExt() 149 public static void reduce(int[] xx, int[] z) in reduce() argument 151 long xx10 = xx[10] & M, xx11 = xx[11] & M, xx12 = xx[12] & M, xx13 = xx[13] & M; in reduce() 155 long t0 = (xx[7] & M) + xx11 - n; in reduce() 156 long t1 = (xx[8] & M) + xx12; in reduce() 157 long t2 = (xx[9] & M) + xx13; in reduce() 160 cc += (xx[0] & M) - t0; in reduce() 163 cc += (xx[1] & M) - t1; in reduce() 166 cc += (xx[2] & M) - t2; in reduce() [all …]
|
D | SecP192R1Field.java | 37 public static void addExt(int[] xx, int[] yy, int[] zz) in addExt() argument 39 int c = Nat.add(12, xx, yy, zz); in addExt() 148 public static void reduce(int[] xx, int[] z) in reduce() argument 150 long xx06 = xx[6] & M, xx07 = xx[7] & M, xx08 = xx[8] & M; in reduce() 151 long xx09 = xx[9] & M, xx10 = xx[10] & M, xx11 = xx[11] & M; in reduce() 157 cc += (xx[0] & M) + t0; in reduce() 160 cc += (xx[1] & M) + t1; in reduce() 167 cc += (xx[2] & M) + t0; in reduce() 170 cc += (xx[3] & M) + t1; in reduce() 177 cc += (xx[4] & M) + t0; in reduce() [all …]
|
/external/libxml2/result/errors/ |
D | 759573.xml.err | 2 ELEMENT t (A)><!ENTITY % xx '%<![INCLUDE[000%ஸ000%z;'><!ENTITY 5 LEMENT t (A)><!ENTITY % xx '%<![INCLUDE[000%ஸ000%z;'><!ENTITYz 8 LEMENT t (A)><!ENTITY % xx '%<![INCLUDE[000%ஸ000%z;'><!ENTITYz 11 T t (A)><!ENTITY % xx '%<![INCLUDE[000%ஸ000%z;'><!ENTITYz>%xx; 18 T t (A)><!ENTITY % xx '%<![INCLUDE[000%ஸ000%z;'><!ENTITYz>%xx; 25 T t (A)><!ENTITY % xx '%<![INCLUDE[000%ஸ000%z;'><!ENTITYz>%xx; 28 T t (A)><!ENTITY % xx '%<![INCLUDE[000%ஸ000%z;'><!ENTITYz>%xx; 31 T t (A)><!ENTITY % xx '%<![INCLUDE[000%ஸ000%z;'><!ENTITYz>%xx;
|
D | 759573.xml.ent | 2 ELEMENT t (A)><!ENTITY % xx '%<![INCLUDE[000%ஸ000%z;'><!ENTITY 5 LEMENT t (A)><!ENTITY % xx '%<![INCLUDE[000%ஸ000%z;'><!ENTITYz 8 LEMENT t (A)><!ENTITY % xx '%<![INCLUDE[000%ஸ000%z;'><!ENTITYz 11 T t (A)><!ENTITY % xx '%<![INCLUDE[000%ஸ000%z;'><!ENTITYz>%xx; 18 T t (A)><!ENTITY % xx '%<![INCLUDE[000%ஸ000%z;'><!ENTITYz>%xx; 25 T t (A)><!ENTITY % xx '%<![INCLUDE[000%ஸ000%z;'><!ENTITYz>%xx; 28 T t (A)><!ENTITY % xx '%<![INCLUDE[000%ஸ000%z;'><!ENTITYz>%xx; 31 T t (A)><!ENTITY % xx '%<![INCLUDE[000%ஸ000%z;'><!ENTITYz>%xx;
|
/external/toybox/toys/other/ |
D | watch.c | 70 unsigned width, height, i, cmdlen, len, xx = xx, yy = yy, active = active; in watch_main() local 116 xx = 0; in watch_main() 156 if (xx==width) { in watch_main() 157 xx = 0; in watch_main() 160 xx += crunch_str(&ss, width-xx, stdout, 0, watch_escape); in watch_main() 161 if (xx==width) { in watch_main() 162 xx = 0; in watch_main() 174 if (cc=='\n') putchar('\r'), xx = 0; in watch_main() 177 if (cc=='\b' && xx) xx--; in watch_main() 179 xx = (xx|7)+1; in watch_main() [all …]
|
/external/iproute2/ |
D | README.decnet | 13 ip link set ethX address xx:xx:xx:xx:xx:xx 14 (where xx:xx:xx:xx:xx:xx is the MAC address for your DECnet node
|
/external/pcre/dist2/testdata/ |
D | testinput24 | 269 xx/xx/xx/xax/xx/xb 272 xx/xx/xx/xax 273 xx/xx/xx/xax/xx 276 xx/xx/xx/xax/xx/xb 277 xx/xx/xx/xax/xx/x
|
/external/llvm-project/libclc/generic/lib/math/ |
D | sincosD_piby4.h | 26 __libclc__sincos_piby4(double x, double xx) in __libclc__sincos_piby4() argument 71 x2*x2, fma(x, xx, (1.0 - t) - r)); in __libclc__sincos_piby4() 74 ret.lo = x - fma(-x3, sc1, fma(fma(-x3, sp, 0.5*xx), x2, -xx)); in __libclc__sincos_piby4() 81 __clc_tan_piby4(double x, double xx) in __clc_tan_piby4() argument 95 double tx = fma(-transform, x, piby4_lead) + fma(-transform, xx, piby4_tail); in __clc_tan_piby4() 98 xx = c ? 0.0 : xx; in __clc_tan_piby4() 102 double r = fma(2.0, x*xx, x*x); in __clc_tan_piby4() 114 double t2 = fma(MATH_DIVIDE(a, b), x*r, xx); in __clc_tan_piby4()
|
/external/fonttools/Lib/fontTools/misc/ |
D | transform.py | 142 xx: float = 1 variable in Transform 159 xx, xy, yx, yy, dx, dy = self 160 return (xx*x + yx*y + dx, xy*x + yy*y + dy) 171 xx, xy, yx, yy, dx, dy = self 172 return [(xx*x + yx*y + dx, xy*x + yy*y + dy) for x, y in points] 286 xx, xy, yx, yy, dx, dy = self 287 det = xx*yy - yx*xy 288 xx, xy, yx, yy = yy/det, -xy/det, -yx/det, xx/det 289 dx, dy = -xx*dx - yx*dy, -xy*dx - yy*dy 290 return self.__class__(xx, xy, yx, yy, dx, dy)
|
/external/freetype/src/base/ |
D | ftlcdfil.c | 104 FT_UInt val, xx; in ft_lcd_filter_fir() local 118 for ( xx = 2; xx < width; xx++ ) in ft_lcd_filter_fir() 120 val = line[xx]; in ft_lcd_filter_fir() 127 line[xx - 2] = FT_SHIFTCLAMP( fir[0] ); in ft_lcd_filter_fir() 130 line[xx - 2] = FT_SHIFTCLAMP( fir[1] ); in ft_lcd_filter_fir() 131 line[xx - 1] = FT_SHIFTCLAMP( fir[2] ); in ft_lcd_filter_fir() 215 FT_UInt xx; in _ft_lcd_filter_legacy() local 218 for ( xx = 0; xx < width; xx += 3 ) in _ft_lcd_filter_legacy() 224 p = line[xx]; in _ft_lcd_filter_legacy() 229 p = line[xx + 1]; in _ft_lcd_filter_legacy() [all …]
|
/external/rust/crates/libm/src/math/ |
D | exp.rs | 92 let xx: f64; in exp() localVariable 146 xx = x * x; in exp() 147 c = x - xx * (P1 + xx * (P2 + xx * (P3 + xx * (P4 + xx * P5)))); in exp()
|
/external/toybox/toys/posix/ |
D | sort.c | 175 char *xx,*yy; in compare_values() local 176 double dx = strtod(x,&xx), dy = strtod(y,&yy); in compare_values() 181 if (x==xx) return y==yy ? 0 : -1; in compare_values() 201 char *xx,*yy; in compare_values() local 203 xx = strptime(x,"%b",&thyme); in compare_values() 206 if (!xx) return !yy ? 0 : -1; in compare_values() 215 long long xx = strtoll(x, &x, 10), yy = strtoll(y, &y, 10); in compare_values() local 217 if (xx<yy) return -1; in compare_values() 218 if (xx>yy) return 1; in compare_values() 220 char xx = *x ? *x : x[-1], yy = *y ? *y : y[-1]; in compare_values() local [all …]
|