Home
last modified time | relevance | path

Searched refs:r (Results 1 – 25 of 4901) sorted by relevance

12345678910>>...197

/external/valgrind/main/none/tests/amd64/
Dbug156404-amd64.stdout.exp1 depth 0: r = 1
2 depth 1: r = 1
3 depth 2: r = 1
4 depth 3: r = 1
5 depth 4: r = 1
6 depth 5: r = 1
7 depth 6: r = 1
8 depth 7: r = 1
9 depth 8: r = 1
10 depth 9: r = 1
[all …]
/external/chromium_org/v8/test/mjsunit/regress/
Dregress-2437.js37 r = /a/;
38 r.lastIndex = 1;
39 r.exec("zzzz");
40 assertEquals(0, r.lastIndex);
43 r = /a/;
44 r.lastIndex = 1;
45 r.test("zzzz");
46 assertEquals(0, r.lastIndex);
49 r = /a/;
50 r.lastIndex = 1;
[all …]
/external/chromium/testing/gmock/scripts/
Dgmock_doctor.py131 _GCC_FILE_LINE_RE = r'(?P<file>.*):(?P<line>\d+):\s+'
132 _CLANG_FILE_LINE_RE = r'(?P<file>.*):(?P<line>\d+):(?P<column>\d+):\s+'
134 r'(?P<file>.*[/\\^](?!gmock-)[^/\\]+):(?P<line>\d+):(?P<column>\d+):\s+')
140 r = re.compile(regex)
141 return r.finditer(s)
169 gcc_regex = (r'In member function \'testing::internal::ReturnAction<R>.*\n'
170 + _GCC_FILE_LINE_RE + r'instantiated from here\n'
171 r'.*gmock-actions\.h.*error: creating array with negative size')
172 clang_regex = (r'error:.*array.*negative.*\r?\n'
173 r'(.*\n)*?' +
[all …]
/external/chromium_org/media/base/
Dranges_unittest.cc16 std::ostream& operator<<(std::ostream& os, const Ranges<T>& r) { in operator <<() argument
18 for(size_t i = 0; i < r.size(); ++i) in operator <<()
19 os << "[" << r.start(i) << "," << r.end(i) << ") "; in operator <<()
26 static void ExpectRanges(const Ranges<T>& r, in ExpectRanges() argument
29 ss << r; in ExpectRanges()
37 Ranges<int> r; in TEST() local
38 ASSERT_EQ(r.size(), 0u) << r; in TEST()
39 ASSERT_EQ(r.Add(0, 1), 1u) << r; in TEST()
40 ASSERT_EQ(r.size(), 1u) << r; in TEST()
41 ASSERT_RANGES(r, "{ [0,1) }"); in TEST()
[all …]
/external/llvm/test/CodeGen/X86/
Dhandle-move.ll12 ; %vreg4: [48r,144r:0) 0@48r
13 ; --> [48r,180r:0) 0@48r
14 ; DH: [0B,16r:0)[128r,144r:2)[144r,144d:1) 0@0B-phi 1@144r 2@128r
15 ; --> [0B,16r:0)[128r,180r:2)[180r,180d:1) 0@0B-phi 1@180r 2@128r
16 ; DL: [0B,16r:0)[128r,144r:2)[144r,144d:1) 0@0B-phi 1@144r 2@128r
17 ; --> [0B,16r:0)[128r,180r:2)[180r,180d:1) 0@0B-phi 1@180r 2@128r
29 ; %vreg4: [48r,144r:0) 0@48r
30 ; --> [48r,180r:0) 0@48r
31 ; DH: [0B,16r:0)[128r,144r:2)[144r,184r:1) 0@0B-phi 1@144r 2@128r
32 ; --> [0B,16r:0)[128r,180r:2)[180r,184r:1) 0@0B-phi 1@180r 2@128r
[all …]
/external/chromium_org/third_party/libaddressinput/chromium/cpp/test/util/
Dstring_split_unittest.cc20 std::vector<std::string> r; in TEST() local
22 SplitString(std::string(), ',', &r); in TEST()
23 EXPECT_EQ(0U, r.size()); in TEST()
25 SplitString("a,b,c", ',', &r); in TEST()
26 ASSERT_EQ(3U, r.size()); in TEST()
27 EXPECT_EQ(r[0], "a"); in TEST()
28 EXPECT_EQ(r[1], "b"); in TEST()
29 EXPECT_EQ(r[2], "c"); in TEST()
31 SplitString("a, b, c", ',', &r); in TEST()
32 ASSERT_EQ(3U, r.size()); in TEST()
[all …]
/external/svox/pico/lib/
Dpicosig2.c2086 picoos_int32 *r = sig_inObj->int_vec35; in init_rand() local
2091 r[0] = 3455; in init_rand()
2093 r[1] = -2522; in init_rand()
2095 r[2] = 4007; in init_rand()
2097 r[3] = 3907; in init_rand()
2099 r[4] = 2158; in init_rand()
2101 r[5] = -3875; in init_rand()
2103 r[6] = -3522; in init_rand()
2105 r[7] = 4069; in init_rand()
2107 r[8] = -4033; in init_rand()
[all …]
/external/valgrind/main/drd/tests/
Dtrylock.c21 int r; in main() local
30 r = pthread_rwlock_init(&rwlock, NULL); assert(r == 0); in main()
32 r = pthread_rwlock_wrlock(&rwlock); assert(r == 0); in main()
33 r = pthread_rwlock_unlock(&rwlock); assert(r == 0); in main()
35 r = pthread_rwlock_trywrlock(&rwlock); assert(r == 0); in main()
36 r = pthread_rwlock_unlock(&rwlock); assert(r == 0); in main()
39 r = pthread_rwlock_timedwrlock(&rwlock, &abs_timeout); assert(r == 0); in main()
40 r = pthread_rwlock_unlock(&rwlock); assert(r == 0); in main()
43 r = pthread_rwlock_rdlock(&rwlock); assert(r == 0); in main()
44 r = pthread_rwlock_rdlock(&rwlock); assert(r == 0); in main()
[all …]
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt042ast.py40 r = self.parse("1 + 2", 'r1')
42 r.tree.toStringTree(),
48 r = self.parse("assert 2+3;", 'r2')
50 r.tree.toStringTree(),
56 r = self.parse("assert 2+3 : 5;", 'r2')
58 r.tree.toStringTree(),
64 r = self.parse("if 1 fooze", 'r3')
66 r.tree.toStringTree(),
72 r = self.parse("if 1 fooze else fooze", 'r3')
74 r.tree.toStringTree(),
[all …]
/external/valgrind/main/helgrind/tests/
Dtc20_verifywrap.c40 int r; in main() local
76 r= pthread_create( &child, NULL, racy_child, NULL ); assert(!r); in main()
79 r= pthread_join( child, NULL ); assert(!r); in main()
83 r= pthread_join( pthread_self(), NULL ); assert(r); in main()
92 r= pthread_mutex_init( &mx, &mxa ); in main()
94 assert(r); /* glibc >= 2.4: the call should fail */ in main()
96 assert(!r); /* glibc < 2.4: oh well, glibc didn't bounce this */ in main()
100 r= pthread_mutex_init( &mx2, NULL ); assert(!r); in main()
101 r= pthread_mutex_lock( &mx2 ); assert(!r); in main()
102 r= pthread_mutex_destroy( &mx2 ); assert(r); in main()
[all …]
Dlocked_vs_unlocked2.c24 int r; in child_fn1() local
27 r= pthread_mutex_lock(&mx1a); assert(!r); in child_fn1()
28 r= pthread_mutex_lock(&mx1b); assert(!r); in child_fn1()
30 r= pthread_mutex_unlock(&mx1b); assert(!r); in child_fn1()
31 r= pthread_mutex_unlock(&mx1a); assert(!r); in child_fn1()
32 r= pthread_mutex_destroy(&mx1a); assert(!r); in child_fn1()
39 int r; in child_fn2() local
43 r= pthread_mutex_lock(&mx2a); assert(!r); in child_fn2()
44 r= pthread_mutex_lock(&mx2b); assert(!r); in child_fn2()
46 r= pthread_mutex_unlock(&mx2b); assert(!r); in child_fn2()
[all …]
/external/llvm/test/CodeGen/ARM/
Dinlineasm-64bit.ll6 ; CHECK: ldrexd [[REG1:(r[0-9]?[02468])]], {{r[0-9]?[13579]}}, [r{{[0-9]+}}]
7 ; CHECK: strexd [[REG1]], {{r[0-9]?[02468]}}, {{r[0-9]?[13579]}}
8 …0:H}, [$2]\0A strexd $0, $3, ${3:H}, [$2]\0A teq $0, #0\0A bne 1b", "=&r,=*Qo,r,r,~{cc}"(i64* %p, …
16 ; check: strexd {{r[0-9]?[02468]}}, {{r[0-9]?[13579]}}, [r{{[0-9]+}}]
17 ; check: strexd {{r[0-9]?[02468]}}, {{r[0-9]?[13579]}}, [r{{[0-9]+}}]
18 ; check: strexd {{r[0-9]?[02468]}}, {{r[0-9]?[13579]}}, [r{{[0-9]+}}]
19 ; check: strexd {{r[0-9]?[02468]}}, {{r[0-9]?[13579]}}, [r{{[0-9]+}}]
20 ; check: strexd {{r[0-9]?[02468]}}, {{r[0-9]?[13579]}}, [r{{[0-9]+}}]
21 ; check: strexd {{r[0-9]?[02468]}}, {{r[0-9]?[13579]}}, [r{{[0-9]+}}]
23 ; check: strexd {{r[0-9]?[02468]}}, {{r[0-9]?[13579]}}, [r{{[0-9]+}}]
[all …]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
DRegionTest.cpp35 #define TEST_INSIDE_RECT(r, x, y, w, h) \ argument
36 EXPECT_TRUE(r.contains(IntPoint(x, y))); \
37 EXPECT_TRUE(r.contains(IntPoint(x + w - 1, y))); \
38 EXPECT_TRUE(r.contains(IntPoint(x, y + h - 1))); \
39 EXPECT_TRUE(r.contains(IntPoint(x + w - 1, y + h - 1))); \
40 EXPECT_TRUE(r.contains(IntPoint(x, y + h / 2))); \
41 EXPECT_TRUE(r.contains(IntPoint(x + w - 1, y + h / 2))); \
42 EXPECT_TRUE(r.contains(IntPoint(x + w / 2, y))); \
43 EXPECT_TRUE(r.contains(IntPoint(x + w / 2, y + h - 1))); \
44 EXPECT_TRUE(r.contains(IntPoint(x + w / 2, y + h / 2))); \
[all …]
/external/libusb/examples/
Ddpfp.c77 int r; in print_f0_data() local
80 r = libusb_control_transfer(devh, CTRL_IN, USB_RQ, 0xf0, 0, data, in print_f0_data()
82 if (r < 0) { in print_f0_data()
83 fprintf(stderr, "F0 error %d\n", r); in print_f0_data()
84 return r; in print_f0_data()
86 if ((unsigned int) r < sizeof(data)) { in print_f0_data()
87 fprintf(stderr, "short read (%d)\n", r); in print_f0_data()
100 int r; in get_hwstat() local
102 r = libusb_control_transfer(devh, CTRL_IN, USB_RQ, 0x07, 0, status, 1, 0); in get_hwstat()
103 if (r < 0) { in get_hwstat()
[all …]
Ddpfp_threaded.c81 int r = 0; in poll_thread_main() local
86 r = libusb_handle_events_timeout(NULL, &tv); in poll_thread_main()
87 if (r < 0) { in poll_thread_main()
106 int r; in print_f0_data() local
109 r = libusb_control_transfer(devh, CTRL_IN, USB_RQ, 0xf0, 0, data, in print_f0_data()
111 if (r < 0) { in print_f0_data()
112 fprintf(stderr, "F0 error %d\n", r); in print_f0_data()
113 return r; in print_f0_data()
115 if ((unsigned int) r < sizeof(data)) { in print_f0_data()
116 fprintf(stderr, "short read (%d)\n", r); in print_f0_data()
[all …]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
Drjsmin.py18 r"""
96 space_chars = r'[\000-\011\013\014\016-\040]'
98 line_comment = r'(?://[^\r\n]*)'
99 space_comment = r'(?:/\*[^*]*\*+(?:[^/*][^*]*\*+)*/)'
101 r'(?:\047[^\047\\\r\n]*(?:\\(?:[^\r\n]|\r?\n|\r)[^\047\\\r\n]*)*\047)'
102 string2 = r'(?:"[^"\\\r\n]*(?:\\(?:[^\r\n]|\r?\n|\r)[^"\\\r\n]*)*")'
103 strings = r'(?:%s|%s)' % (string1, string2)
105 charclass = r'(?:\[[^\\\]\r\n]*(?:\\[^\r\n][^\\\]\r\n]*)*\])'
106 nospecial = r'[^/\\\[\r\n]'
107 regex = r'(?:/(?![\r\n/*])%s*(?:(?:\\[^\r\n]|%s)%s*)*/)' % (
[all …]
/external/chromium_org/third_party/openssl/openssl/crypto/des/
Ddes_enc.c64 register DES_LONG l,r,t,u; in DES_encrypt1() local
73 r=data[0]; in DES_encrypt1()
76 IP(r,l); in DES_encrypt1()
85 r=ROTATE(r,29)&0xffffffffL; in DES_encrypt1()
94 D_ENCRYPT(l,r, 0); /* 1 */ in DES_encrypt1()
95 D_ENCRYPT(r,l, 2); /* 2 */ in DES_encrypt1()
96 D_ENCRYPT(l,r, 4); /* 3 */ in DES_encrypt1()
97 D_ENCRYPT(r,l, 6); /* 4 */ in DES_encrypt1()
98 D_ENCRYPT(l,r, 8); /* 5 */ in DES_encrypt1()
99 D_ENCRYPT(r,l,10); /* 6 */ in DES_encrypt1()
[all …]
/external/openssl/crypto/des/
Ddes_enc.c64 register DES_LONG l,r,t,u; in DES_encrypt1() local
73 r=data[0]; in DES_encrypt1()
76 IP(r,l); in DES_encrypt1()
85 r=ROTATE(r,29)&0xffffffffL; in DES_encrypt1()
94 D_ENCRYPT(l,r, 0); /* 1 */ in DES_encrypt1()
95 D_ENCRYPT(r,l, 2); /* 2 */ in DES_encrypt1()
96 D_ENCRYPT(l,r, 4); /* 3 */ in DES_encrypt1()
97 D_ENCRYPT(r,l, 6); /* 4 */ in DES_encrypt1()
98 D_ENCRYPT(l,r, 8); /* 5 */ in DES_encrypt1()
99 D_ENCRYPT(r,l,10); /* 6 */ in DES_encrypt1()
[all …]
/external/chromium_org/ui/gfx/range/
Drange_unittest.cc9 gfx::Range r; in TEST() local
10 EXPECT_EQ(0U, r.start()); in TEST()
11 EXPECT_EQ(0U, r.end()); in TEST()
12 EXPECT_EQ(0U, r.length()); in TEST()
13 EXPECT_FALSE(r.is_reversed()); in TEST()
14 EXPECT_TRUE(r.is_empty()); in TEST()
15 EXPECT_TRUE(r.IsValid()); in TEST()
16 EXPECT_EQ(0U, r.GetMin()); in TEST()
17 EXPECT_EQ(0U, r.GetMax()); in TEST()
21 gfx::Range r(10, 15); in TEST() local
[all …]
/external/chromium_org/third_party/libjingle/source/talk/
DPRESUBMIT.py64 r'.*? libjingle\n'
65 r'.*? Copyright %(year)s,? Google Inc\.\n'
66 r'.*?\n'
67 r'.*? Redistribution and use in source and binary forms, with or without'
68 r'\n'
69 r'.*? modification, are permitted provided that the following conditions '
70 r'are met:\n'
71 r'.*?\n'
72 r'.*? 1\. Redistributions of source code must retain the above copyright '
73 r'notice,\n'
[all …]
/external/libppp/src/
Dradius.c148 demangle(struct radius *r, const void *mangled, size_t mlen, in demangle() argument
168 if (rad_request_authenticator(r->cx.rad, R, sizeof R) != AUTH_LEN) { in demangle()
178 S = rad_server_secret(r->cx.rad); /* We need the RADIUS secret */ in demangle()
248 radius_Process(struct radius *r, int got) in radius_Process() argument
265 r->cx.fd = -1; /* Stop select()ing */ in radius_Process()
266 stype = r->cx.auth ? "auth" : "acct"; in radius_Process()
272 if (!r->cx.auth) { in radius_Process()
273 rad_close(r->cx.rad); in radius_Process()
281 if (!r->cx.auth) { in radius_Process()
282 rad_close(r->cx.rad); in radius_Process()
[all …]
/external/openssl/crypto/bf/
Dbf_enc.c75 register BF_LONG l,r; in BF_encrypt() local
81 r=data[1]; in BF_encrypt()
84 BF_ENC(r,l,s,p[ 1]); in BF_encrypt()
85 BF_ENC(l,r,s,p[ 2]); in BF_encrypt()
86 BF_ENC(r,l,s,p[ 3]); in BF_encrypt()
87 BF_ENC(l,r,s,p[ 4]); in BF_encrypt()
88 BF_ENC(r,l,s,p[ 5]); in BF_encrypt()
89 BF_ENC(l,r,s,p[ 6]); in BF_encrypt()
90 BF_ENC(r,l,s,p[ 7]); in BF_encrypt()
91 BF_ENC(l,r,s,p[ 8]); in BF_encrypt()
[all …]
/external/chromium_org/third_party/openssl/openssl/crypto/bf/
Dbf_enc.c75 register BF_LONG l,r; in BF_encrypt() local
81 r=data[1]; in BF_encrypt()
84 BF_ENC(r,l,s,p[ 1]); in BF_encrypt()
85 BF_ENC(l,r,s,p[ 2]); in BF_encrypt()
86 BF_ENC(r,l,s,p[ 3]); in BF_encrypt()
87 BF_ENC(l,r,s,p[ 4]); in BF_encrypt()
88 BF_ENC(r,l,s,p[ 5]); in BF_encrypt()
89 BF_ENC(l,r,s,p[ 6]); in BF_encrypt()
90 BF_ENC(r,l,s,p[ 7]); in BF_encrypt()
91 BF_ENC(l,r,s,p[ 8]); in BF_encrypt()
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
Dnouveau_heap.c32 struct nouveau_heap *r; in nouveau_heap_init() local
34 r = calloc(1, sizeof(struct nouveau_heap)); in nouveau_heap_init()
35 if (!r) in nouveau_heap_init()
38 r->start = start; in nouveau_heap_init()
39 r->size = size; in nouveau_heap_init()
40 *heap = r; in nouveau_heap_init()
57 struct nouveau_heap *r; in nouveau_heap_alloc() local
64 r = calloc(1, sizeof(struct nouveau_heap)); in nouveau_heap_alloc()
65 if (!r) in nouveau_heap_alloc()
68 r->start = (heap->start + heap->size) - size; in nouveau_heap_alloc()
[all …]
/external/mesa3d/src/gallium/drivers/nouveau/
Dnouveau_heap.c32 struct nouveau_heap *r; in nouveau_heap_init() local
34 r = calloc(1, sizeof(struct nouveau_heap)); in nouveau_heap_init()
35 if (!r) in nouveau_heap_init()
38 r->start = start; in nouveau_heap_init()
39 r->size = size; in nouveau_heap_init()
40 *heap = r; in nouveau_heap_init()
57 struct nouveau_heap *r; in nouveau_heap_alloc() local
64 r = calloc(1, sizeof(struct nouveau_heap)); in nouveau_heap_alloc()
65 if (!r) in nouveau_heap_alloc()
68 r->start = (heap->start + heap->size) - size; in nouveau_heap_alloc()
[all …]

12345678910>>...197