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

1 2 3 4 5 6 7 8 91011>>

  /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/base/tools/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 48 // the same as the destination, the destination is ignored and
70 // Clear this move's destination to indicate a pending move. The actual
71 // destination is saved in a stack-allocated local. Recursion may allow
74 LOperand* destination = moves_[index].destination(); local
79 // as this one's destination blocks this one so recursively perform all
83 if (other_move.Blocks(destination) && !other_move.IsPending()) {
89 // not be swapped). Since this move's destination is B and there is
98 // pending, so restore its destination
129 LOperand* destination = moves_[i].destination(); local
143 LOperand* destination = moves_[index].destination(); local
239 LOperand* destination = moves_[index].destination(); local
    [all...]
  /external/v8/src/compiler/
gap-resolver.cc 17 inline bool Blocks(MoveOperands* move, InstructionOperand destination) {
18 return move->Blocks(destination);
47 // Clear this move's destination to indicate a pending move. The actual
48 // destination is saved on the side.
50 InstructionOperand destination = move->destination(); local
55 // destination blocks this one so recursively perform all such moves.
57 if (other->Blocks(destination) && !other->IsPending()) {
63 // Since this move's destination is B and there is only a single incoming
72 // restore its destination
    [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 20 static __inline__ void flipVertical(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){
30 memcpy(destination + temp - i, source + i, bytes_to_copy);
34 static __inline__ void flipHorizontal(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){
46 memcpy(destination + temp - j, source + i + j, cpy_bytes);
51 static __inline__ void flip_fun(int flip, char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){
58 flipVertical(temp, dstWidth, dstHeight, destination, dstWidth, dstHeight);
63 flipHorizontal(source, srcWidth, srcHeight, destination, dstWidth, dstHeight);
67 flipVertical(source, srcWidth, srcHeight, destination, dstWidth, dstHeight);
73 static __inline__ void rotate90(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){
84 memcpy(destination + column_disp + row_disp , source + j * srcWidth + i, cpy_bytes)
131 char* destination = 0; local
144 char* destination = 0; local
155 char* destination = 0; local
166 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];
48 destination[RED] = CLAMP(Rc);
49 destination[GREEN] = CLAMP(Gc);
50 destination[BLUE] = CLAMP(Bc);
exposure.c 21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
23 unsigned char * rgb = (unsigned char * )destination;
highlight.c 22 char* destination = 0; local
23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
24 unsigned char * rgb = (unsigned char * )destination;
  /external/skia/src/core/
SkImageGeneratorPriv.h 17 * the generator. If it succeeds, it will modify destination
23 * installed into destination is destroyed, it will call
27 * @param destination Upon success, this bitmap will be
37 SkBitmap* destination,
  /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
202 LOperand* destination = moves_[i].destination(); local
264 LOperand* destination = moves_[index].destination(); local
367 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::__anon21917
    [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/jetty/src/java/org/eclipse/jetty/client/
SocketConnector.java 50 public void startConnection(final HttpDestination destination) throws IOException
52 Socket socket= destination.isSecure()
53 ? destination.getSslContextFactory().newSslSocket()
59 Address address = destination.isProxied() ? destination.getProxy() : destination.getAddress();
65 connection.setDestination(destination);
66 destination.onNewConnection(connection);
92 destination.onException(e);
99 destination.returnConnection(connection,true)
    [all...]
  /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
201 LOperand* destination = moves_[i].destination(); local
263 LOperand* destination = moves_[index].destination(); local
362 LOperand* destination = moves_[index].destination(); local
    [all...]
  /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/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 517 milliseconds

1 2 3 4 5 6 7 8 91011>>