Searched refs:iout (Results 1 – 11 of 11) sorted by relevance
/third_party/glslang/Test/ |
D | spv.intOps.vert | 19 out ivec4 iout; 24 iout = ivec4(0); 42 iout += i4outLow + i4outHi; 46 iout.xyz += i3out; 49 iout.x += i1out; 54 iout.x += bitfieldExtract(i1, 4, 5); 56 iout.xyz += bitfieldInsert(i3, i3, 4, 5); 58 iout.xy += bitfieldReverse(i2); 60 iout.x += bitCount(i1); 61 iout.xyz += bitCount(u3); [all …]
|
D | 400.frag | 188 out uint iout; 192 iout = uu & i; 193 iout += uu ^ i; 194 iout += i | uu;
|
D | spv.300layoutp.vert | 8 flat out int iout; 44 iout = tblock.iuin + int(uiuin) + aiv2.y;
|
D | spv.300layout.vert | 8 flat out int iout; 44 iout = tblock.iuin + int(uiuin) + aiv2.y;
|
/third_party/glslang/Test/baseResults/ |
D | spv.intOps.vert.out | 12 Name 9 "iout" 41 Decorate 9(iout) Location 1 61 9(iout): 8(ptr) Variable Output 133 Store 9(iout) 11 195 96: 7(ivec4) Load 9(iout) 197 Store 9(iout) 97 210 115: 7(ivec4) Load 9(iout) 213 118: 7(ivec4) Load 9(iout) 215 Store 9(iout) 119 227 136: 135(ptr) AccessChain 9(iout) 16 [all …]
|
D | spv.300layoutp.vert.out | 32 Name 60 "iout" 77 Decorate 60(iout) Flat 78 Decorate 60(iout) Location 2 117 60(iout): 59(ptr) Variable Output 173 Store 60(iout) 77
|
D | spv.300layout.vert.out | 32 Name 108 "iout" 77 Decorate 108(iout) Flat 78 Decorate 108(iout) Location 2 118 108(iout): 107(ptr) Variable Output 222 Store 108(iout) 125
|
D | 400.frag.out | 479 0:192 'iout' ( out uint) 485 0:193 'iout' ( out uint) 491 0:194 'iout' ( out uint) 552 0:? 'iout' ( out uint) 727 0:? 'iout' ( out uint)
|
/third_party/optimized-routines/math/test/rtest/ |
D | semi.c | 489 char *test_modf(uint32 *x, uint32 *fout, uint32 *iout) { in test_modf() argument 498 fout[0] = iout[0] = x[0]; in test_modf() 499 fout[1] = iout[1] = x[1]; in test_modf() 503 test_rint(x, iout, 0, 0); in test_modf() 504 fh = x[0] - iout[0]; in test_modf() 505 fl = x[1] - iout[1]; in test_modf() 511 if (!(iout[0] & 0x7FFFFFFF) && !iout[1]) { /* no integer part */ in test_modf() 526 char *test_modff(uint32 *x, uint32 *fout, uint32 *iout) { in test_modff() argument 535 *fout = *iout = *x; in test_modff() 539 test_rintf(x, iout, 0, 0); in test_modff() [all …]
|
D | semi.h | 18 char *test_modf(uint32 *x, uint32 *iout, uint32 *fout); 24 char *test_modff(uint32 *x, uint32 *iout, uint32 *fout);
|
/third_party/skia/third_party/externals/libpng/ |
D | pngerror.c | 438 int iout = 0, ishift = 24; in png_format_buffer() local 447 buffer[iout++] = PNG_LITERAL_LEFT_SQUARE_BRACKET; in png_format_buffer() 448 buffer[iout++] = png_digit[(c & 0xf0) >> 4]; in png_format_buffer() 449 buffer[iout++] = png_digit[c & 0x0f]; in png_format_buffer() 450 buffer[iout++] = PNG_LITERAL_RIGHT_SQUARE_BRACKET; in png_format_buffer() 455 buffer[iout++] = (char)c; in png_format_buffer() 460 buffer[iout] = '\0'; in png_format_buffer() 466 buffer[iout++] = ':'; in png_format_buffer() 467 buffer[iout++] = ' '; in png_format_buffer() 470 buffer[iout++] = error_message[iin++]; in png_format_buffer() [all …]
|