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

1 2 3 4 5 6 7 8 91011>>

  /external/libvorbis/doc/
a1-encapsulation-ogg.tex 4 \section{Embedding Vorbis into an Ogg stream} \label{vorbis:over:ogg}
9 streams to encapsulate Vorbis compressed audio packet data into file
42 Vorbis with other media types into a multi-stream Ogg file. At the
99 Packets are placed into ogg pages in order until the end of stream.
02-bitpacking.tex 12 decoder. Most current binary storage arrangements group bits into a
16 bitstream into an actual representation in fixed-width words.
68 \subsubsection{coding bits into byte sequences}
71 zero to 32 bits wide, into packets. These integer fields are not
78 coded. When packing the bits into bytes, the encoder begins by
79 placing the LSb of the integer to be written into the least
84 byte and writing the next bit into the bit position 0 of that byte.
86 from the byte stream and reassembling them into integers.
103 Code the 4 bit integer value '12' [b1100] into an empty bytestream.
211 byte-aligned packets which are embedded into a larger byte-aligne
    [all...]
  /external/oauth/core/src/main/java/net/oauth/http/
HttpResponseMessage.java 36 public void dump(Map<String, Object> into) throws IOException {
37 super.dump(into);
38 into.put(STATUS_CODE, Integer.valueOf(getStatusCode()));
41 into.put(LOCATION, location);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
x86-64-opcode-inval.s 21 into: label
22 into
  /external/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 207 Map<String, Object> into = new HashMap<String, Object>(); local
208 dump(into);
209 return into;
212 protected void dump(Map<String, Object> into) throws IOException {
213 into.put("URL", URL);
216 into.putAll(getParameterMap());
312 StringBuilder into = new StringBuilder(); local
314 into.append(" realm=\"").append(OAuth.percentEncode(realm)).append('"');
321 if (into.length() > 0) into.append(",")
343 StringBuilder into = new StringBuilder(); local
361 List<OAuth.Parameter> into = new ArrayList<OAuth.Parameter>(); local
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/
URLConnectionResponse.java 96 public void dump(Map<String, Object> into) throws IOException {
97 super.dump(into);
104 into.put(REQUEST, request.toString());
132 into.put(HttpMessage.RESPONSE, response.toString());
  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpMethodResponse.java 93 public void dump(Map<String, Object> into) throws IOException
95 super.dump(into);
118 into.put(REQUEST, request.toString());
134 into.put(HttpMessage.RESPONSE, response.toString());
  /external/swiftshader/third_party/LLVM/test/MC/X86/
x86-32.s 77 into label
78 // CHECK: into
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
vector2.s 559 /* both multiply signed fractions into separate Accumulators */
561 /* same as above, but sum result into A1. MAC order is arbitrary.
564 /* sum product into A1, subtract product from A0 */
578 into the Accumulators,MAC1 into half-word registers. */ label
580 but sum result into A1. ; MAC order is arbitrary. */
581 r7.h=(a1+=r6.h*r5.l), r7.l=(a0=r6.h*r5.h) ; /* sum into A1,
582 subtract into A0 */
605 into the Accumulators */ label
607 sum result into A1. MAC order is arbitrary. *
609 into A0 *\/ label
    [all...]
  /external/elfutils/libdwfl/
core-file.c 362 void *into = *buffer; local
368 into = malloc (*buffer_available);
369 if (unlikely (into == NULL))
376 ssize_t nread = pread_retry (elf->fildes, into, *buffer_available, start);
379 if (into != *buffer)
380 free (into);
388 const void *eos = memchr (into, '\0', nread);
389 if (unlikely (eos == NULL) || unlikely (eos == into))
392 free (into);
395 nread = eos + 1 - into;
    [all...]
dwfl_segment_report_module.c 95 /* Read SZ bytes into *RETP from *PTRP (limited by END) in format EI_DATA.
884 void *into = contents + offset; local
887 &into, &read_size, vaddr, size); local
893 So we'll be reading into a local image of the virtual file. */
  /external/glide/library/src/main/java/com/bumptech/glide/
BitmapRequestBuilder.java 39 * Warning - It is <em>not</em> safe to use this builder after calling <code>into()</code>, it may be pooled and
43 * @param <ModelType> The type of model that will be loaded into the target.
485 public Target<TranscodeType> into(ImageView view) { method in class:BitmapRequestBuilder
486 return super.into(view);
DrawableRequestBuilder.java 35 * Warning - It is <em>not</em> safe to use this builder after calling <code>into()</code>, it may be pooled and
39 * @param <ModelType> The type of model that will be loaded into the target.
435 public Target<GlideDrawable> into(ImageView view) { method in class:DrawableRequestBuilder
436 return super.into(view);
GenericRequestBuilder.java 229 * Sets the source encoder to use to encode the data retrieved by this request directly into cache. The returned
551 * This method must be called at least once before {@link #into(com.bumptech.glide.request.target.Target)} is
587 * Set the target the resource will be loaded into.
591 * @param target The target to load the resource into.
594 public <Y extends Target<TranscodeType>> Y into(Y target) { method in class:GenericRequestBuilder
620 * Sets the {@link ImageView} the resource will be loaded into, cancels any existing loads into the view, and frees
621 * any resources Glide may have previously loaded into the view so they may be reused.
625 * @param view The view to cancel previous loads for and load the new resource into.
628 public Target<TranscodeType> into(ImageView view) method in class:GenericRequestBuilder
667 public FutureTarget<TranscodeType> into(int width, int height) { method in class:GenericRequestBuilder
    [all...]
  /external/guava/guava/src/com/google/common/hash/
Funnels.java 46 public void funnel(byte[] from, PrimitiveSink into) {
47 into.putBytes(from);
69 public void funnel(CharSequence from, PrimitiveSink into) {
70 into.putUnencodedChars(from);
95 public void funnel(CharSequence from, PrimitiveSink into) {
96 into.putString(from, charset);
146 public void funnel(Integer from, PrimitiveSink into) {
147 into.putInt(from);
172 public void funnel(Iterable<? extends E> from, PrimitiveSink into) {
174 elementFunnel.funnel(e, into);
    [all...]
  /external/llvm/test/MC/X86/
x86-16.s 61 into label
62 // CHECK: into
x86-32.s 105 into label
106 // CHECK: into
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
TestData.java 59 default <A extends Collection<? super T>> A into(A target) { method in interface:TestData
299 public <A extends Collection<? super Integer>> A into(A target) { method in class:TestData.AbstractTestData.IntTestData
324 public <A extends Collection<? super Long>> A into(A target) { method in class:TestData.AbstractTestData.LongTestData
349 public <A extends Collection<? super Double>> A into(A target) { method in class:TestData.AbstractTestData.DoubleTestData
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
TestData.java 60 default <A extends Collection<? super T>> A into(A target) { method in interface:TestData
300 public <A extends Collection<? super Integer>> A into(A target) { method in class:TestData.AbstractTestData.IntTestData
325 public <A extends Collection<? super Long>> A into(A target) { method in class:TestData.AbstractTestData.LongTestData
350 public <A extends Collection<? super Double>> A into(A target) { method in class:TestData.AbstractTestData.DoubleTestData
  /external/vulkan-validation-layers/loader/
cJSON.c 95 /* Parse the input text to generate a number, and populate the result into item.
185 /* Render the number nicely from the given item into a string. */
265 /* Parse the input text into an unescaped cstring, and populate item. */
939 /* Collect all the results into our arrays: */
1329 char *into = json; local
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
StaggeredGridLayoutManagerTest.java 124 int[] into = new int[2]; local
125 mLayoutManager.findFirstCompletelyVisibleItemPositions(into);
126 assertEquals("first completely visible item from span 0 should be 0", 0, into[0]);
127 assertEquals("first completely visible item from span 1 should be 1", 1, into[1]);
128 mLayoutManager.findLastCompletelyVisibleItemPositions(into);
129 assertEquals("last completely visible item from span 0 should be 4", 4, into[0]);
130 assertEquals("last completely visible item from span 1 should be 1", 1, into[1]);
    [all...]
  /art/compiler/optimizing/
register_allocator_graph_color.cc 54 kFixedInput, // Prevents moves into a fixed input location.
378 // Initially set to `this`, and only changed if this node is coalesced into another.
492 // Return true if `into` is colored, and `from` can be coalesced with `into` conservatively.
493 bool PrecoloredHeuristic(InterferenceNode* from, InterferenceNode* into);
495 // Return true if `from` and `into` are uncolored, and can be coalesced conservatively.
496 bool UncoloredHeuristic(InterferenceNode* from, InterferenceNode* into);
500 // Merge `from` into `into` in the interference graph.
501 void Combine(InterferenceNode* from, InterferenceNode* into);
1698 InterferenceNode* into = opportunity->node_b->GetAlias(); local
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/
NativeDeviceTest.java 1310 final String into = "bootloader"; local
    [all...]
  /frameworks/support/samples/SupportLeanbackShowcase/libs/
picasso-2.5.2.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/picasso/picasso/2.5.2/
picasso-2.5.2.jar 

Completed in 2862 milliseconds

1 2 3 4 5 6 7 8 91011>>