HomeSort by relevance Sort by last modified time
    Searched refs:PAD (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/clang/test/Sema/
implicit-int.c 14 #define PAD(ms10) { \
18 #define ILPAD() PAD((NROW - tt.tt_row) * 10) /* 1 ms per char */
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_internal.h 46 #define PAD(from, to) \
53 PAD(__len, size); \
60 PAD(__len, size); \
66 PAD(__pos, size); \
74 PAD(__pos, size); \
81 PAD(pos, size); \
93 PAD(pos, size); \
rbug_core.c 51 PAD(__len, 8);
60 /* final pad */
61 PAD(__pos, 8);
86 PAD(__len, 8);
95 /* final pad */
96 PAD(__pos, 8);
123 PAD(__len, 8);
133 /* final pad */
134 PAD(__pos, 8);
161 PAD(__len, 8)
    [all...]
rbug_context.c 51 PAD(__len, 8);
60 /* final pad */
61 PAD(__pos, 8);
88 PAD(__len, 8);
98 /* final pad */
99 PAD(__pos, 8);
128 PAD(__len, 8);
139 /* final pad */
140 PAD(__pos, 8);
169 PAD(__len, 8)
    [all...]
rbug_shader.c 53 PAD(__len, 8);
63 /* final pad */
64 PAD(__pos, 8);
93 PAD(__len, 8);
104 /* final pad */
105 PAD(__pos, 8);
136 PAD(__len, 8);
148 /* final pad */
149 PAD(__pos, 8);
181 PAD(__len, 8)
    [all...]
rbug_texture.c 51 PAD(__len, 8);
60 /* final pad */
61 PAD(__pos, 8);
88 PAD(__len, 8);
98 /* final pad */
99 PAD(__pos, 8);
145 PAD(__len, 8);
164 /* final pad */
165 PAD(__pos, 8);
206 PAD(__len, 8)
    [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
Base64.java 27 * Byte used to pad output.
29 static final byte PAD = (byte) '=';
85 while (base64Data[lastData - 1] == PAD) {
101 if (marker0 != PAD && marker1 != PAD) {
102 //No PAD e.g 3cQl
110 } else if (marker0 == PAD) {
111 //Two PAD e.g. 3c[Pad][Pad]
    [all...]
  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
Base64.java 27 * Byte used to pad output.
29 static final byte PAD = (byte) '=';
85 while (base64Data[lastData - 1] == PAD) {
101 if (marker0 != PAD && marker1 != PAD) {
102 //No PAD e.g 3cQl
110 } else if (marker0 == PAD) {
111 //Two PAD e.g. 3c[Pad][Pad]
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
Base64.java 27 * Byte used to pad output.
29 static final byte PAD = (byte) '=';
85 while (base64Data[lastData - 1] == PAD) {
101 if (marker0 != PAD && marker1 != PAD) {
102 //No PAD e.g 3cQl
110 } else if (marker0 == PAD) {
111 //Two PAD e.g. 3c[Pad][Pad]
    [all...]
  /external/skia/tests/
MemsetTest.cpp 92 #define PAD 32
93 #define TOTAL (PAD + MAX_ALIGNMENT + MAX_COUNT + PAD)
125 uint16_t* base = &buffer[PAD + alignment];
129 compare16(buffer, 0, PAD + alignment) &&
131 compare16(base + count, 0, TOTAL - count - PAD - alignment));
143 uint32_t* base = &buffer[PAD + alignment];
147 compare32(buffer, 0, PAD + alignment) &&
149 compare32(base + count, 0, TOTAL - count - PAD - alignment));
  /external/apache-http/src/org/apache/commons/codec/binary/
Base64.java 96 * Byte used to pad output.
98 static final byte PAD = (byte) '=';
140 if (octect == PAD) {
335 encodedData[encodedIndex + 2] = PAD;
336 encodedData[encodedIndex + 3] = PAD;
353 encodedData[encodedIndex + 3] = PAD;
398 while (base64Data[lastData - 1] == PAD) {
414 if (marker0 != PAD && marker1 != PAD) {
415 //No PAD e.g 3cQ
    [all...]
  /external/valgrind/VEX/priv/
main_util.c 331 # define PAD(_n) \
405 PAD(len1); PUTSTR(str); PAD(len3);
417 PAD(len1); PUTSTR(str); PAD(len3);
434 PAD(len1); PUTSTR(intbuf); PAD(len3);
455 PAD(len1); PUTSTR(intbuf); PAD(len3);
467 PAD(len1); PUT('0'); PUT('x'); PUTSTR(intbuf); PAD(len3)
    [all...]
  /external/icu/icu4c/source/common/
uenum.c 28 static const int32_t PAD = 8;
36 capacity += PAD;
45 capacity += PAD;
  /external/valgrind/VEX/pub/
libvex_guest_tilegx.h 126 /* 616 */ ULong PAD;
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vfprintf.c 254 #define ZEROPAD 0x0080 /* zero (as opposed to blank) pad */
343 #define PADSIZE 16 /* pad chunk size */
353 * BEWARE, these `goto error' on error, and PAD uses `n'.
366 #define PAD(howmany, with) do { \
381 PAD((len) - (n2 > 0 ? n2 : 0), (with)); \
983 * floating precision; finally, if LADJUST, pad with blanks.
985 * Compute actual size, so we know how much to pad.
996 PAD(width - realsz, blanks);
1008 PAD(width - realsz, zeroes);
1011 PAD(dprec - size, zeroes)
    [all...]
vfwprintf.c 271 #define ZEROPAD 0x0080 /* zero (as opposed to blank) pad */
341 #define PADSIZE 16 /* pad chunk size */
352 * PAD uses `n' and 'n3', and PRINTANDPAD uses 'n', 'n2', and 'n3'.
360 #define PAD(howmany, with) do { \
375 PAD((len) - (n2 > 0 ? n2 : 0), (with)); \
959 * floating precision; finally, if LADJUST, pad with blanks.
961 * Compute actual size, so we know how much to pad.
972 PAD(width - realsz, blanks);
984 PAD(width - realsz, zeroes);
987 PAD(dprec - size, zeroes)
    [all...]
  /external/llvm/unittests/Support/
LEB128Test.cpp 45 #define EXPECT_ULEB128_EQ(EXPECTED, VALUE, PAD) \
52 encodeULEB128(VALUE, Stream, PAD); \
58 unsigned Size = encodeULEB128(VALUE, Buffer, PAD); \
  /frameworks/compile/mclinker/include/mcld/LD/
Archive.h 38 static const char PAD[]; ///< inter-file align padding
  /external/libvncserver/common/
turbojpeg.c 42 #define PAD(v, p) ((v+(p)-1)&(~((p)-1)))
511 retval=PAD(width, mcuw) * PAD(height, mcuh) * (2 + chromasf) + 2048;
527 retval=PAD(width, 16) * PAD(height, 16) * 6 + 2048;
  /libcore/luni/src/main/java/java/util/
Date.java 393 final int PAD = 0, LETTERS = 1, NUMBERS = 2;
414 int nextState = PAD;
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
plexus-cipher-1.7.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/plexus/plexus-cipher/1.7/
plexus-cipher-1.7.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/plexus/plexus-cipher/1.4/
plexus-cipher-1.4.jar 
  /frameworks/compile/mclinker/lib/LD/
Archive.cpp 26 const char Archive::PAD[] = "\n";
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.codec_1.3.0.v20100518-1140.jar 

Completed in 982 milliseconds

1 2 3