Home
last modified time | relevance | path

Searched refs:into (Results 1 – 25 of 2076) sorted by relevance

12345678910>>...84

/external/valgrind/none/tests/s390x/
Dcondloadstore.stdout.exp1 LOC 0000000000000000 into 0000000000000000 if mask0 for cc 0: 0000000000000000
2 LOC 0000000000000000 into 0000000000000000 if mask1 for cc 0: 0000000000000000
3 LOC 0000000000000000 into 0000000000000000 if mask2 for cc 0: 0000000000000000
4 LOC 0000000000000000 into 0000000000000000 if mask3 for cc 0: 0000000000000000
5 LOC 0000000000000000 into 0000000000000000 if mask4 for cc 0: 0000000000000000
6 LOC 0000000000000000 into 0000000000000000 if mask5 for cc 0: 0000000000000000
7 LOC 0000000000000000 into 0000000000000000 if mask6 for cc 0: 0000000000000000
8 LOC 0000000000000000 into 0000000000000000 if mask7 for cc 0: 0000000000000000
9 LOC 0000000000000000 into 0000000000000000 if mask8 for cc 0: 0000000000000000
10 LOC 0000000000000000 into 0000000000000000 if mask9 for cc 0: 0000000000000000
[all …]
/external/google-breakpad/src/client/windows/crash_generation/
DReadMe.txt15 | go into CONNECTING state.
16 | If connection is done synchronously, go into CONNECTED
18 | For any unexpected problems, go into ERROR state.
23 | If connection is complete, go into CONNECTED state.
24 | For any unexpected problems, go into DISCONNECTING state.
28 | go into READING state.
29 | For any unexpected problems, go into DISCONNECTING state.
32 | If read is done, go into READ_DONE state.
33 | For any unexpected problems, go into DISCONNECTING state.
38 | go into WRITING state.
[all …]
/external/libvncserver/common/
Dd3des.c132 void rfbCPKey(register unsigned long *into) in rfbCPKey() argument
137 while( from < endp ) *into++ = *from++; in rfbCPKey()
162 register unsigned long *into) in scrunch() argument
164 *into = (*outof++ & 0xffL) << 24; in scrunch()
165 *into |= (*outof++ & 0xffL) << 16; in scrunch()
166 *into |= (*outof++ & 0xffL) << 8; in scrunch()
167 *into++ |= (*outof++ & 0xffL); in scrunch()
168 *into = (*outof++ & 0xffL) << 24; in scrunch()
169 *into |= (*outof++ & 0xffL) << 16; in scrunch()
170 *into |= (*outof++ & 0xffL) << 8; in scrunch()
[all …]
/external/oauth/core/src/main/java/net/oauth/
DOAuthMessage.java207 Map<String, Object> into = new HashMap<String, Object>(); in getDump() local
208 dump(into); in getDump()
209 return into; in getDump()
212 protected void dump(Map<String, Object> into) throws IOException { in dump() argument
213 into.put("URL", URL); in dump()
216 into.putAll(getParameterMap()); in dump()
312 StringBuilder into = new StringBuilder(); in getAuthorizationHeader() local
314 into.append(" realm=\"").append(OAuth.percentEncode(realm)).append('"'); in getAuthorizationHeader()
321 if (into.length() > 0) into.append(","); in getAuthorizationHeader()
322 into.append(" "); in getAuthorizationHeader()
[all …]
/external/guava/guava/src/com/google/common/hash/
DFunnels.java46 public void funnel(byte[] from, PrimitiveSink into) { in funnel() argument
47 into.putBytes(from); in funnel()
80 public void funnel(CharSequence from, PrimitiveSink into) { in funnel() argument
81 into.putUnencodedChars(from); in funnel()
106 public void funnel(CharSequence from, PrimitiveSink into) { in funnel() argument
107 into.putString(from, charset); in funnel()
157 public void funnel(Integer from, PrimitiveSink into) { in funnel() argument
158 into.putInt(from); in funnel()
183 public void funnel(Iterable<? extends E> from, PrimitiveSink into) { in funnel() argument
185 elementFunnel.funnel(e, into); in funnel()
[all …]
/external/valgrind/
Dglibc-2.34567-NPTL-helgrind.supp33 # helgrind-glibc2X-002 was merged into helgrind-glibc2X-001
35 # helgrind-glibc2X-003 was merged into helgrind-glibc2X-001
49 # helgrind-glibc2X-006 was merged into helgrind-glibc2X-005
51 # helgrind-glibc2X-007 was merged into helgrind-glibc2X-001
53 # helgrind-glibc2X-008 was merged into helgrind-glibc2X-004
55 # helgrind-glibc2X-009 was merged into helgrind-glibc2X-004
57 # helgrind-glibc2X-010 was merged into helgrind-glibc2X-001
59 # helgrind-glibc2X-011 was merged into helgrind-glibc2X-004
61 # helgrind-glibc2X-012 was merged into helgrind-glibc2X-001
63 # helgrind-glibc2X-013 was merged into helgrind-glibc2X-001
[all …]
/external/oauth/core/src/main/java/net/oauth/http/
DHttpResponseMessage.java36 public void dump(Map<String, Object> into) throws IOException { in dump() argument
37 super.dump(into); in dump()
38 into.put(STATUS_CODE, Integer.valueOf(getStatusCode())); in dump()
41 into.put(LOCATION, location); in dump()
/external/eigen/doc/
DTopicLazyEvaluation.dox13 …ether to evaluate it into a temporary variable. Indeed, in certain cases it is better to evaluate …
15 A traditional math library without expression templates always evaluates all sub-expressions into t…
19 …traditional library would evaluate \c vec2 + vec3 into a temporary \c vec4 and then copy \c vec4
21 Expression-templates-based libraries can avoid evaluating sub-expressions into temporaries, which i…
23 … lazy evaluation, and when on the contrary it should evaluate immediately into a temporary variabl…
43 Eigen first evaluates <tt>matrix * matrix</tt> into a temporary matrix, and then copies it into the…
55into a temporary matrix. Indeed, experiments showed that it is often beneficial for performance to…
57 … total cost of an operation is reduced if a sub-expression gets evaluated into a temporary. Indeed…
61 …variable. Eigen understands this and evaluates <tt>matrix3 + matrix4</tt> into a temporary variabl…
/external/jetty/src/config/etc/
DjdbcRealm.properties49 # mysql> insert into users values (1, 'admin', 'password');
50 # mysql> insert into roles values (1, 'server-administrator');
51 # mysql> insert into roles values (2, 'content-administrator');
52 # mysql> insert into user_roles values (1, 1);
53 # mysql> insert into user_roles values (1, 2);
/external/llvm/test/CodeGen/X86/
Dinsertps-O0-bug.ll4 ; used by an INSERTPS into a scalar load plus scalar_to_vector.
6 ; In order to fold a load into the memory operand of an INSERTPSrm, the backend
7 ; tries to canonicalize a vector load in input to an INSERTPS node into a
11 ; However, ISel can only select an INSERTPSrm if folding a load into the operand
21 ; At -O0, the backend would attempt to canonicalize the load to 'b' into
34 ; canonicalized into a scalar load plus scalar_to_vector (a movss).
Dtailcall-largecode.ll6 ; This is the large code model, so &callee may not fit into the jmp
7 ; instruction. Instead, stick it into a register.
21 ; Put the call target into R11, which won't be clobbered while restoring
52 ; This is the large code model, so &manyargs_callee may not fit into
53 ; the jmp instruction. Put it into a register which won't be clobbered
Daddr-mode-matcher.ll7 ; The AND should be turned into a subreg access.
9 ; The shift (leal) should be folded into the scale of the address in the load.
41 ; in address matching transform this into into a shift-of-and and the resuting
/external/elfutils/src/libdwfl/
Dcore-file.c340 void *into = *buffer; in dwfl_elf_phdr_memory_callback() local
346 into = malloc (*buffer_available); in dwfl_elf_phdr_memory_callback()
347 if (unlikely (into == NULL)) in dwfl_elf_phdr_memory_callback()
354 ssize_t nread = pread_retry (elf->fildes, into, *buffer_available, start); in dwfl_elf_phdr_memory_callback()
357 if (into != *buffer) in dwfl_elf_phdr_memory_callback()
358 free (into); in dwfl_elf_phdr_memory_callback()
366 const void *eos = memchr (into, '\0', nread); in dwfl_elf_phdr_memory_callback()
367 if (unlikely (eos == NULL) || unlikely (eos == into)) in dwfl_elf_phdr_memory_callback()
370 free (into); in dwfl_elf_phdr_memory_callback()
373 nread = eos + 1 - into; in dwfl_elf_phdr_memory_callback()
[all …]
/external/clang/test/CodeGenObjC/
Dobjc2-write-barrier-3.m29 // storing into an array of strong pointer types.
33 // storing indirectly into an array of strong pointer types.
39 // storing into a struct element of an array of strong pointer types.
44 // Storing into an ivar of an array of strong pointer types.
/external/libvpx/libvpx/vpx_dsp/x86/
Dvariance_impl_mmx.asm113 add rbx,rdx ; Inc pointer into ref data
114 add rax,rcx ; Inc pointer into the new data
136 add rbx,rdx ; Inc pointer into ref data
137 add rax,rcx ; Inc pointer into the new data
159 add rbx,rdx ; Inc pointer into ref data
160 add rax,rcx ; Inc pointer into the new data
182 add rbx,rdx ; Inc pointer into ref data
183 add rax,rcx ; Inc pointer into the new data
205 add rbx,rdx ; Inc pointer into ref data
206 add rax,rcx ; Inc pointer into the new data
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/
DAPI CHANGES.TXT5 Look for Get() to turn into indexers!
9 … methods have been turned virtual. Constants in UPPERCASE_ONLY have been turned into UppercaseOnly.
13 Antlr.Runtime.BaseRecognizer.Failed() has been turned into a property
37 Antlr.Runtime.Tree.RewriteRuleElementStream.HasNext has been turned into a property
47 Antlr.Runtime.Tree.ITreeAdaptor.GetNilNode has been turned into property Nil (implementing classes …
/external/llvm/test/CodeGen/AArch64/
Datomic-ops.ll24 ; w0 below is a reasonable guess but could change: it certainly comes into the
44 ; w0 below is a reasonable guess but could change: it certainly comes into the
64 ; w0 below is a reasonable guess but could change: it certainly comes into the
84 ; x0 below is a reasonable guess but could change: it certainly comes into the
104 ; w0 below is a reasonable guess but could change: it certainly comes into the
124 ; w0 below is a reasonable guess but could change: it certainly comes into the
144 ; w0 below is a reasonable guess but could change: it certainly comes into the
164 ; x0 below is a reasonable guess but could change: it certainly comes into the
184 ; w0 below is a reasonable guess but could change: it certainly comes into the
204 ; w0 below is a reasonable guess but could change: it certainly comes into the
[all …]
/external/llvm/lib/Target/X86/
DREADME-SSE.txt23 match them. For example, this should turn into a horizontal add:
50 into:
103 into:
213 This compiles into:
258 "fold" it into the uses, producing something like this:
326 Apply the same transformation that merged four float into a single 128-bit load
332 specified. We should turn int_x86_sse_max_ss and X86ISD::FMIN etc. into other
377 "y" looks good, but "x" does silly movzwl stuff around into a GPR. It seems
401 CodeGen/X86/vec_align.ll tests whether we can turn 4 scalar loads into a single
407 2. The code for turning 4 x load into a single vector load is target
[all …]
/external/oauth/core/src/main/java/net/oauth/client/
DURLConnectionResponse.java96 public void dump(Map<String, Object> into) throws IOException { in dump() argument
97 super.dump(into); in dump()
104 into.put(REQUEST, request.toString()); in dump()
132 into.put(HttpMessage.RESPONSE, response.toString()); in dump()
DOAuthResponseMessage.java77 protected void dump(Map<String, Object> into) throws IOException in dump() argument
79 super.dump(into); in dump()
80 http.dump(into); in dump()
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/
DHttpMethodResponse.java93 public void dump(Map<String, Object> into) throws IOException in dump() argument
95 super.dump(into); in dump()
118 into.put(REQUEST, request.toString()); in dump()
134 into.put(HttpMessage.RESPONSE, response.toString()); in dump()
/external/jemalloc/
DREADME3 into use as the FreeBSD libc allocator in 2005, and since then it has found its
4 way into numerous applications that rely on its predictable behavior. In 2010
7 hooks. Modern jemalloc releases continue to be integrated back into FreeBSD,
/external/clang/test/SemaObjC/
Dobjcbridge-attribute-arc.m48 …_bridge_transfer to transfer ownership of a +1 'CFTestingRef' (aka 'struct __CFError *') into ARC}}
74 …ridge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka 'struct __CFErrorRef *') into ARC}}
77 …ridge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka 'struct __CFErrorRef *') into ARC}}
80 …dge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka 'struct __CFErrorRef *') into ARC}} \
84 …ge_transfer to transfer ownership of a +1 'CFUColor2Ref' (aka 'union __CFUPrimeColor *') into ARC}}
95 …ridge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka 'struct __CFErrorRef *') into ARC}}
106 …bridge_transfer to transfer ownership of a +1 'CFErrorRef' (aka 'struct __CFErrorRef *') into ARC}}
109 …bridge_transfer to transfer ownership of a +1 'CFErrorRef' (aka 'struct __CFErrorRef *') into ARC}}
113 …bridge_transfer to transfer ownership of a +1 'CFErrorRef' (aka 'struct __CFErrorRef *') into ARC}}
119 …ge_transfer to transfer ownership of a +1 'CFMyErrorRef' (aka 'struct __CFMyErrorRef *') into ARC}}
[all …]
/external/clang/test/SemaObjCXX/
Dobjcbridge-attribute-arc.mm33 …{{use __bridge_transfer to transfer ownership of a +1 'CFTestingRef' (aka '__CFError *') into ARC}}
59 …use __bridge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka '__CFErrorRef *') into ARC}}
62 …use __bridge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka '__CFErrorRef *') into ARC}}
65 …e __bridge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka '__CFErrorRef *') into ARC}} \
69 …__bridge_transfer to transfer ownership of a +1 'CFUColor2Ref' (aka '__CFUPrimeColor *') into ARC}}
80 …use __bridge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka '__CFErrorRef *') into ARC}}
91 …{use __bridge_transfer to transfer ownership of a +1 'CFErrorRef' (aka '__CFErrorRef *') into ARC}}
94 …{use __bridge_transfer to transfer ownership of a +1 'CFErrorRef' (aka '__CFErrorRef *') into ARC}}
98 …{use __bridge_transfer to transfer ownership of a +1 'CFErrorRef' (aka '__CFErrorRef *') into ARC}}
104 … __bridge_transfer to transfer ownership of a +1 'CFMyErrorRef' (aka '__CFMyErrorRef *') into ARC}}
[all …]
Dobjcbridge-attribute.mm33 …{{use __bridge_transfer to transfer ownership of a +1 'CFTestingRef' (aka '__CFError *') into ARC}}
59 …use __bridge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka '__CFErrorRef *') into ARC}}
62 …use __bridge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka '__CFErrorRef *') into ARC}}
65 …e __bridge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka '__CFErrorRef *') into ARC}} \
69 …__bridge_transfer to transfer ownership of a +1 'CFUColor2Ref' (aka '__CFUPrimeColor *') into ARC}}
80 …use __bridge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka '__CFErrorRef *') into ARC}}
91 …{use __bridge_transfer to transfer ownership of a +1 'CFErrorRef' (aka '__CFErrorRef *') into ARC}}
94 …{use __bridge_transfer to transfer ownership of a +1 'CFErrorRef' (aka '__CFErrorRef *') into ARC}}
98 …{use __bridge_transfer to transfer ownership of a +1 'CFErrorRef' (aka '__CFErrorRef *') into ARC}}
104 … __bridge_transfer to transfer ownership of a +1 'CFMyErrorRef' (aka '__CFMyErrorRef *') into ARC}}
[all …]

12345678910>>...84