/external/mesa3d/src/gallium/auxiliary/rbug/ |
D | rbug_internal.h | 46 #define PAD(from, to) \ macro 53 PAD(__len, size); \ 60 PAD(__len, size); \ 66 PAD(__pos, size); \ 74 PAD(__pos, size); \ 81 PAD(pos, size); \ 93 PAD(pos, size); \
|
D | rbug_context.c | 51 PAD(__len, 8); in rbug_send_context_list() 61 PAD(__pos, 8); in rbug_send_context_list() 88 PAD(__len, 8); in rbug_send_context_info() 99 PAD(__pos, 8); in rbug_send_context_info() 128 PAD(__len, 8); in rbug_send_context_draw_block() 140 PAD(__pos, 8); in rbug_send_context_draw_block() 169 PAD(__len, 8); in rbug_send_context_draw_step() 181 PAD(__pos, 8); in rbug_send_context_draw_step() 210 PAD(__len, 8); in rbug_send_context_draw_unblock() 222 PAD(__pos, 8); in rbug_send_context_draw_unblock() [all …]
|
D | rbug_core.c | 51 PAD(__len, 8); in rbug_send_noop() 61 PAD(__pos, 8); in rbug_send_noop() 86 PAD(__len, 8); in rbug_send_ping() 96 PAD(__pos, 8); in rbug_send_ping() 123 PAD(__len, 8); in rbug_send_error() 134 PAD(__pos, 8); in rbug_send_error() 161 PAD(__len, 8); in rbug_send_ping_reply() 172 PAD(__pos, 8); in rbug_send_ping_reply() 201 PAD(__len, 8); in rbug_send_error_reply() 213 PAD(__pos, 8); in rbug_send_error_reply()
|
D | rbug_shader.c | 53 PAD(__len, 8); in rbug_send_shader_list() 64 PAD(__pos, 8); in rbug_send_shader_list() 93 PAD(__len, 8); in rbug_send_shader_info() 105 PAD(__pos, 8); in rbug_send_shader_info() 136 PAD(__len, 8); in rbug_send_shader_disable() 149 PAD(__pos, 8); in rbug_send_shader_disable() 181 PAD(__len, 8); in rbug_send_shader_replace() 194 PAD(__pos, 8); in rbug_send_shader_replace() 224 PAD(__len, 8); in rbug_send_shader_list_reply() 236 PAD(__pos, 8); in rbug_send_shader_list_reply() [all …]
|
D | rbug_texture.c | 51 PAD(__len, 8); in rbug_send_texture_list() 61 PAD(__pos, 8); in rbug_send_texture_list() 88 PAD(__len, 8); in rbug_send_texture_info() 99 PAD(__pos, 8); in rbug_send_texture_info() 145 PAD(__len, 8); in rbug_send_texture_write() 165 PAD(__pos, 8); in rbug_send_texture_write() 206 PAD(__len, 8); in rbug_send_texture_read() 224 PAD(__pos, 8); in rbug_send_texture_read() 254 PAD(__len, 8); in rbug_send_texture_list_reply() 266 PAD(__pos, 8); in rbug_send_texture_list_reply() [all …]
|
/external/skia/tests/ |
D | MemsetTest.cpp | 92 #define PAD 32 macro 93 #define TOTAL (PAD + MAX_ALIGNMENT + MAX_COUNT + PAD) 125 uint16_t* base = &buffer[PAD + alignment]; in test_16() 128 compare16(reporter, buffer, 0, PAD + alignment); in test_16() 130 compare16(reporter, base + count, 0, TOTAL - count - PAD - alignment); in test_16() 142 uint32_t* base = &buffer[PAD + alignment]; in test_32() 145 compare32(reporter, buffer, 0, PAD + alignment); in test_32() 147 compare32(reporter, base + count, 0, TOTAL - count - PAD - alignment); in test_32()
|
/external/apache-http/src/org/apache/commons/codec/binary/ |
D | Base64.java | 98 static final byte PAD = (byte) '='; field in Base64 140 if (octect == PAD) { in isBase64() 335 encodedData[encodedIndex + 2] = PAD; in encodeBase64() 336 encodedData[encodedIndex + 3] = PAD; in encodeBase64() 353 encodedData[encodedIndex + 3] = PAD; in encodeBase64() 398 while (base64Data[lastData - 1] == PAD) { in decodeBase64() 414 if (marker0 != PAD && marker1 != PAD) { in decodeBase64() 423 } else if (marker0 == PAD) { in decodeBase64() 426 } else if (marker1 == PAD) { in decodeBase64()
|
/external/valgrind/VEX/priv/ |
D | main_util.c | 331 # define PAD(_n) \ in vprintf_wrk() macro 405 PAD(len1); PUTSTR(str); PAD(len3); in vprintf_wrk() 417 PAD(len1); PUTSTR(str); PAD(len3); in vprintf_wrk() 434 PAD(len1); PUTSTR(intbuf); PAD(len3); in vprintf_wrk() 455 PAD(len1); PUTSTR(intbuf); PAD(len3); in vprintf_wrk() 467 PAD(len1); PUT('0'); PUT('x'); PUTSTR(intbuf); PAD(len3); in vprintf_wrk() 491 # undef PAD in vprintf_wrk()
|
/external/clang/test/Sema/ |
D | implicit-int.c | 14 #define PAD(ms10) { \ macro 18 #define ILPAD() PAD((NROW - tt.tt_row) * 10) /* 1 ms per char */
|
/external/libjpeg-turbo/ |
D | turbojpeg.c | 49 #define PAD(v, p) ((v+(p)-1)&(~((p)-1))) macro 609 retval=PAD(width, mcuw) * PAD(height, mcuh) * (2 + chromasf) + 2048; in tjBufSize() 624 retval=PAD(width, 16) * PAD(height, 16) * 6 + 2048; in TJBUFSIZE() 643 int stride=PAD(pw, pad); in tjBufSizeYUV2() 676 pw=PAD(width, tjMCUWidth[subsamp]/8); in tjPlaneWidth() 697 ph=PAD(height, tjMCUHeight[subsamp]/8); in tjPlaneHeight() 906 pw0=PAD(width, cinfo->max_h_samp_factor); in tjEncodeYUVPlanes() 907 ph0=PAD(height, cinfo->max_v_samp_factor); in tjEncodeYUVPlanes() 923 PAD((compptr->width_in_blocks*cinfo->max_h_samp_factor*DCTSIZE) in tjEncodeYUVPlanes() 931 (unsigned char *)PAD((size_t)_tmpbuf[i], 16); in tjEncodeYUVPlanes() [all …]
|
D | tjunittest.c | 295 #define PAD(v, p) ((v+(p)-1)&(~((p)-1))) macro 302 int pw=PAD(w, hsf), ph=PAD(h, vsf); in checkBufYUV() 304 int ypitch=PAD(pw, pad), uvpitch=PAD(cw, pad); in checkBufYUV()
|
/external/sl4a/Common/src/org/apache/commons/codec/binary/ |
D | Base64Codec.java | 112 private static final byte PAD = '='; field in Base64Codec 469 buffer[pos++] = PAD; in encode() 470 buffer[pos++] = PAD; in encode() 480 buffer[pos++] = PAD; in encode() 550 if (b == PAD) { in decode() 597 … return octet == PAD || (octet >= 0 && octet < DECODE_TABLE.length && DECODE_TABLE[octet] != -1); in isBase64()
|
/external/icu/icu4c/source/common/ |
D | uenum.c | 28 static const int32_t PAD = 8; variable 36 capacity += PAD; in _getBuffer() 45 capacity += PAD; in _getBuffer()
|
/external/fec/ |
D | decode_rs.h | 38 #if !defined(PAD) 85 for(j=1;j<NN-PAD;j++){ 288 if (num1 != 0 && loc[j] >= PAD) { 289 data[loc[j]-PAD] ^= ALPHA_TO[MODNN(INDEX_OF[num1] + INDEX_OF[num2] + NN - INDEX_OF[den])];
|
D | decode_rs.c | 49 for(j=1;j<NN-PAD;j++){ 252 if (num1 != 0 && loc[j] >= PAD) { 253 data[loc[j]-PAD] ^= ALPHA_TO[MODNN(INDEX_OF[num1] + INDEX_OF[num2] + NN - INDEX_OF[den])];
|
D | fixed.h | 32 #define PAD pad macro
|
D | char.h | 19 #define PAD (rs->pad) macro
|
D | int.h | 19 #define PAD (rs->pad) macro
|
D | encode_rs.h | 39 for(i=0;i<NN-NROOTS-PAD;i++){
|
D | encode_rs.c | 33 for(i=0;i<NN-NROOTS-PAD;i++){
|
/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/ |
D | YUVImage.java | 295 strides[0] = PAD(TJ.planeWidth(0, width, subsamp), pad); in setBuf() 297 strides[1] = strides[2] = PAD(TJ.planeWidth(1, width, subsamp), pad); in setBuf() 429 private static final int PAD(int v, int p) { in PAD() method in YUVImage
|
/external/llvm/unittests/Support/ |
D | LEB128Test.cpp | 45 #define EXPECT_ULEB128_EQ(EXPECTED, VALUE, PAD) \ in TEST() argument 52 encodeULEB128(VALUE, Stream, PAD); \ in TEST() 58 unsigned Size = encodeULEB128(VALUE, Buffer, PAD); \ in TEST()
|
/external/libvncserver/common/ |
D | turbojpeg.c | 42 #define PAD(v, p) ((v+(p)-1)&(~((p)-1))) macro 513 retval=PAD(width, mcuw) * PAD(height, mcuh) * (2 + chromasf) + 2048; in tjBufSize() 531 retval=PAD(width, 16) * PAD(height, 16) * 6 + 2048; in TJBUFSIZE()
|
/external/pdfium/xfa/src/fxbarcode/datamatrix/ |
D | BC_HighLevelEncoder.cpp | 47 FX_WCHAR CBC_HighLevelEncoder::PAD = 129; member in CBC_HighLevelEncoder 129 codewords += PAD; in encodeHighLevel() 132 codewords += (randomize253State(PAD, codewords.GetLength() + 1)); in encodeHighLevel()
|
/external/dhcpcd-6.8.2/crypt/ |
D | sha256.c | 190 static unsigned char PAD[64] = { variable 213 SHA256_Update(ctx, PAD, (size_t)plen); in SHA256_Pad()
|