HomeSort by relevance Sort by last modified time
    Searched defs:s2 (Results 451 - 475 of 1994) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
gdtoa.c 169 int rdir, s2, s5, spec_case, try_quick; local
280 s2 = j;
284 s2 = 0;
289 s2 += k;
536 s2 += i;
539 if (m2 > 0 && s2 > 0) {
540 i = m2 < s2 ? m2 : s2;
543 s2 -= i;
585 s2++;
    [all...]
  /external/aac/libSBRenc/src/
resampler.cpp 356 int s1, s2; local
359 s2 = s1 ^ 1;
372 state2 = states[0][s2];
380 state2b = states[i + 1][s2];
386 states[i + 1][s2] = y << 1;
388 states[i][s2] = input << 1;
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/
AbstractTest.class 
AbstractTest.java 132 String s2 = sw2.toString(); local
133 assertEquals("different data", s1, s2);
  /external/annotation-tools/scene-lib/src/annotations/util/
SceneOps.java 57 AScene s2 = new AScene(); local
61 IndexFileParser.parseFile(args[2], s2);
62 AScene diff = diff(s1, s2);
80 * @param s2 the "subtrahend"
81 * @return s1 - s2 ("set difference")
83 public static AScene diff(AScene s1, AScene s2) {
85 new DiffVisitor().visitScene(s1, s2, diff);
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestIntervalSet.java 70 IntervalSet s2 = IntervalSet.of(13,15); local
72 String result = (s.and(s2)).toString();
78 IntervalSet s2 = IntervalSet.of('d'); local
80 String result = (s.and(s2)).toString();
86 IntervalSet s2 = IntervalSet.of('0','9'); local
88 String result = (s.and(s2)).toString();
94 IntervalSet s2 = IntervalSet.of('d'); local
96 String result = (s.and(s2)).toString();
150 IntervalSet s2 = IntervalSet.of(12,15); local
152 String result = (s.subtract(s2)).toString()
158 IntervalSet s2 = IntervalSet.of(5,11); local
171 IntervalSet s2 = IntervalSet.of(15,25); local
184 IntervalSet s2 = IntervalSet.of(1,25); local
194 IntervalSet s2 = IntervalSet.of(5,55); \/\/ covers one and touches 2nd range local
211 IntervalSet s2 = IntervalSet.of(0,115); local
220 IntervalSet s2 = IntervalSet.of(10,20); local
235 IntervalSet s2 = IntervalSet.of(10,20); local
251 IntervalSet s2 = IntervalSet.of(1,5); local
273 IntervalSet s2 = IntervalSet.of(2,2); local
283 IntervalSet s2 = IntervalSet.of(2,2); local
294 IntervalSet s2 = IntervalSet.of(100,102); local
302 IntervalSet s2 = IntervalSet.of(100,102); local
384 IntervalSet s2 = IntervalSet.of(0,'q'); local
    [all...]
  /external/boringssl/src/crypto/poly1305/
poly1305.c 46 uint32_t s1, s2, s3, s4; member in struct:poly1305_state_st
91 mul32x32_64(state->h2, state->s3) + mul32x32_64(state->h3, state->s2) +
95 mul32x32_64(state->h4, state->s2);
186 state->s2 = state->r2 * 5;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Sequence.java 320 Enumeration s2 = other.getObjects(); local
325 ASN1Encodable obj2 = getNext(s2);
ASN1Set.java 435 Enumeration s2 = other.getObjects(); local
440 ASN1Encodable obj2 = getNext(s2);
  /external/clang/test/Analysis/
array-struct-region.c 282 ShortString s2 = s; local
283 ShortString s3 = s2;
299 ShortString s2 = s; local
301 ShortStringWrapper w = { s2, 0 };
array-struct.c 68 struct s2;
70 void g2(struct s2 *p);
74 struct s2 *p = __builtin_alloca(10);
111 struct s2 { struct in struct:s1
const-method-call.cpp 190 struct s2 { struct
204 s2().f(0);
padding_message.cpp 56 struct SmallCharArray s2; member in struct:StructSandwich
reference.cpp 74 struct S2 {
90 S2 s2 = { a }; local
93 if (s2.x != a) return;
97 clang_analyzer_eval(s2.x[0] == 42); // expected-warning{{TRUE}}
stack-addr-ps.cpp 12 int &s2 = s1; // expected-note {{binding reference variable 's2' here}} local
13 return s2; // expected-warning{{Address of stack memory associated with local variable 's1' returned}} expected-warning {{reference to stack memory associated with local variable 's1' returned}}
18 int &s2 = s1; // expected-note {{binding reference variable 's2' here}} local
19 int &s3 = s2; // expected-note {{binding reference variable 's3' here}}
72 S &s2 = s1; // expected-note {{binding reference variable 's2' here}} local
73 int &x = s2.x; // expected-note {{binding reference variable 'x' here}}
  /external/clang/test/CXX/class/class.union/
p1.cpp 80 struct s2 : VirtualBase { // expected-note {{because the function selected to copy base class of type 'VirtualBase' is not trivial}} struct in union:U3
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 29 struct s2 { struct
50 struct S2 {} constexpr; // expected-error {{struct cannot be marked constexpr}}
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p3.cpp 31 struct S2 {
36 S2 s21 = { 1, 2, 3.0 };
37 S2 s22 { 1.0, 2, 3 }; // expected-error {{type 'double' cannot be narrowed to 'int' in initializer list}} expected-note {{silence}}
38 S2 s23 { };
49 S s2 = { 1, 2, 3 }; member in namespace:bullet4_example1
68 S s2 { 1.0, 2, 3 }; // expected-error {{type 'double' cannot be narrowed to 'int' in initializer list}} expected-note {{silence}}
189 S s2{{0}};
  /external/clang/test/CodeGen/
const-init.c 21 union s2 { union
27 int g0 = (int)(&(((union s2 *) 0)->f0.f0) - 0);
ms_struct-bitfield.c 29 int s2 = sizeof(t2); variable
30 // CHECK: @s2 = global i32 2
31 // CHECK-ARM: @s2 = global i32 2
renderscript.c 65 typedef struct {short s1; char c; short s2; } sShortCharShort; member in struct:__anon15971
  /external/clang/test/CodeGenCXX/
vtable-available-externally.cpp 379 struct S2 {
389 S2 *s2 = new S2; local
390 s2->doStuff();
  /external/clang/test/Sema/
init.c 87 struct s1 s2 = { // expected-error {{variable has incomplete type 'struct s1'}} \ variable in typeref:struct:s1
  /external/clang/test/SemaTemplate/
instantiate-declref.cpp 52 struct { U x, y; } s2; local
53 s1.x = s2.x; // expected-error{{incompatible}}
  /external/compiler-rt/lib/asan/tests/
asan_str_test.cc 309 char *s2 = MallocAndMemsetString(size, fill); local
311 s2[size - 1] = '\0';
313 Ident(StrCmp(s1, s2));
314 Ident(StrCmp(s1, s2 + size - 1));
315 Ident(StrCmp(s1 + size - 1, s2 + size - 1));
317 EXPECT_DEATH(Ident(StrCmp)(s1 - 1, s2), LeftOOBReadMessage(1));
318 EXPECT_DEATH(Ident(StrCmp)(s1, s2 - 1), LeftOOBReadMessage(1));
319 EXPECT_DEATH(Ident(StrCmp)(s1 + size, s2), RightOOBReadMessage(0));
320 EXPECT_DEATH(Ident(StrCmp)(s1, s2 + size), RightOOBReadMessage(0));
324 EXPECT_DEATH(Ident(StrCmp)(s1 + size - 1, s2), RightOOBReadMessage(0))
343 char *s2 = MallocAndMemsetString(size); local
    [all...]

Completed in 1283 milliseconds

<<11121314151617181920>>