HomeSort by relevance Sort by last modified time
    Searched defs:sub (Results 1 - 25 of 205) sorted by null

1 2 3 4 5 6 7 8 9

  /external/llvm/test/MC/X86/
fixup-cpu-mode.s 6 sub $edata, %r12 // CHECK: subq $0, %r12 label
  /external/clang/test/Modules/Inputs/string_names/
sub.h 3 const int sub = 2; variable
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1278.js 37 function sub(x, y) { function
55 assertEquals(0, sub(0, 0));
56 assertEquals(0, sub(0, -0));
57 assertEquals(-0, sub(-0, 0));
58 assertEquals(0, sub(-0, -0));
  /art/test/021-string2/src/
Main.java 28 String sub = offset.substring(3, 13); local
44 Assert.assertEquals(test.compareTo(sub), 0);
45 Assert.assertEquals(sub.compareTo(test), 0);
46 Assert.assertTrue(test.equals(sub));
47 Assert.assertTrue(sub.equals(test));
49 Assert.assertFalse(offset.equals(sub));
50 Assert.assertFalse(sub.equals(offset));
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/
sce1.asm 5 sub rsp, 040h label
25 sub rsp, 060h label
sce3.asm 5 sub rsp, 040h label
25 sub rsp, 060h label
  /external/javassist/src/test/test/javassist/bytecode/analysis/
ScannerTest.java 71 Subroutine sub = subs[pos]; local
72 assertNotNull(sub);
73 assertEquals(sub.start(), start);
75 assertTrue(sub.callers().contains(new Integer(callers[i])));
  /art/test/032-concrete-sub/src/
ConcreteSub.java 29 ConcreteSub sub = new ConcreteSub(); local
32 callBase(sub);
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
Vector2D.cpp 36 void Vector2D::sub(const Vector2D& v) { function in class:Vector2D
  /external/chromium_org/third_party/boringssl/src/crypto/poly1305/
poly1305_arm_asm.S 162 sub sp,sp,#192 label
235 # asm 1: sub >input_0=int32#1,<input_0=int32#1,#32
236 # asm 2: sub >input_0=r0,<input_0=r0,#32
237 sub r0,r0,#32 label
543 # asm 1: sub >input_2=int32#2,<input_2=int32#2,#64
544 # asm 2: sub >input_2=r1,<input_2=r1,#64
545 sub r1,r1,#64 label
944 # asm 1: sub >len=int32#4,<len=int32#4,#64
945 # asm 2: sub >len=r3,<len=r3,#64
946 sub r3,r3,#6 label
1129 sub r2,r1,#32 label
1450 sub r3,r3,#32 label
1619 sub sp,sp,#0 label
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/api/
memory.cpp 223 sub_buffer *sub = dynamic_cast<sub_buffer *>(obj); local
225 (sub ? &sub->parent : NULL));
228 sub_buffer *sub = dynamic_cast<sub_buffer *>(obj); local
230 (sub ? sub->offset() : 0));
  /external/chromium_org/third_party/re2/re2/
set.cc 52 re2::Regexp** sub = new re2::Regexp*[nsub + 1]; local
54 sub[i] = re->sub()[i]->Incref();
55 sub[nsub] = m;
57 re = re2::Regexp::Concat(sub, nsub + 1, pf);
58 delete[] sub;
60 re2::Regexp* sub[2]; local
61 sub[0] = re;
62 sub[1] = m;
63 re = re2::Regexp::Concat(sub, 2, pf)
    [all...]
simplify.cc 62 subs = sub();
73 subs = sub();
78 subs = sub();
201 Regexp** subs = re->sub();
203 Regexp* sub = subs[i]; local
205 if (newsub != sub) {
220 Regexp** nre_subs = nre->sub();
229 if (newsub == re->sub()[0]) {
236 nre->sub()[0] = newsub;
252 if (newsub == re->sub()[0])
    [all...]
  /external/llvm/test/MC/ARM/
arm-arithmetic-aliases.s 6 sub r2, r2, #6 label
7 sub r2, #6 label
8 sub r2, r2, r3 label
9 sub r2, r3 label
11 @ CHECK: sub r2, r2, #6 @ encoding: [0x06,0x20,0x42,0xe2]
12 @ CHECK: sub r2, r2, #6 @ encoding: [0x06,0x20,0x42,0xe2]
13 @ CHECK: sub r2, r2, r3 @ encoding: [0x03,0x20,0x42,0xe0]
14 @ CHECK: sub r2, r2, r3 @ encoding: [0x03,0x20,0x42,0xe0]
  /external/mesa3d/src/gallium/state_trackers/clover/api/
memory.cpp 223 sub_buffer *sub = dynamic_cast<sub_buffer *>(obj); local
225 (sub ? &sub->parent : NULL));
228 sub_buffer *sub = dynamic_cast<sub_buffer *>(obj); local
230 (sub ? sub->offset() : 0));
  /art/test/093-serialization/src/
Main.java 48 Sub sub = new Sub('X'); local
49 objStream.writeObject(sub);
63 Sub sub; local
66 sub = (Sub) objStream.readObject();
75 sub.check();
106 class Sub extends Base
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_StringWriter.java 159 String sub = str.substring(offset, offset + count); local
161 buf.append(sub);
  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicToQuadratics.cpp 59 Cubic sub; local
65 sub_divide(cubic, start, 1, sub);
66 cPtr = &sub;
142 // and do a more precise job when calling chop at and sub divide by computing the fractional ts.
  /external/chromium_org/v8/test/mjsunit/
html-string-funcs.js 36 strike: 'strike', sub: 'sub', sup: 'sup' };
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCUnusedIVarsChecker.cpp 54 const Expr *sub = *i; local
55 if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(sub))
56 sub = OVE->getSourceExpr();
57 Scan(M, sub);
  /external/llvm/lib/Support/
Regex.cpp 98 std::string Regex::sub(StringRef Repl, StringRef String, function in class:Regex
  /external/llvm/test/MC/AArch64/
arm64-diags.s 239 ; Relocated expressions should not be accepted for 32-bit adds or sub (imm)
254 sub x3, x5, sym@PAGEOFF label
255 sub w20, w30, sym@PAGEOFF label
257 ; CHECK-ERRORS: sub x3, x5, sym@PAGEOFF
260 ; CHECK-ERRORS: sub w20, w30, sym@PAGEOFF
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
Identity2Test.java 175 IdentitySubclass sub = new IdentitySubclass("test", scope); local
176 IdentityScope returnedScope = sub.getScope();
184 IdentitySubclass sub = new IdentitySubclass("test", local
186 sub.setPublicKey(pubKey);
187 PublicKey returnedPubKey = sub.getPublicKey();
196 IdentitySubclass sub = new IdentitySubclass(name, local
198 assertEquals("Wrong Name returned", name, sub.getName());
206 IdentitySubclass sub = new IdentitySubclass("test", local
208 sub.setInfo(info);
209 assertEquals("Wrong Info returned", info, sub.getInfo())
216 IdentitySubclass sub = new IdentitySubclass("test", local
233 IdentitySubclass sub = new IdentitySubclass("test", local
247 IdentitySubclass sub = new IdentitySubclass("test", local
264 IdentitySubclass sub = new IdentitySubclass("test", local
281 IdentitySubclass sub = new IdentitySubclass("test", null); local
298 IdentitySubclass sub = new IdentitySubclass("test", null); local
310 IdentitySubclass sub = new IdentitySubclass("test", null); local
320 IdentitySubclass sub = new IdentitySubclass("test", null); local
    [all...]
  /external/chromium_org/components/policy/core/browser/
managed_bookmarks_tracker.cc 143 const BookmarkNode* sub = local
145 UpdateBookmarks(sub, children);
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_builder.cpp 181 ir_expression *sub(operand a, operand b) function in namespace:ir_builder

Completed in 1653 milliseconds

1 2 3 4 5 6 7 8 9