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

1 2 3 4 5 6 7 8 9

  /external/libgsm/src/
gsm_encode.c 112 uword sr; local
114 sr = 0;
115 sr = sr >> 6 | LARc[0] << 10;
116 sr = sr >> 6 | LARc[1] << 10;
117 *c++ = sr >> 4;
118 sr = sr >> 5 | LARc[2] << 11;
119 *c++ = sr >> 7
228 uword sr; local
    [all...]
gsm_implode.c 118 uword sr = 0; local
120 sr = sr >> 6 | LARc[0] << 10;
121 sr = sr >> 6 | LARc[1] << 10;
122 *c++ = sr >> 4;
123 sr = sr >> 5 | LARc[2] << 11;
124 *c++ = sr >> 7;
125 sr = sr >> 5 | LARc[3] << 11
    [all...]
gsm_decode.c 21 uword sr = 0; local
26 sr = *c++;
27 LARc[0] = sr & 0x3f; sr >>= 6;
28 sr |= (uword)*c++ << 2;
29 LARc[1] = sr & 0x3f; sr >>= 6;
30 sr |= (uword)*c++ << 4;
31 LARc[2] = sr & 0x1f; sr >>= 5
    [all...]
gsm_explode.c 25 uword sr = 0; local
29 sr = *c++;
30 LARc[0] = sr & 0x3f; sr >>= 6;
31 sr |= (uword)*c++ << 2;
32 LARc[1] = sr & 0x3f; sr >>= 6;
33 sr |= (uword)*c++ << 4;
34 LARc[2] = sr & 0x1f; sr >>= 5
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
StringReaderTest.java 27 StringReader sr; field in class:StringReaderTest
43 sr = new StringReader(testString);
44 sr.close();
46 sr.read(buf, 0, 2);
58 sr = new StringReader(testString);
59 sr.skip(5);
60 sr.mark(0);
61 sr.skip(5);
62 sr.reset();
64 sr.read(buf, 0, 2)
155 final StringReader sr = new StringReader(anything); local
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
SecureRandom_ImplTest.java 69 SecureRandom sr = new SecureRandom(); local
70 sr.setSeed(0);
71 sr.setSeed(-1);
72 sr.setSeed(11111111111L);
76 SecureRandom sr = new SecureRandom(); local
77 sr.nextBytes(new byte[20]);
78 sr.nextBytes(new byte[1]);
82 sr.nextBytes(null);
85 sr.nextBytes(new byte[5]);
105 SecureRandom sr = new SecureRandom() local
117 SecureRandom sr = new SecureRandom(); local
138 SecureRandom sr = new SecureRandom(); local
    [all...]
  /external/apache-harmony/security/src/test/api/java.injected/java/security/
SecureRandomTest.java 57 SecureRandom sr = new SecureRandom(); local
58 if (sr.next(1) != 1 || sr.next(2) != 3 || sr.next(3) != 7) {
67 SecureRandom sr = new SecureRandom(); local
68 sr.setSeed(12345);
76 SecureRandom sr = new SecureRandom(); local
77 sr.nextBytes(b);
89 SecureRandom sr = new SecureRandom(); local
90 if (!sr.getAlgorithm().equals("someRandom") |
111 SecureRandom sr = null; local
126 SecureRandom sr = SecureRandom.getInstance("someRandom", "SRProvider"); local
137 SecureRandom sr = SecureRandom.getInstance("someRandom", p); local
148 SecureRandom sr = new SecureRandom(); local
163 SecureRandom sr = new SecureRandom(); local
    [all...]
  /frameworks/compile/libbcc/runtime/lib/
udivsi3.c 27 unsigned sr; local
33 sr = __builtin_clz(d) - __builtin_clz(n);
34 /* 0 <= sr <= n_uword_bits - 1 or sr large */
35 if (sr > n_uword_bits - 1) /* d > r */
37 if (sr == n_uword_bits - 1) /* d == 1 */
39 ++sr;
40 /* 1 <= sr <= n_uword_bits - 1 */
42 q = n << (n_uword_bits - sr);
43 r = n >> sr;
    [all...]
udivmoddi4.c 34 unsigned sr; local
102 sr = __builtin_clz(d.s.high) - __builtin_clz(n.s.high);
103 /* 0 <= sr <= n_uword_bits - 2 or sr large */
104 if (sr > n_uword_bits - 2)
110 ++sr;
111 /* 1 <= sr <= n_uword_bits - 1 */
112 /* q.all = n.all << (n_udword_bits - sr); */
114 q.s.high = n.s.low << (n_uword_bits - sr);
115 /* r.all = n.all >> sr; */
133 unsigned sr = __builtin_ctz(d.s.low); local
    [all...]
udivmodti4.c 36 unsigned sr; local
104 sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high);
105 /* 0 <= sr <= n_udword_bits - 2 or sr large */
106 if (sr > n_udword_bits - 2)
112 ++sr;
113 /* 1 <= sr <= n_udword_bits - 1 */
114 /* q.all = n.all << (n_utword_bits - sr); */
116 q.s.high = n.s.low << (n_udword_bits - sr);
117 /* r.all = n.all >> sr; */
135 unsigned sr = __builtin_ctzll(d.s.low); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldStringReaderTest.java 27 StringReader sr; field in class:OldStringReaderTest
30 sr = new StringReader(testString);
32 sr.mark(-1);
40 sr = new StringReader(testString);
42 sr.read(buf, 0, -1);
48 sr.read(buf, -1, 1);
54 sr.read(buf, 1, testString.length());
64 sr.close();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ref/
SoftReferenceTest.java 36 SoftReference sr = new SoftReference(bool, rq); local
37 assertTrue("Initialization failed.", ((Boolean) sr.get())
54 SoftReference sr = new SoftReference(bool); local
55 assertTrue("Initialization failed.", ((Boolean) sr.get())
64 SoftReference sr = new SoftReference(bool); local
65 assertTrue("Same object not returned.", bool == sr.get());
ReferenceQueueTest.java 47 SoftReference sr = new SoftReference(integer, rq); local
48 sr.enqueue();
63 SoftReference sr = new SoftReference(b, rq); local
64 sr.enqueue();
76 SoftReference sr = new SoftReference(b, rq); local
77 sr.enqueue();
  /external/valgrind/main/include/
pub_tool_basics.h 216 static inline Bool sr_isError ( SysRes sr ) {
217 return sr._isError;
219 static inline UWord sr_Res ( SysRes sr ) {
220 return sr._isError ? 0 : sr._val;
222 static inline UWord sr_ResHI ( SysRes sr ) {
225 static inline UWord sr_Err ( SysRes sr ) {
226 return sr._isError ? sr._val : 0;
240 static inline Bool sr_isError ( SysRes sr ) {
    [all...]
  /external/icu4c/samples/uresb/
resources.mak 4 TARGETS = en.res root.res sr.res
26 sr.res : sr.txt
  /external/clang/test/SemaCXX/
overloaded-builtin-operators.cpp 78 void g(ShortRef sr, LongRef lr, E2Ref e2_ref, XpmfRef pmf_ref) {
80 short s1 = sr++;
86 short& sr1 = (sr *= lr);
87 volatile long& lr1 = (lr *= sr);
98 short& sr2 = (sr %= lr);
99 volatile long& lr2 = (lr <<= sr);
101 bool b1 = (sr && lr) || (sr || lr);
120 void test_with_ptrs(VolatileIntPtr vip, ConstIntPtr cip, ShortRef sr,
122 const int& cir1 = cip[sr];
    [all...]
  /libcore/luni/src/test/java/tests/java/security/
SecureRandomTest.java 62 MySecureRandom sr = new MySecureRandom(); local
63 if (sr.nextElement(1) != 1 || sr.nextElement(2) != 3 || sr.nextElement(3) != 7) {
72 SecureRandom sr = new SecureRandom(); local
73 sr.setSeed(12345);
81 SecureRandom sr = new SecureRandom(); local
82 sr.nextBytes(b);
90 sr.nextBytes(null);
101 SecureRandom sr = new SecureRandom() local
126 SecureRandom sr = null; local
141 SecureRandom sr = SecureRandom.getInstance("someRandom", "SRProvider"); local
204 SecureRandom sr = SecureRandom.getInstance("someRandom", p); local
251 SecureRandom sr = new SecureRandom(); local
267 SecureRandom sr = new SecureRandom(); local
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_view_single.c 200 static inline void _ewk_view_single_scroll_process_single(Ewk_View_Smart_Data *sd, void *pixels, Evas_Coord ow, Evas_Coord oh, const Ewk_Scroll_Request *sr)
205 sr->x, sr->y, sr->w, sr->h, sr->dx, sr->dy, pixels, ow, oh);
207 sx = sr->x;
208 sy = sr->y;
209 sw = sr->w
339 const Ewk_Scroll_Request *sr; local
    [all...]
  /bionic/libc/kernel/arch-sh/asm/
ptrace.h 18 unsigned long long sr; member in struct:pt_regs
51 unsigned long sr; member in struct:pt_regs
kgdb.h 21 unsigned long sr; member in struct:kgdb_regs
  /external/opencv/otherlibs/highgui/
highgui.h 290 CV_INLINE CvRect RectToCvRect( RECT sr );
291 CV_INLINE CvRect RectToCvRect( RECT sr )
293 sr = NormalizeRect( sr );
294 return cvRect( sr.left, sr.top, sr.right - sr.left, sr.bottom - sr.top )
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
SHA1PRNG_SecureRandomTest.java 39 private static SecureRandom sr; // fields used by tests field in class:SHA1PRNG_SecureRandomTest
47 sr = SecureRandom.getInstance(algorithm, provider);
58 sr.generateSeed(-1);
74 byte[] myBytes = sr.generateSeed(i);
93 myBytes1 = sr.generateSeed(i);
94 myBytes2 = sr.generateSeed(i);
113 sr.nextBytes(null);
140 sr.setSeed(myBytes);
147 sr.nextBytes(myBytes1);
167 sr.nextBytes(bytes1[k])
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSessionContextImplTest.java 34 SecureRandom sr = new SecureRandom(); local
36 CipherSuite.TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA, sr);
38 CipherSuite.TLS_DH_anon_WITH_3DES_EDE_CBC_SHA, sr);
40 CipherSuite.TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5, sr);
  /external/skia/include/core/
SkDither.h 85 unsigned sr = SkGetPackedR32(c); local
88 sr = SkDITHER_R32_FOR_565(sr, dither);
92 return SkPackARGB32(sa, sr, sg, sb);
99 unsigned sr = SkGetPackedR32(c); local
102 sr = SkDITHER_R32_FOR_565(sr, dither);
106 return SkPackARGB32(0xFF, sr, sg, sb);
123 unsigned sr = SkGetPackedR32(c); local
126 sr = SkDITHER_R32To565(sr, dither)
138 unsigned sr = SkGetPackedR32(c); local
    [all...]
  /external/openssl/crypto/ripemd/asm/
rmd-586.pl 53 @sr=( 8, 9, 9,11,13,15,15, 5, 7, 7, 8,11,14,14,12, 6,
446 &RIP5($A,$B,$C,$D,$E,$wr[ 0],$sr[ 0],$KR0,-2);
447 &RIP5($E,$A,$B,$C,$D,$wr[ 1],$sr[ 1],$KR0,0);
448 &RIP5($D,$E,$A,$B,$C,$wr[ 2],$sr[ 2],$KR0,0);
449 &RIP5($C,$D,$E,$A,$B,$wr[ 3],$sr[ 3],$KR0,0);
450 &RIP5($B,$C,$D,$E,$A,$wr[ 4],$sr[ 4],$KR0,0);
451 &RIP5($A,$B,$C,$D,$E,$wr[ 5],$sr[ 5],$KR0,0);
452 &RIP5($E,$A,$B,$C,$D,$wr[ 6],$sr[ 6],$KR0,0);
453 &RIP5($D,$E,$A,$B,$C,$wr[ 7],$sr[ 7],$KR0,0);
454 &RIP5($C,$D,$E,$A,$B,$wr[ 8],$sr[ 8],$KR0,0)
    [all...]

Completed in 352 milliseconds

1 2 3 4 5 6 7 8 9