Searched refs:add (Results 151 - 175 of 6065) sorted by relevance

1234567891011>>

/external/libhevc/common/
H A Dihevc_chroma_itrans_recon.c119 WORD32 add; local
130 add = 1 << (shift - 1);
153 CLIP_S16(((e[0] + o[0] + add) >> shift));
155 CLIP_S16(((e[1] + o[1] + add) >> shift));
157 CLIP_S16(((e[1] - o[1] + add) >> shift));
159 CLIP_S16(((e[0] - o[0] + add) >> shift));
171 add = 1 << (shift - 1);
187 CLIP_S16(((e[0] + o[0] + add) >> shift));
190 CLIP_S16(((e[1] + o[1] + add) >> shift));
193 CLIP_S16(((e[1] - o[1] + add) >> shif
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DLLVMTargetMachine.cpp203 PM.add(Printer);
205 PM.add(createGCInfoDeleter());
225 PM.add(createGCInfoDeleter());
270 PM.add(Printer);
277 PM.add(createMachineFunctionPrinterPass(dbgs(), Banner));
283 PM.add(createMachineFunctionPrinterPass(dbgs(), Banner));
286 PM.add(createMachineVerifierPass(Banner));
302 PM.add(createTypeBasedAliasAnalysisPass());
303 PM.add(createBasicAliasAnalysisPass());
308 PM.add(createVerifierPas
[all...]
/external/boringssl/linux-aarch64/crypto/chacha/
H A Dchacha-armv8.S42 add x29,sp,#0
87 add w5,w5,w9
88 add w6,w6,w10
89 add w7,w7,w11
90 add w8,w8,w12
99 add w13,w13,w17
100 add w14,w14,w19
101 add w15,w15,w20
102 add w16,w16,w21
111 add w
[all...]
/external/apache-http/src/org/apache/http/impl/client/
H A DRedirectLocations.java65 public void add(final URI uri) { method in class:RedirectLocations
66 this.uris.add(uri);
/external/autotest/frontend/client/src/autotest/common/
H A DSimpleChangeListenerCollection.java14 public void add(SimpleChangeListener listener) { method in class:SimpleChangeListenerCollection
15 listeners.add(listener);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DV1TBSCertificateGenerator.java123 // seq.add(version); - not required as default value.
124 seq.add(serialNumber);
125 seq.add(signature);
126 seq.add(issuer);
133 validity.add(startDate);
134 validity.add(endDate);
136 seq.add(new DERSequence(validity));
138 seq.add(subject);
140 seq.add(subjectPublicKeyInfo);
/external/compiler-rt/lib/builtins/arm/
H A Daeabi_ldivmod.S24 add r12, sp, #8
29 add sp, sp, #16
H A Daeabi_uldivmod.S24 add r12, sp, #8
29 add sp, sp, #16
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/property/
H A DPropertyListIntersector.java43 m_intersection.add(new PropertyGroup(property));
48 if (!propertyGroup.add(properties)) {
63 properties.add(compositeProperty);
87 m_properties.add(property);
98 public boolean add(Property[] properties) { method in class:PropertyListIntersector.PropertyGroup
100 if (add(property)) {
124 private boolean add(Property property) { method in class:PropertyListIntersector.PropertyGroup
129 m_properties.add(property);
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoy.ml10 Hashtbl.add Parser.binop_precedence '<' 10;
11 Hashtbl.add Parser.binop_precedence '+' 20;
12 Hashtbl.add Parser.binop_precedence '-' 20;
13 Hashtbl.add Parser.binop_precedence '*' 40; (* highest. *)
/external/llvm/test/MC/ARM/
H A Dmodified-immediate-fixup.s14 @ CHECK: add r0, r0, #260
15 add r0, r0, #(L1 - L2)
H A Dthumb2-cbn-to-next-inst.s7 add r1, r2, r3
10 add r4, r5, r6
14 add r7, r8, r9
17 add r10, r11, r12
21 add r3, r4, r5
23 @ CHECK: 0: 02 eb 03 01 add.w r1, r2, r3
25 @ CHECK: 6: 05 eb 06 04 add.w r4, r5, r6
28 @ CHECK: 10: 08 eb 09 07 add.w r7, r8, r9
30 @ CHECK: 16: 0b eb 0c 0a add.w r10, r11, r12
33 @ CHECK: 20: 04 eb 05 03 add
[all...]
/external/llvm/test/MC/ELF/
H A Dsubsection.s6 add 1, %eax label
9 add 2, %eax label
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/
H A DRunFakeFtpServer.groovy39 fileSystem.add(new DirectoryEntry(HOME_DIR))
40 fileSystem.add(new DirectoryEntry("$HOME_DIR/subdir"))
41 fileSystem.add(new FileEntry(path: "$HOME_DIR/abc.txt", contents: '1234567890'))
42 fileSystem.add(new FileEntry(path: "$HOME_DIR/def.txt", contents: '1234567890'))
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/
H A DRunFakeFtpServer.groovy39 fileSystem.add(new DirectoryEntry(HOME_DIR))
40 fileSystem.add(new DirectoryEntry("$HOME_DIR/subdir"))
41 fileSystem.add(new FileEntry(path: "$HOME_DIR/abc.txt", contents: '1234567890'))
42 fileSystem.add(new FileEntry(path: "$HOME_DIR/def.txt", contents: '1234567890'))
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/fake/
H A DRunFakeFtpServer.groovy40 fileSystem.add(new DirectoryEntry(HOME_DIR))
41 fileSystem.add(new DirectoryEntry("$HOME_DIR/subdir"))
42 fileSystem.add(new FileEntry(path: "$HOME_DIR/abc.txt", contents: '1234567890'))
43 fileSystem.add(new FileEntry(path: "$HOME_DIR/def.txt", contents: '1234567890'))
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/
H A DRunFakeFtpServer.groovy39 fileSystem.add(new DirectoryEntry(HOME_DIR))
40 fileSystem.add(new DirectoryEntry("$HOME_DIR/subdir"))
41 fileSystem.add(new FileEntry(path: "$HOME_DIR/abc.txt", contents: '1234567890'))
42 fileSystem.add(new FileEntry(path: "$HOME_DIR/def.txt", contents: '1234567890'))
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/
H A DRunFakeFtpServer.groovy39 fileSystem.add(new DirectoryEntry(HOME_DIR))
40 fileSystem.add(new DirectoryEntry("$HOME_DIR/subdir"))
41 fileSystem.add(new FileEntry(path: "$HOME_DIR/abc.txt", contents: '1234567890'))
42 fileSystem.add(new FileEntry(path: "$HOME_DIR/def.txt", contents: '1234567890'))
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/
H A DRunFakeFtpServer.groovy39 fileSystem.add(new DirectoryEntry(HOME_DIR))
40 fileSystem.add(new DirectoryEntry("$HOME_DIR/subdir"))
41 fileSystem.add(new FileEntry(path: "$HOME_DIR/abc.txt", contents: '1234567890'))
42 fileSystem.add(new FileEntry(path: "$HOME_DIR/def.txt", contents: '1234567890'))
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/
H A DRunFakeFtpServer.groovy39 fileSystem.add(new DirectoryEntry(HOME_DIR))
40 fileSystem.add(new DirectoryEntry("$HOME_DIR/subdir"))
41 fileSystem.add(new FileEntry(path: "$HOME_DIR/abc.txt", contents: '1234567890'))
42 fileSystem.add(new FileEntry(path: "$HOME_DIR/def.txt", contents: '1234567890'))
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/scanner/
H A DScannerImplTest.java42 etalonTokens.add(new StreamStartToken(dummy, dummy));
43 etalonTokens.add(new BlockMappingStartToken(dummy, dummy));
44 etalonTokens.add(new KeyToken(dummy, dummy));
45 etalonTokens.add(new ScalarToken("string", true, dummy, dummy, (char) 0));
46 etalonTokens.add(new ValueToken(dummy, dummy));
47 etalonTokens.add(new ScalarToken("abcd", true, dummy, dummy, (char) 0));
48 etalonTokens.add(new BlockEndToken(dummy, dummy));
49 etalonTokens.add(new StreamEndToken(dummy, dummy));
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoy.ml10 Hashtbl.add Parser.binop_precedence '<' 10;
11 Hashtbl.add Parser.binop_precedence '+' 20;
12 Hashtbl.add Parser.binop_precedence '-' 20;
13 Hashtbl.add Parser.binop_precedence '*' 40; (* highest. *)
/external/swiftshader/third_party/LLVM/test/MC/ARM/
H A Dmode-switch.s6 add.w r0, r0, r1
7 @ CHECK: add.w r0, r0, r1 @ encoding: [0x00,0xeb,0x01,0x00]
10 add r0, r0, r1
11 @ CHECK: add r0, r0, r1 @ encoding: [0x01,0x00,0x80,0xe0]
H A Dnop-armv4-padding.s6 add r0, r1, r2
8 add r0, r1, r2
H A Dnop-armv6t2-padding.s6 add r0, r1, r2
8 add r0, r1, r2

Completed in 702 milliseconds

1234567891011>>