HomeSort by relevance Sort by last modified time
    Searched refs:source (Results 101 - 125 of 24255) sorted by null

1 2 3 45 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
getaa12b.d 0 #source: start.s
2 #source: a.s
3 #source: pad2p18m32.s
4 #source: pad16.s
5 #source: pad4.s
6 #source: pad4.s
7 #source: getaa.s
jumpa-3b.d 0 #source: start.s
2 #source: a.s
3 #source: pad2p26m32.s
4 #source: pad16.s
5 #source: pad4.s
6 #source: pad4.s
7 #source: jumpa.s
jumpa-4b.d 0 #source: start.s
2 #source: a.s
3 #source: pad2p26m32.s
4 #source: pad16.s
5 #source: pad4.s
6 #source: pad4.s
7 #source: jumpa.s
jumpa-9b.d 0 #source: start.s
2 #source: a.s
3 #source: pad2p26m32.s
4 #source: pad16.s
5 #source: pad4.s
6 #source: pad4.s
7 #source: jumpa.s
jumpa12b.d 0 #source: start.s
2 #source: a.s
3 #source: pad2p26m32.s
4 #source: pad16.s
5 #source: pad4.s
6 #source: pad4.s
7 #source: jumpa.s
pushjs1bm.d 0 #source: nop123.s
2 #source: nop123.s
3 #source: a.s
4 #source: pad2p18m32.s
5 #source: pad16.s
6 #source: pad4.s
7 #source: pad4.s
8 #source: pushja.s
9 #source: start.s
b-badm.d 0 #source: b-twoinsn.s
2 #source: b-post1.s
3 #source: b-badmain.s
b-widec2.d 0 #source: b-twoinsn.s
2 #source: b-post1.s
3 #source: b-widec2.s
b-widec3.d 0 #source: b-twoinsn.s
2 #source: b-post1.s
3 #source: b-widec3.s
  /external/libjpeg-turbo/
rdrle.c 86 rle_source_ptr source = (rle_source_ptr) sinfo; local
93 source->header = *rle_hdr_init(NULL);
94 source->header.rle_file = source->pub.input_file;
95 switch (rle_get_setup(&(source->header))) {
118 width = source->header.xmax - source->header.xmin + 1;
119 height = source->header.ymax - source->header.ymin + 1;
120 source->header.xmin = 0; /* realign horizontally *
192 rle_source_ptr source = (rle_source_ptr) sinfo; local
210 rle_source_ptr source = (rle_source_ptr) sinfo; local
246 rle_source_ptr source = (rle_source_ptr) sinfo; local
375 rle_source_ptr source; local
    [all...]
  /external/llvm/lib/Support/
ConvertUTF.c 5 * This file is distributed under the University of Illinois Open Source
14 * This source code is provided as is by Unicode, Inc. No claims are
33 Conversions between UTF32, UTF-16, and UTF-8. Source code file.
39 source sequences, enhanced error detection, added casts
122 const UTF32* source = *sourceStart; local
124 while (source < sourceEnd) {
129 ch = *source++;
134 --source; /* return to the illegal value itself */
152 --source; /* Back up source pointer! *
171 const UTF16* source = *sourceStart; local
225 const UTF16* source = *sourceStart; local
295 const UTF32* source = *sourceStart; local
519 const UTF8* source = *sourceStart; local
593 const UTF8* source = *sourceStart; local
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
ConvertUTF.cpp 5 * This file is distributed under the University of Illinois Open Source
14 * This source code is provided as is by Unicode, Inc. No claims are
33 Conversions between UTF32, UTF-16, and UTF-8. Source code file.
39 source sequences, enhanced error detection, added casts
122 const UTF32* source = *sourceStart; local
124 while (source < sourceEnd) {
129 ch = *source++;
134 --source; /* return to the illegal value itself */
152 --source; /* Back up source pointer! *
171 const UTF16* source = *sourceStart; local
225 const UTF16* source = *sourceStart; local
295 const UTF32* source = *sourceStart; local
519 const UTF8* source = *sourceStart; local
593 const UTF8* source = *sourceStart; local
    [all...]
  /system/chre/platform/linux/
platform_audio.cc 2 * Copyright (C) 2017 The Android Open Source Project
70 LOGI("TODO: File done, suspend the source");
90 auto& source = gAudioSources[handle]; local
91 source->numSamples = numSamples;
92 source->eventDelay = eventDelay;
93 return source->timer.set(audioSourceCallback, source.get(), eventDelay);
98 auto& source = gAudioSources[handle]; local
99 source->timer.cancel();
114 const auto& source = gAudioSources[handle] local
    [all...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
IBinderParcelable.java 2 * Copyright (C) 2009 The Android Open Source Project
25 public IBinderParcelable(IBinder source) {
26 binder = source;
40 public IBinderParcelable createFromParcel(Parcel source) {
41 return new IBinderParcelable(source);
49 private IBinderParcelable(Parcel source) {
50 binder = source.readStrongBinder();
  /external/eigen/unsupported/test/
cxx11_tensor_empty.cpp 6 // This Source Code Form is subject to the terms of the Mozilla
17 Tensor<float, 2> source; local
18 Tensor<float, 2> tgt1 = source;
19 Tensor<float, 2> tgt2(source);
27 TensorFixedSize<float, Sizes<0> > source; local
28 TensorFixedSize<float, Sizes<0> > tgt1 = source;
29 TensorFixedSize<float, Sizes<0> > tgt2(source);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
ConflictingRequirementsException.java 32 private Object source; field in class:ConflictingRequirementsException
35 String message, Set<Feature<?>> conflicts, Object source) {
38 this.source = source;
46 return source;
50 return super.getMessage() + " (source: " + source + ")";
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
RealResponseBody.java 25 private final BufferedSource source; field in class:RealResponseBody
27 public RealResponseBody(Headers headers, BufferedSource source) {
29 this.source = source;
41 @Override public BufferedSource source() { method in class:RealResponseBody
42 return source;
  /external/pdfium/fxbarcode/
BC_UtilCodingConvert.h 2 // Use of this source code is governed by a BSD-style license that can be
18 static void UnicodeToLocale(const WideString& source, ByteString& result);
19 static void LocaleToUtf8(const ByteString& source, ByteString& result);
20 static void LocaleToUtf8(const ByteString& source,
22 static void Utf8ToLocale(const std::vector<uint8_t>& source,
24 static void Utf8ToLocale(const uint8_t* source,
27 static void UnicodeToUTF8(const WideString& source, ByteString& result);
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-aarch64/
ifunc-14e.d 0 #source: ifunc-14a.s
2 #source: ifunc-14c.s
3 #source: ifunc-14b.s
ifunc-14f.d 0 #source: ifunc-14a.s
2 #source: ifunc-14b.s
3 #source: ifunc-14c.s
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-ifunc/
ifunc-14e-i386.d 0 #source: ifunc-14a.s
2 #source: ifunc-14c.s
3 #source: ifunc-14b.s
ifunc-14e-x86-64.d 0 #source: ifunc-14a.s
2 #source: ifunc-14c.s
3 #source: ifunc-14b.s
ifunc-14f-i386.d 0 #source: ifunc-14a.s
2 #source: ifunc-14b.s
3 #source: ifunc-14c.s
ifunc-14f-x86-64.d 0 #source: ifunc-14a.s
2 #source: ifunc-14b.s
3 #source: ifunc-14c.s
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
multi-got-hidden-1.d 3 #source: multi-got-1-1.s
4 #source: multi-got-1-2.s
5 #source: multi-got-hidden-1.s

Completed in 224 milliseconds

1 2 3 45 6 7 8 91011>>