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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/util/
Transition.java 26 public State destination; field in class:Transition
28 public Transition(State source, @StateMachine.Event int event, State destination) {
31 this.destination = destination;
  /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.27/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...]
  /frameworks/support/navigation/common/src/test/java/androidx/navigation/
NavDestinationTest.java 45 NavDestination destination = new NavDestination(mock(Navigator.class)); local
46 destination.setId(DESTINATION_ID);
50 destination.setParent(parent);
51 int[] deepLinkIds = destination.buildDeepLinkIds();
59 NavDestination destination = new NavDestination(mock(Navigator.class)); local
60 destination.putAction(ACTION_ID, DESTINATION_ID);
62 assertThat(destination.getAction(ACTION_ID), not(nullValue()));
63 assertThat(destination.getAction(ACTION_ID).getDestinationId(), is(DESTINATION_ID));
68 NavDestination destination = new NavDestination(mock(Navigator.class)); local
69 destination.putAction(INVALID_ACTION_ID, DESTINATION_ID)
74 NavDestination destination = new NavDestination(mock(Navigator.class)); local
83 NavDestination destination = new NavDestination(mock(Navigator.class)); local
    [all...]
NavGraphTest.java 57 NavDestination destination = new NavDestination(mock(Navigator.class)); local
58 destination.setId(FIRST_DESTINATION_ID);
59 return destination;
63 NavDestination destination = new NavDestination(mock(Navigator.class)); local
64 destination.setId(SECOND_DESTINATION_ID);
65 return destination;
68 private NavGraph createGraphWithDestination(NavDestination destination) {
70 graph.addDestination(destination);
83 NavDestination destination = new NavDestination(mock(Navigator.class)); local
84 graph.addDestination(destination);
89 NavDestination destination = createFirstDestination(); local
99 NavDestination destination = createFirstDestination(); local
111 NavDestination destination = createFirstDestination(); local
123 NavDestination destination = createFirstDestination(); local
137 NavDestination destination = createFirstDestination(); local
146 NavDestination destination = createFirstDestination(); local
159 NavDestination destination = createFirstDestination(); local
170 NavDestination destination = createFirstDestination(); local
184 NavDestination destination = createFirstDestination(); local
194 NavDestination destination = createFirstDestination(); local
206 NavDestination destination = createFirstDestination(); local
221 NavDestination destination = createFirstDestination(); local
233 NavDestination destination = createFirstDestination(); local
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/
format_port.h 47 inline void AppendFHelper(string* destination, const char* fmt,
49 tensorflow::strings::Appendf(destination, fmt, args...);
53 inline void AppendFHelper(string* destination, const char* fmt) {
54 tensorflow::strings::Appendf(destination, "%s", fmt);
58 // pointed to by destination. fmt follows C printf semantics.
61 inline void AppendF(string* destination, const char* fmt, Args&&... args) {
62 AppendFHelper(destination, fmt, IdentityOrConvertStringToRaw(args)...);
  /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);
  /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 EXPECT_EQ(0.0f, destination[0]);
44 EXPECT_EQ(1.0f, destination[1]);
45 EXPECT_EQ(2.0f, destination[2]);
46 EXPECT_EQ(3.0f, destination[3]);
53 AAudio_linearRamp(source, destination, 4, 1, levelFrom, levelTo);
54 EXPECT_EQ(4.0f, destination[0]);
55 EXPECT_EQ(5.0f, destination[1]);
56 EXPECT_EQ(6.0f, destination[2])
76 float destination[4] = {1.0f, 1.0f, 1.0f, 1.0f }; local
121 int16_t destination[count]; local
140 float destination[count]; local
159 int16_t destination[count]; local
    [all...]
  /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::__anon30942
    [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);
  /device/generic/goldfish/wifi/ipv6proxy/
socket.h 98 // Send a packet to a specific |destination| of any address type.
99 Result sendTo(const sockaddr& destination,
104 Result sendTo(const in6_addr& destination, const void* data, size_t size);
108 Result sendTo(const T& destination, const void* data, size_t size) {
109 return sendTo(*reinterpret_cast<const sockaddr*>(&destination),
110 sizeof(destination),
116 // |destination|. Rewriting the source in this manner usually requires root.
118 const sockaddr& destination,
123 const in6_addr& destination,
130 const T& destination,
    [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
199 LOperand* destination = moves_[i].destination(); local
260 LOperand* destination = moves_[index].destination(); local
359 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...]

Completed in 603 milliseconds

1 2 3 4 5 6 7 8 91011>>