/packages/apps/Messaging/ |
ForceProguard.mk | 17 # build. If the flag files have changed, proguard is rerun. 31 $(info *** Flag files used for proguard have changed; forcing proguard to rerun.)
|
/prebuilts/go/darwin-x86/src/compress/bzip2/ |
move_to_front.go | 29 panic("newMTFDecoderWithRange: cannot have > 256 symbols") 43 // single cache line (most move-to-front operations have n < 64).
|
/prebuilts/go/darwin-x86/src/crypto/cipher/ |
xor.go | 51 // xorBytes xors the bytes in a and b. The destination is assumed to have enough 57 // TODO(hanwen): if (dst, a, b) have common alignment
|
/prebuilts/go/darwin-x86/src/crypto/subtle/ |
constant_time.go | 10 // and y, have equal contents. The time taken is a function of the length of 57 panic("subtle: slices have different lengths")
|
/prebuilts/go/darwin-x86/src/encoding/json/ |
stream_test.go | 52 if have, want := buf.String(), nlines(streamEncoded, i); have != want { 54 diff(t, []byte(have), []byte(want)) 84 t.Errorf("#%d: have %v want %v", j, out[j], streamTest[j]) 142 t.Fatalf("Raw mismatch: have %#q want %#q", []byte(*data.Id), raw) 149 t.Fatalf("Marshal: have %#q want %#q", b, msg) 167 t.Fatalf("Raw mismatch: have non-nil, want nil") 174 t.Fatalf("Marshal: have %#q want %#q", b, msg)
|
/prebuilts/go/darwin-x86/test/interface/ |
explicit.go | 86 _() // ERROR "methods must have a unique non-blank name" 91 _() // ERROR "methods must have a unique non-blank name"
|
/prebuilts/go/darwin-x86/test/ |
live1.go | 14 // would have annotations printed if we used -live=1, 36 // Liveness analysis used to have the VARDEFs in the wrong place,
|
/prebuilts/go/linux-x86/src/compress/bzip2/ |
move_to_front.go | 29 panic("newMTFDecoderWithRange: cannot have > 256 symbols") 43 // single cache line (most move-to-front operations have n < 64).
|
/prebuilts/go/linux-x86/src/crypto/cipher/ |
xor.go | 51 // xorBytes xors the bytes in a and b. The destination is assumed to have enough 57 // TODO(hanwen): if (dst, a, b) have common alignment
|
/prebuilts/go/linux-x86/src/crypto/subtle/ |
constant_time.go | 10 // and y, have equal contents. The time taken is a function of the length of 57 panic("subtle: slices have different lengths")
|
/prebuilts/go/linux-x86/src/encoding/json/ |
stream_test.go | 52 if have, want := buf.String(), nlines(streamEncoded, i); have != want { 54 diff(t, []byte(have), []byte(want)) 84 t.Errorf("#%d: have %v want %v", j, out[j], streamTest[j]) 142 t.Fatalf("Raw mismatch: have %#q want %#q", []byte(*data.Id), raw) 149 t.Fatalf("Marshal: have %#q want %#q", b, msg) 167 t.Fatalf("Raw mismatch: have non-nil, want nil") 174 t.Fatalf("Marshal: have %#q want %#q", b, msg)
|
/prebuilts/go/linux-x86/test/interface/ |
explicit.go | 86 _() // ERROR "methods must have a unique non-blank name" 91 _() // ERROR "methods must have a unique non-blank name"
|
/prebuilts/go/linux-x86/test/ |
live1.go | 14 // would have annotations printed if we used -live=1, 36 // Liveness analysis used to have the VARDEFs in the wrong place,
|
/toolchain/binutils/binutils-2.25/binutils/ |
configure.com | 3 $! We do not use the configure script, since we do not have /bin/sh 18 $! You should have received a copy of the GNU General Public License 42 /* Define if you have the utimes function. */ 44 /* Define if you have the <fcntl.h> header file. */ 46 /* Define if you have the <stdlib.h> header file. */ 48 /* Define if you have the <string.h> header file. */ 50 /* Define if you have the <strings.h> header file. */ 52 /* Define if you have the <sys/file.h> header file. */ 54 /* Define if you have the <unistd.h> header file. */
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/parse/ |
exprbug.s | 37 .word 0 ; must have at least one filler at end
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/unsorted/ |
labeldiffs.s | 39 .word 0 ; must have at least one filler at end
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ |
ifunc-3.d | 46 NOTE: This section has relocations against it, but these have NOT been applied to this dump\. 54 NOTE: This section has relocations against it, but these have NOT been applied to this dump\.
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/ |
err-builtin.s | 3 % When disallowing built-in names, we have to treat GET and PUT
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/ |
shift-1.s | 39 ! Just make localsym have a non-zero offset into .data.
|
shift-2.s | 31 ! Just make localsym have a non-zero offset into .data.
|
/toolchain/binutils/binutils-2.25/opcodes/ |
configure.com | 4 $! We do not use the configure script, since we do not have /bin/sh 21 $! You should have received a copy of the GNU General Public License
|
/external/dhcpcd-6.8.2/crypt/ |
md5.c | 182 size_t have, need; local 184 /* Check how many bytes we already have and how many more we need. */ 185 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); 186 need = MD5_BLOCK_LENGTH - have; 192 if (have != 0) { 193 memcpy(ctx->buffer + have, input, need); 197 have = 0; 210 memcpy(ctx->buffer + have, input, len);
|
/external/wpa_supplicant_8/src/crypto/ |
md4-internal.c | 113 size_t have, need; local 115 /* Check how many bytes we already have and how many more we need. */ 116 have = (size_t)((ctx->count >> 3) & (MD4_BLOCK_LENGTH - 1)); 117 need = MD4_BLOCK_LENGTH - have; 123 if (have != 0) { 124 os_memcpy(ctx->buffer + have, input, need); 128 have = 0; 141 os_memcpy(ctx->buffer + have, input, len);
|
/external/libmicrohttpd/src/testzzuf/ |
test_put_chunked.c | 15 You should have received a copy of the GNU General Public License 89 int have; local 95 have = *upload_data_size; 96 if (have + *done > 8) 100 if (0 == memcmp (upload_data, &"Hello123"[*done], have)) 102 *done += have;
|
/external/zlib/src/test/ |
infcover.c | 264 if (val > 255) { /* have two digits */ 288 unsigned have; local 311 in = h2b(hex, &have); assert(in != NULL); 312 if (step == 0 || step > have) 313 step = have; 315 have -= step; 338 have += strm.avail_in; 339 strm.avail_in = step > have ? have : step; 340 have -= strm.avail_in [all...] |