HomeSort by relevance Sort by last modified time
    Searched refs:destination (Results 1 - 25 of 1872) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libaaudio/tests/
test_linear_ramp.cpp 28 float destination[4] = {1.0f, 1.0f, 1.0f, 1.0f }; local
42 AAudio_linearRamp(source, destination, 4, 1, levelFrom, levelTo);
43 ASSERT_EQ(0.0f, destination[0]);
44 ASSERT_EQ(1.0f, destination[1]);
45 ASSERT_EQ(2.0f, destination[2]);
46 ASSERT_EQ(3.0f, destination[3]);
53 AAudio_linearRamp(source, destination, 4, 1, levelFrom, levelTo);
54 ASSERT_EQ(4.0f, destination[0]);
55 ASSERT_EQ(5.0f, destination[1]);
56 ASSERT_EQ(6.0f, destination[2])
76 float destination[4] = {1.0f, 1.0f, 1.0f, 1.0f }; local
    [all...]
  /device/google/contexthub/util/nanotool/
nanopacket_impl.h 24 bool NanoPacket::DeserializeWord(T *destination, uint8_t byte) {
25 *destination |= byte << (8 * parsing_progress_);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
jalr.l 3 .*:2: Error: a destination register must be supplied.*
4 .*:3: Error: source and destination must be different.*
6 .*:11: Error: a destination register must be supplied.*
7 .*:12: Error: source and destination must be different.*
  /external/google-breakpad/src/common/windows/
string_utils-inl.h 73 // not fail if source is longer than destination_size. The destination
75 static void safe_wcscpy(wchar_t *destination, size_t destination_size,
80 // are longer than destination_size. The destination buffer is always
82 static void safe_wcsncpy(wchar_t *destination, size_t destination_size,
105 inline void WindowsStringUtils::safe_wcscpy(wchar_t *destination,
109 wcscpy_s(destination, destination_size, source);
112 // wcsncpy doesn't 0-terminate the destination buffer if the source string
113 // is longer than size. Ensure that the destination is 0-terminated.
114 wcsncpy(destination, source, destination_size);
115 if (destination && destination_size
    [all...]
  /frameworks/layoutlib/bridge/
update_nav_icons.sh 40 destination="$BARS/v$CURRENT_API/$density/"
41 mkdir -p "$destination" # create if not present.
42 cp -v "$FB/packages/SystemUI/res/drawable-$density/$icon" "$destination"
47 destination="$BARS/v$CURRENT_API/ldrtl-$density/"
48 mkdir -p "$destination"
49 cp -v "$FB/packages/SystemUI/res/drawable-ldrtl-$density/$icon" "$destination"
  /external/webrtc/webrtc/common_audio/resampler/
push_sinc_resampler.cc 36 int16_t* destination,
44 FloatS16ToS16(float_buffer_.get(), destination_frames_, destination);
51 float* destination,
74 resampler_->Resample(resampler_->ChunkSize(), destination);
76 resampler_->Resample(destination_frames_, destination);
81 void PushSincResampler::Run(size_t frames, float* destination) {
89 std::memset(destination, 0, frames * sizeof(*destination));
95 std::memcpy(destination, source_ptr_, frames * sizeof(*destination));
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-gap-resolver-x64.cc 49 // the same as the destination, the destination is ignored and
71 // Clear this move's destination to indicate a pending move. The actual
72 // destination is saved in a stack-allocated local. Recursion may allow
75 LOperand* destination = moves_[index].destination(); local
80 // as this one's destination blocks this one so recursively perform all
84 if (other_move.Blocks(destination) && !other_move.IsPending()) {
90 // not be swapped). Since this move's destination is B and there is
99 // pending, so restore its destination
130 LOperand* destination = moves_[i].destination(); local
144 LOperand* destination = moves_[index].destination(); local
240 LOperand* destination = moves_[index].destination(); local
    [all...]
  /packages/apps/Gallery2/jni/filters/
negative.c 21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
26 char * dst = destination;
redeye.c 22 char* destination = 0; local
23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
24 unsigned char * rgb = (unsigned char * )destination;
geometry.c 22 static __inline__ void flipVertical(char * source, int srcWidth, int srcHeight, char * destination,
33 memcpy(destination + temp - i, source + i, bytes_to_copy);
38 char * destination, int dstWidth __unused, int dstHeight __unused) {
50 memcpy(destination + temp - j, source + i + j, cpy_bytes);
55 static __inline__ void flip_fun(int flip, char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){
62 flipVertical(temp, dstWidth, dstHeight, destination, dstWidth, dstHeight);
67 flipHorizontal(source, srcWidth, srcHeight, destination, dstWidth, dstHeight);
71 flipVertical(source, srcWidth, srcHeight, destination, dstWidth, dstHeight);
77 static __inline__ void rotate90(char * source, int srcWidth, int srcHeight, char * destination,
86 memcpy(destination + column_disp + row_disp , source + j * srcWidth + i, cpy_bytes)
132 char* destination = 0; local
145 char* destination = 0; local
155 char* destination = 0; local
167 char* destination = 0; local
    [all...]
gradient.c 22 char* destination = 0; local
33 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
40 int r = destination[RED];
42 destination[RED] = r;
46 int g = destination[GREEN];
48 destination[GREEN] = g;
52 int b = destination[BLUE];
54 destination[BLUE] = b;
saturated.c 21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
36 int r = destination[RED];
37 int g = destination[GREEN];
38 int b = destination[BLUE];
47 destination[RED] = CLAMP(Rc);
48 destination[GREEN] = CLAMP(Gc);
49 destination[BLUE] = CLAMP(Bc);
  /external/v8/src/crankshaft/x87/
lithium-gap-resolver-x87.cc 54 // the same as the destination, the destination is ignored and
76 // Clear this move's destination to indicate a pending move. The actual
77 // destination is saved on the side.
79 LOperand* destination = moves_[index].destination(); local
84 // as this one's destination blocks this one so recursively perform all
88 if (other_move.Blocks(destination) && !other_move.IsPending()) {
94 // not be swapped). Since this move's destination is B and there is
103 // pending, so restore its destination
134 LOperand* destination = move.destination(); local
148 LOperand* destination = moves_[index].destination(); local
200 LOperand* destination = moves_[i].destination(); local
261 LOperand* destination = moves_[index].destination(); local
364 LOperand* destination = moves_[index].destination(); local
    [all...]
  /external/parameter-framework/upstream/utility/
BinaryCopy.hpp 45 * The source and the destination must have the same storage size (e.g. copying
49 * @tparam Destination the destination type (even if it is a reference, this
52 * @returns the source, reinterpreted as the destination type
54 template <class Destination, class Source>
55 typename std::remove_reference<Destination>::type binaryCopy(const Source source)
57 static_assert(sizeof(Source) == sizeof(Destination),
58 "Source and Destination must have the same size");
60 using Destination_ = decltype(binaryCopy<Destination>(source));
65 Destination_ destination; member in union:utility::__anon29028
    [all...]
  /external/vogar/src/vogar/
HostFileCache.java 35 private void cp(File source, File destination) {
36 List<String> rawResult = new Command.Builder(log).args("cp", source, destination).execute();
39 throw new RuntimeException("Couldn't copy " + source + " to " + destination
44 private void mv(File source, File destination) {
45 List<String> rawResult = new Command.Builder(log).args("mv", source, destination).execute();
48 throw new RuntimeException("Couldn't move " + source + " to " + destination
53 public void copyFromCache(String key, File destination) {
55 cp(cachedFile, destination);
  /external/v8/src/crankshaft/mips64/
lithium-gap-resolver-mips64.cc 54 // the same as the destination, the destination is ignored and
75 // its destination. All other moves from the spilled source have been
83 // Clear this move's destination to indicate a pending move. The actual
84 // destination is saved in a stack allocated local. Multiple moves can
87 LOperand* destination = moves_[index].destination(); local
92 // as this one's destination blocks this one so recursively perform all
96 if (other_move.Blocks(destination) && !other_move.IsPending()) {
105 // pending, so restore its destination
127 LOperand* destination = moves_[i].destination(); local
188 LOperand* destination = moves_[index].destination(); local
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-gap-resolver-ia32.cc 53 // the same as the destination, the destination is ignored and
75 // Clear this move's destination to indicate a pending move. The actual
76 // destination is saved on the side.
78 LOperand* destination = moves_[index].destination(); local
83 // as this one's destination blocks this one so recursively perform all
87 if (other_move.Blocks(destination) && !other_move.IsPending()) {
93 // not be swapped). Since this move's destination is B and there is
102 // pending, so restore its destination
133 LOperand* destination = move.destination(); local
147 LOperand* destination = moves_[index].destination(); local
199 LOperand* destination = moves_[i].destination(); local
260 LOperand* destination = moves_[index].destination(); local
359 LOperand* destination = moves_[index].destination(); local
    [all...]
  /external/libmojo/mojo/common/
data_pipe_file_utils.cc 20 ScopedDataPipeProducerHandle destination,
33 BeginWriteDataRaw(destination.get(), &buffer, &buffer_num_bytes,
39 EndWriteDataRaw(destination.get(), bytes_read);
46 EndWriteDataRaw(destination.get(), 0);
50 result = Wait(destination.get(), MOJO_HANDLE_SIGNAL_WRITABLE,
70 ScopedDataPipeProducerHandle destination,
76 base::Passed(&destination), skip),
  /external/r8/buildSrc/src/main/java/dx/
DexMerger.java 19 private File destination; field in class:DexMerger
33 return destination;
36 public void setDestination(File destination) {
37 this.destination = destination;
38 getOutputs().file(destination);
59 execSpec.args(destination.getCanonicalPath());
  /external/r8/buildSrc/src/main/java/smali/
Smali.java 18 private File destination; field in class:Smali
31 return destination;
34 public void setDestination(File destination) {
35 this.destination = destination;
36 getOutputs().file(destination);
53 options.outputDexFile = destination.getCanonicalPath().toString();
  /external/v8/src/crankshaft/arm64/
lithium-gap-resolver-arm64.cc 71 // the same as the destination, the destination is ignored and
92 // Clear this move's destination to indicate a pending move. The actual
93 // destination is saved in a stack allocated local. Multiple moves can
96 LOperand* destination = current_move.destination(); local
101 // as this one's destination blocks this one so recursively perform all
105 if (other_move.Blocks(destination) && !other_move.IsPending()) {
114 // pending, so restore its destination.
115 current_move.set_destination(destination);
136 LOperand* destination = moves_[i].destination(); local
203 LOperand* destination = moves_[index].destination(); local
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-gap-resolver-mips.cc 54 // the same as the destination, the destination is ignored and
75 // its destination. All other moves from the spilled source have been
83 // Clear this move's destination to indicate a pending move. The actual
84 // destination is saved in a stack allocated local. Multiple moves can
87 LOperand* destination = moves_[index].destination(); local
92 // as this one's destination blocks this one so recursively perform all
96 if (other_move.Blocks(destination) && !other_move.IsPending()) {
105 // pending, so restore its destination
127 LOperand* destination = moves_[i].destination(); local
188 LOperand* destination = moves_[index].destination(); local
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-gap-resolver-ppc.cc 56 // the same as the destination, the destination is ignored and
77 // its destination. All other moves from the spilled source have been
85 // Clear this move's destination to indicate a pending move. The actual
86 // destination is saved in a stack allocated local. Multiple moves can
89 LOperand* destination = moves_[index].destination(); local
94 // as this one's destination blocks this one so recursively perform all
98 if (other_move.Blocks(destination) && !other_move.IsPending()) {
107 // pending, so restore its destination
129 LOperand* destination = moves_[i].destination(); local
188 LOperand* destination = moves_[index].destination(); local
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-gap-resolver-s390.cc 54 // the same as the destination, the destination is ignored and
74 // its destination. All other moves from the spilled source have been
82 // Clear this move's destination to indicate a pending move. The actual
83 // destination is saved in a stack allocated local. Multiple moves can
86 LOperand* destination = moves_[index].destination(); local
91 // as this one's destination blocks this one so recursively perform all
95 if (other_move.Blocks(destination) && !other_move.IsPending()) {
104 // pending, so restore its destination
125 LOperand* destination = moves_[i].destination(); local
182 LOperand* destination = moves_[index].destination(); local
    [all...]
  /external/llvm/test/MC/ARM/
thumb2-ldrd.s 11 @ CHECK: error: destination operands can't be identical
12 @ CHECK: error: destination operands can't be identical
13 @ CHECK: error: destination operands can't be identical
14 @ CHECK: error: destination operands can't be identical
15 @ CHECK-NOT: error: destination operands can't be identical

Completed in 777 milliseconds

1 2 3 4 5 6 7 8 91011>>