Home
last modified time | relevance | path

Searched refs:PAD (Results 1 – 19 of 19) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/rbug/
Drbug_internal.h46 #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); \
Drbug_context.c51 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 …]
Drbug_core.c51 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()
Drbug_shader.c53 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 …]
Drbug_texture.c51 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/
DMemsetTest.cpp92 #define PAD 32 macro
93 #define TOTAL (PAD + MAX_ALIGNMENT + MAX_COUNT + PAD)
125 uint16_t* base = &buffer[PAD + alignment]; in test_16()
129 compare16(buffer, 0, PAD + alignment) && in test_16()
131 compare16(base + count, 0, TOTAL - count - PAD - alignment)); in test_16()
143 uint32_t* base = &buffer[PAD + alignment]; in test_32()
147 compare32(buffer, 0, PAD + alignment) && in test_32()
149 compare32(base + count, 0, TOTAL - count - PAD - alignment)); in test_32()
/external/apache-http/src/org/apache/commons/codec/binary/
DBase64.java98 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/
Dmain_util.c331 # 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/
Dimplicit-int.c14 #define PAD(ms10) { \ macro
18 #define ILPAD() PAD((NROW - tt.tt_row) * 10) /* 1 ms per char */
/external/icu/icu4c/source/common/
Duenum.c28 static const int32_t PAD = 8; variable
36 capacity += PAD; in _getBuffer()
45 capacity += PAD; in _getBuffer()
/external/llvm/unittests/Support/
DLEB128Test.cpp45 #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/
Dturbojpeg.c42 #define PAD(v, p) ((v+(p)-1)&(~((p)-1))) macro
511 retval=PAD(width, mcuw) * PAD(height, mcuh) * (2 + chromasf) + 2048; in tjBufSize()
527 retval=PAD(width, 16) * PAD(height, 16) * 6 + 2048; in TJBUFSIZE()
/external/valgrind/VEX/pub/
Dlibvex_guest_tilegx.h126 /* 616 */ ULong PAD; member
/external/llvm/lib/Target/R600/
DR600ControlFlowFinalizer.cpp630 BuildMI(MBB, I, MBB.findDebugLoc(MI), TII->get(AMDGPU::PAD)); in runOnMachineFunction()
DR600Instructions.td669 def PAD : AMDGPUInst <(outs), (ins), "PAD", [] > {
/external/icu/icu4c/source/data/unidata/
DUnicodeData.txt20087 1227B;CUNEIFORM SIGN PAD;Lo;0;L;;;;;N;;;;;
25751 1F5C7;EMPTY NOTE PAD;So;0;ON;;;;;N;;;;;
25754 1F5CA;NOTE PAD;So;0;ON;;;;;N;;;;;
25762 1F5D2;SPIRAL NOTE PAD;So;0;ON;;;;;N;;;;;
25763 1F5D3;SPIRAL CALENDAR PAD;So;0;ON;;;;;N;;;;;
Dppucd.txt1235 …-Gr_Base;-IDC;-IDS;lb=CM;Name_Alias=figment=PADDING CHARACTER,abbreviation=PAD;NFKD_QC=Y;WB=XX;-XI…
24210 cp;1227B;na=CUNEIFORM SIGN PAD
30366 cp;1F5C7;age=7.0;na=EMPTY NOTE PAD
30369 cp;1F5CA;age=7.0;na=NOTE PAD
30377 cp;1F5D2;age=7.0;na=SPIRAL NOTE PAD
30378 cp;1F5D3;age=7.0;na=SPIRAL CALENDAR PAD
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/unicode/
DUnicodeData.txt20087 1227B;CUNEIFORM SIGN PAD;Lo;0;L;;;;;N;;;;;
25751 1F5C7;EMPTY NOTE PAD;So;0;ON;;;;;N;;;;;
25754 1F5CA;NOTE PAD;So;0;ON;;;;;N;;;;;
25762 1F5D2;SPIRAL NOTE PAD;So;0;ON;;;;;N;;;;;
25763 1F5D3;SPIRAL CALENDAR PAD;So;0;ON;;;;;N;;;;;
/external/v8/tools/profviz/
Dgnuplot-4.6.3-emscripten.js4096 var PAD = '=';
4111 ret += PAD + PAD;
4114 ret += PAD;