HomeSort by relevance Sort by last modified time
    Searched refs:dest (Results 351 - 375 of 3401) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/android/content/pm/
ApplicationInfo.java 599 public void writeToParcel(Parcel dest, int parcelableFlags) {
600 super.writeToParcel(dest, parcelableFlags);
601 dest.writeString(taskAffinity);
602 dest.writeString(permission);
603 dest.writeString(processName);
604 dest.writeString(className);
605 dest.writeInt(theme);
606 dest.writeInt(flags);
607 dest.writeInt(requiresSmallestWidthDp);
608 dest.writeInt(compatibleWidthLimitDp)
    [all...]
UserInfo.java 131 public void writeToParcel(Parcel dest, int parcelableFlags) {
132 dest.writeInt(id);
133 dest.writeString(name);
134 dest.writeString(iconPath);
135 dest.writeInt(flags);
136 dest.writeInt(serialNumber);
137 dest.writeLong(creationTime);
138 dest.writeLong(lastLoggedInTime);
139 dest.writeInt(partial ? 1 : 0);
  /external/icu4c/common/
uts46.cpp 51 isASCIIString(const UnicodeString &dest) {
52 const UChar *s=dest.getBuffer();
53 const UChar *limit=s+dest.length();
73 IDNA::labelToASCII_UTF8(const StringPiece &label, ByteSink &dest,
78 info, errorCode).toUTF8(dest);
83 IDNA::labelToUnicodeUTF8(const StringPiece &label, ByteSink &dest,
88 info, errorCode).toUTF8(dest);
93 IDNA::nameToASCII_UTF8(const StringPiece &name, ByteSink &dest,
98 info, errorCode).toUTF8(dest);
103 IDNA::nameToUnicodeUTF8(const StringPiece &name, ByteSink &dest,
    [all...]
ustr_imp.h 118 * src and dest must not overlap.
122 UChar *dest, int32_t destCapacity,
131 UChar *dest, int32_t destCapacity,
138 UChar *dest, int32_t destCapacity,
147 UChar *dest, int32_t destCapacity,
156 UChar *dest, int32_t destCapacity,
166 UChar *dest, int32_t destCapacity,
176 * src and dest must not overlap.
180 uint8_t *dest, int32_t destCapacity,
187 uint8_t *dest, int32_t destCapacity
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
api_loopback.c     [all...]
  /external/mesa3d/src/mesa/main/
api_loopback.c     [all...]
  /hardware/qcom/display/msm8960/liboverlay/
overlay.h 65 void setSource(const utils::PipeArgs args, utils::eDest dest);
66 void setCrop(const utils::Dim& d, utils::eDest dest);
67 void setTransform(const int orientation, utils::eDest dest);
68 void setPosition(const utils::Dim& dim, utils::eDest dest);
69 void setVisualParams(const MetaData_t& data, utils::eDest dest);
70 bool commit(utils::eDest dest);
71 bool queueBuffer(int fd, uint32_t offset, utils::eDest dest);
122 static utils::eMdpPipeType getPipeType(utils::eDest dest);
123 static const char* getDestStr(utils::eDest dest);
223 inline utils::eMdpPipeType Overlay::PipeBook::getPipeType(utils::eDest dest) {
    [all...]
overlay.cpp 85 eDest dest = OV_INVALID; local
95 dest = (eDest)i;
102 if(dest != OV_INVALID) {
103 int index = (int)dest;
111 PipeBook::getDestStr(dest), dpy);
119 return dest;
122 bool Overlay::commit(utils::eDest dest) {
124 int index = (int)dest;
129 PipeBook::setUse((int)dest);
131 PipeBook::resetUse((int)dest);
    [all...]
  /hardware/qcom/display/msm8x26/liboverlay/
overlay.h 65 void setSource(const utils::PipeArgs args, utils::eDest dest);
66 void setCrop(const utils::Dim& d, utils::eDest dest);
67 void setTransform(const int orientation, utils::eDest dest);
68 void setPosition(const utils::Dim& dim, utils::eDest dest);
69 void setVisualParams(const MetaData_t& data, utils::eDest dest);
70 bool commit(utils::eDest dest);
71 bool queueBuffer(int fd, uint32_t offset, utils::eDest dest);
122 static utils::eMdpPipeType getPipeType(utils::eDest dest);
123 static const char* getDestStr(utils::eDest dest);
223 inline utils::eMdpPipeType Overlay::PipeBook::getPipeType(utils::eDest dest) {
    [all...]
  /external/chromium_org/media/base/
audio_buffer_queue.cc 45 AudioBus* dest) {
46 DCHECK_GE(dest->frames(), frames + dest_frame_offset);
47 return InternalRead(frames, true, 0, dest_frame_offset, dest);
53 AudioBus* dest) {
54 DCHECK_GE(dest->frames(), frames);
56 frames, false, source_frame_offset, dest_frame_offset, dest);
70 AudioBus* dest) {
100 // if |dest| is NULL, there's no need to copy.
101 if (dest) {
103 copied, current_buffer_offset, dest_frame_offset + taken, dest);
    [all...]
  /external/chromium_org/v8/test/cctest/
test-macro-assembler-mips.cc 111 for (byte* dest = dest_buffer; dest < dest_buffer + fuzz; dest++) {
113 CHECK(dest + size < dest_buffer + data_size);
115 reinterpret_cast<int>(dest), size, 0, 0);
118 CHECK_EQ(dest + size, a1_);
120 CHECK(all_zeroes(dest_buffer, dest));
121 CHECK(all_zeroes(dest + size, dest_buffer + data_size));
123 CHECK_EQ(0, memcmp(src, dest, size));
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_blend.c 125 const GLubyte (*dest)[4] = (const GLubyte (*)[4]) dst;
143 COPY_4UBV(rgba[i], dest[i]);
147 const GLint r = DIV255((rgba[i][RCOMP] - dest[i][RCOMP]) * t) + dest[i][RCOMP];
148 const GLint g = DIV255((rgba[i][GCOMP] - dest[i][GCOMP]) * t) + dest[i][GCOMP];
149 const GLint b = DIV255((rgba[i][BCOMP] - dest[i][BCOMP]) * t) + dest[i][BCOMP];
150 const GLint a = DIV255((rgba[i][ACOMP] - dest[i][ACOMP]) * t) + dest[i][ACOMP];
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_blend.c 125 const GLubyte (*dest)[4] = (const GLubyte (*)[4]) dst;
143 COPY_4UBV(rgba[i], dest[i]);
147 const GLint r = DIV255((rgba[i][RCOMP] - dest[i][RCOMP]) * t) + dest[i][RCOMP];
148 const GLint g = DIV255((rgba[i][GCOMP] - dest[i][GCOMP]) * t) + dest[i][GCOMP];
149 const GLint b = DIV255((rgba[i][BCOMP] - dest[i][BCOMP]) * t) + dest[i][BCOMP];
150 const GLint a = DIV255((rgba[i][ACOMP] - dest[i][ACOMP]) * t) + dest[i][ACOMP];
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
AnnotationTest.java 67 Parcel dest = Parcel.obtain(); local
70 mAnnotation.writeToParcel(dest, NOFLAG);
71 dest.setDataPosition(0);
72 Annotation out = new Annotation(dest);
78 dest.recycle();
  /external/chromium/chrome/browser/resources/file_manager/bin/
squashdir.py 13 print("""Usage: squashdir.py <dest-dir> <source-dir> ...
33 def scan_path(dest, src, path):
40 newname = os.path.join(dest, path.replace('/', '^^'))
45 scan_path(dest, src, child_path[len(src) + 1:])
52 dest = sys.argv[1] variable
57 scan_path(dest, abs_src, path)
  /external/chromium/crypto/
rsa_private_key_win.cc 68 uint8* dest = blob.get(); local
69 PUBLICKEYSTRUC* public_key_struc = reinterpret_cast<PUBLICKEYSTRUC*>(dest);
74 dest += sizeof(PUBLICKEYSTRUC);
76 RSAPUBKEY* rsa_pub_key = reinterpret_cast<RSAPUBKEY*>(dest);
85 dest += sizeof(RSAPUBKEY);
87 memcpy(dest, &pki.modulus()->front(), pki.modulus()->size());
88 dest += pki.modulus()->size();
89 memcpy(dest, &pki.prime1()->front(), pki.prime1()->size());
90 dest += pki.prime1()->size();
91 memcpy(dest, &pki.prime2()->front(), pki.prime2()->size())
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
nacl-mono-archive.py 18 dest='install_dir',
22 dest='tar_path',
26 dest='upload_path',
30 dest='pepper_revision',
35 dest='skip_upload')
  /external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
shim_ppapi.c 168 struct nacl_irt_ppapihook *dest = table; local
169 if (sizeof *dest <= tablesize) {
170 dest->ppapi_start = wrap_ppapi_start;
171 dest->ppapi_register_thread_creator =
173 return sizeof *dest;
  /external/oprofile/libabi/tests/
abi_test.cpp 60 odb_t dest; local
61 int rc = odb_open(&dest, db_filename.c_str(), ODB_RDWR,
71 header = static_cast<struct opd_header *>(odb_get_data(&dest));
88 int rc = odb_add_node(&dest, i, i);
94 odb_close(&dest);
  /external/pixman/test/
radial-perf-test.c 22 pixman_image_t *dest, *radial, *zero; local
26 dest = pixman_image_create_bits (
42 PIXMAN_OP_SRC, zero, NULL, dest,
48 PIXMAN_OP_OVER, radial, NULL, dest,
54 write_png (dest, "radial.png");
  /external/skia/tools/
test_pictures.py 53 setattr(parser.values, option.dest, result)
62 parser.add_option('--render_dir', dest='render_dir',
65 parser.add_option('--diff_dir', dest='diff_dir',
68 parser.add_option('--mode', dest='mode', type='string',
71 parser.add_option('--device', dest='device',
  /frameworks/base/core/java/android/content/
ContentProviderResult.java 53 public void writeToParcel(Parcel dest, int flags) {
55 dest.writeInt(1);
56 dest.writeInt(count);
58 dest.writeInt(2);
59 uri.writeToParcel(dest, 0);
  /frameworks/base/core/java/android/nfc/
BeamShareData.java 31 public void writeToParcel(Parcel dest, int flags) {
33 dest.writeParcelable(ndefMessage, 0);
34 dest.writeInt(urisLength);
36 dest.writeTypedArray(uris, 0);
38 dest.writeInt(this.flags);
  /frameworks/base/core/java/android/view/inputmethod/
CompletionInfo.java 143 * @param dest The {@link Parcel} to be written.
146 public void writeToParcel(Parcel dest, int flags) {
147 dest.writeLong(mId);
148 dest.writeInt(mPosition);
149 TextUtils.writeToParcel(mText, dest, flags);
150 TextUtils.writeToParcel(mLabel, dest, flags);
  /external/qemu/target-arm/
neon_helper.c 71 #define NEON_UNPACK(vtype, dest, val) do { \
77 dest = conv_u.v; \
81 #define NEON_PACK(vtype, dest, val) do { \
87 dest = conv_u.i; \
157 #define NEON_USAT(dest, src1, src2, type) do { \
161 dest = ~0; \
163 dest = tmp; \
165 #define NEON_FN(dest, src1, src2) NEON_USAT(dest, src1, src2, uint8_t)
168 #define NEON_FN(dest, src1, src2) NEON_USAT(dest, src1, src2, uint16_t
327 int32_t dest; local
337 uint32_t dest; local
354 int32_t dest; local
364 uint32_t dest; local
381 int32_t dest; local
391 uint32_t dest; local
534 int32_t dest; local
594 uint32_t dest; local
821 uint32_t dest; local
918 int32_t dest; local
    [all...]

Completed in 2578 milliseconds

<<11121314151617181920>>