HomeSort by relevance Sort by last modified time
    Searched defs:dst (Results 951 - 975 of 1474) sorted by null

<<31323334353637383940>>

  /external/tcpdump/
print-802_11.c 918 const u_int8_t *src, *dst; local
936 ieee_802_11_hdr_print(fc, p, &src, &dst);
968 } else if (llc_print(p, length, caplen, dst, src,
print-udp.c 294 u_int32_t dst; member in struct:phu::phdr
309 memcpy(&phu.ph.dst, &ip->ip_dst.s_addr, sizeof(u_int32_t));
311 phu.ph.dst = ip_finddst(ip);
  /external/valgrind/main/coregrind/
m_machine.c 154 /*DST*/UChar* dst,
173 VG_(memcpy)( dst, src, size);
178 /*DST*/Int shadowNo, PtrdiffT offset, SizeT size,
181 void* dst; local
190 dst = NULL;
192 case 0: dst = (void*)(((Addr)&(tst->arch.vex)) + offset); break;
193 case 1: dst = (void*)(((Addr)&(tst->arch.vex_shadow1)) + offset); break;
194 case 2: dst = (void*)(((Addr)&(tst->arch.vex_shadow2)) + offset); break;
196 tl_assert(dst != NULL)
    [all...]
pub_core_threadstate.h 199 Addr dst; member in struct:__anon27999::__anon28000::__anon28007
  /external/valgrind/main/lackey/
lk_main.c 614 Addr iaddr = 0, dst; local
848 dst = (sizeof(Addr) == 4) ? st->Ist.Exit.dst->Ico.U32 :
849 st->Ist.Exit.dst->Ico.U64;
850 condition_inverted = (dst == iaddr + ilen);
    [all...]
  /external/webp/src/dec/
frame.c 550 static WEBP_INLINE void Copy32b(uint8_t* dst, uint8_t* src) {
551 *(uint32_t*)dst = *(uint32_t*)src;
620 uint8_t* const dst = y_dst + kScan[n]; local
621 VP8PredLuma4[dec->imodes_[n]](dst);
623 VP8Transform(coeffs + n * 16, dst, 0);
625 VP8TransformDC(coeffs + n * 16, dst);
633 uint8_t* const dst = y_dst + kScan[n]; local
635 VP8Transform(coeffs + n * 16, dst, 0);
637 VP8TransformDC(coeffs + n * 16, dst);
io.c 53 uint8_t* dst = buf->rgba + io->mb_y * buf->stride; local
63 dst, dst + buf->stride, mb_w);
67 dst += 2 * buf->stride;
70 sample(y_src, y_src, u_src, v_src, dst, dst, mb_w);
82 uint8_t* dst = buf->rgba + io->mb_y * buf->stride;
91 convert(y_src, u_src, v_src, dst, mb_w);
95 dst += buf->stride;
108 uint8_t* dst = buf->rgba + io->mb_y * buf->stride local
170 uint8_t* dst = buf->a + io->mb_y * buf->a_stride; local
226 uint8_t* dst = base_rgba + (alpha_first ? 0 : 3); local
365 uint8_t* dst = buf->rgba + (p->last_y + y_pos) * buf->stride; local
414 uint8_t* dst = base_rgba + (alpha_first ? 0 : 3); local
    [all...]
vp8.c 557 int16_t* dst = dec->coeffs_; local
566 memset(dst, 0, 384 * sizeof(*dst));
575 VP8TransformWHT(dc, dst);
588 q->y1_mat_, first, dst);
590 nz_dc.i8[x] = (dst[0] != 0);
592 dst += 16;
610 ctx, q->uv_mat_, 0, dst);
612 nz_dc.i8[y * 2 + x] = (dst[0] != 0);
614 dst += 16
    [all...]
  /external/wpa_supplicant_8/hostapd/
ctrl_iface.c 56 struct wpa_ctrl_dst *dst; local
58 dst = os_zalloc(sizeof(*dst));
59 if (dst == NULL)
61 os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un));
62 dst->addrlen = fromlen;
63 dst->debug_level = MSG_INFO;
64 dst->next = hapd->ctrl_dst;
65 hapd->ctrl_dst = dst;
77 struct wpa_ctrl_dst *dst, *prev = NULL local
108 struct wpa_ctrl_dst *dst; local
1312 struct wpa_ctrl_dst *dst, *prev; local
1579 struct wpa_ctrl_dst *dst, *next; local
    [all...]
  /frameworks/base/core/jni/android/graphics/
Bitmap.cpp 30 typedef void (*FromColorProc)(void* dst, const SkColor src[], int width,
33 static void FromColor_D32(void* dst, const SkColor src[], int width,
35 SkPMColor* d = (SkPMColor*)dst;
42 static void FromColor_D32_Raw(void* dst, const SkColor src[], int width,
46 memcpy(dst, src, width * sizeof(SkColor));
51 SkPMColor* d = (SkPMColor*)dst;
59 static void FromColor_D565(void* dst, const SkColor src[], int width,
61 uint16_t* d = (uint16_t*)dst;
71 static void FromColor_D4444(void* dst, const SkColor src[], int width,
73 SkPMColor16* d = (SkPMColor16*)dst;
118 void* dst = dstBitmap.getPixels(); local
591 SkBitmap* dst = new SkBitmap; local
628 SkColor dst[1]; local
648 jint* dst = env->GetIntArrayElements(pixelArray, NULL); local
699 void* dst = bitmap->getPixels(); local
    [all...]
  /frameworks/base/core/jni/
android_media_AudioTrack.cpp 538 int16_t *dst = (int16_t *)track->sharedBuffer()->pointer(); local
541 *dst++ = (int16_t)(*src++^0x80) << 8;
    [all...]
  /frameworks/base/libs/hwui/
FontRenderer.cpp 343 uint8_t* dst = &cacheBuffer[cacheTexture->getOffset(startX, startY - 1)]; local
345 uint8_t* dstL = dst - borderSize;
346 uint8_t* dstR = dst + rowSize;
350 while (dst < dstEnd) {
352 memcpy(dst += dstStride, src += srcStride, rowSize); // glyph data
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 392 Rect dst = new Rect( local
397 c.drawBitmap(source, src, dst, null);
  /frameworks/base/media/jni/
android_media_MediaExtractor.cpp 199 void *dst = env->GetDirectBufferAddress(byteBuf); local
204 if (dst == NULL) {
220 dst = env->GetByteArrayElements(byteArray, &isCopy);
229 env->ReleaseByteArrayElements(byteArray, (jbyte *)dst, 0);
235 sp<ABuffer> buffer = new ABuffer((char *)dst + offset, dstSize - offset);
240 env->ReleaseByteArrayElements(byteArray, (jbyte *)dst, 0);
567 jint *dst = env->GetIntArrayElements(numBytesOfEncryptedDataObj, &isCopy); local
569 dst[i] = ((const size_t *)data)[i];
571 env->ReleaseIntArrayElements(numBytesOfEncryptedDataObj, dst, 0);
572 dst = NULL
584 jint *dst = env->GetIntArrayElements(numBytesOfPlainDataObj, &isCopy); local
601 jbyte *dst = env->GetByteArrayElements(keyObj, &isCopy); local
616 jbyte *dst = env->GetByteArrayElements(ivObj, &isCopy); local
    [all...]
  /frameworks/native/cmds/installd/
utils.c 41 char *dst = path; local
44 if (append_and_increment(&dst, dir->path, &dst_size) < 0
45 || append_and_increment(&dst, pkgname, &dst_size) < 0
46 || append_and_increment(&dst, postfix, &dst_size) < 0) {
77 char *dst = prefix; local
80 if (append_and_increment(&dst, android_data_dir.path, &dst_size) < 0
81 || append_and_increment(&dst, userid_prefix, &dst_size) < 0) {
87 int ret = snprintf(dst, dst_size, "%d/", userid);
118 char *dst = path; local
121 if (append_and_increment(&dst, android_data_dir.path, &dst_size) <
863 char *dst; local
    [all...]
  /frameworks/rs/driver/
rsdAllocation.cpp 642 void *dst = NULL; local
645 bounds, &dst);
646 alloc->mHal.drvState.lod[0].mallocPtr = dst;
811 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face); local
812 if (dst == src) {
822 alloc->decRefs(dst, w);
824 memcpy(dst, src, lineSize);
826 dst += alloc->mHal.drvState.lod[lod].stride;
841 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face); local
844 memcpy(dst, src, clineSize)
874 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, z, lod, local
919 uint8_t *dst = static_cast<uint8_t *>(data); local
949 uint8_t *dst = static_cast<uint8_t *>(data); local
    [all...]
  /frameworks/rs/
rsAllocation.cpp 264 uint8_t *dst, const uint8_t *src, bool dstPadded) {
277 memcpy(dst, src, unpaddedBytes);
279 dst += dstInc;
301 memcpy(dst + dstOffsets[fI], src + srcOffsets[fI], sizeUnpadded[fI]);
304 dst += dstInc;
314 uint8_t *dst = (uint8_t *)rsc->mHal.funcs.allocation.lock1D(rsc, this); local
316 writePackedData(rsc, getType(), dst, src, true);
326 uint8_t *dst = new uint8_t[numItems * unpaddedBytes]; local
328 writePackedData(rsc, getType(), dst, src, false);
329 stream->addByteArray(dst, getPackedSize())
673 Allocation *dst = static_cast<Allocation *>(dstAlloc); local
690 Allocation *dst = static_cast<Allocation *>(dstAlloc); local
    [all...]
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_mdpcomp.cpp 279 hwc_rect_t dst = layer->displayFrame; local
281 if(dst.left < 0 || dst.top < 0 || dst.right > hw_w || dst.bottom > hw_h) {
283 qhwc::calculate_crop_rects(crop, dst, scissor, layer->transform);
288 int dst_w = dst.right - dst.left;
289 int dst_h = dst.bottom - dst.top
960 hwc_rect_t dst = layer->displayFrame; local
978 hwc_rect_t dst = layer->displayFrame; local
    [all...]
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_copybit.cpp 356 // Copybit dst
357 copybit_image_t dst; local
358 dst.w = ALIGN(fbHandle->width,32);
359 dst.h = fbHandle->height;
360 dst.format = fbHandle->format;
361 dst.base = (void *)fbHandle->base;
362 dst.handle = (native_handle_t *)fbHandle;
371 // Copybit dst
505 (dst.format == HAL_PIXEL_FORMAT_RGB_565)?
513 err = copybit->stretch(copybit, &dst, &src, &dstRect, &srcRect
    [all...]
hwc_mdpcomp.cpp 271 hwc_rect_t dst = layer->displayFrame; local
273 if(dst.left < 0 || dst.top < 0 || dst.right > hw_w || dst.bottom > hw_h) {
275 qhwc::calculate_crop_rects(crop, dst, scissor, layer->transform);
280 int dst_w = dst.right - dst.left;
281 int dst_h = dst.bottom - dst.top
1113 hwc_rect_t dst = layer->displayFrame; local
1152 hwc_rect_t dst = layer->displayFrame; local
    [all...]
  /hardware/qcom/display/msm8x26/libhwcomposer/
hwc_mdpcomp.cpp 274 hwc_rect_t dst = layer->displayFrame; local
276 if(dst.left < 0 || dst.top < 0 || dst.right > hw_w || dst.bottom > hw_h) {
278 qhwc::calculate_crop_rects(crop, dst, scissor, layer->transform);
283 int dst_w = dst.right - dst.left;
284 int dst_h = dst.bottom - dst.top
949 hwc_rect_t dst = layer->displayFrame; local
967 hwc_rect_t dst = layer->displayFrame; local
    [all...]
  /libcore/luni/src/main/java/java/nio/
SocketChannelImpl.java 283 public int read(ByteBuffer dst) throws IOException {
284 dst.checkWritable();
286 if (!dst.hasRemaining()) {
289 return readImpl(dst);
320 private int readImpl(ByteBuffer dst) throws IOException {
327 readCount = IoBridge.recvfrom(true, fd, dst, 0, null, false);
329 dst.position(dst.position() + readCount);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ShortcutIntentBuilder.java 326 private void drawBorder(Canvas canvas, Rect dst) {
334 canvas.drawRect(dst, workPaint);
347 Rect dst = new Rect(0,0, mIconSize, mIconSize); local
348 photo.setBounds(dst);
351 drawBorder(canvas, dst);
357 overlay.setBounds(dst);
384 Rect dst = new Rect(0, 0, mIconSize, mIconSize); local
386 photo.setBounds(dst);
389 drawBorder(canvas, dst);
409 dst.set(0 + mBorderWidth, mIconSize - textBandHeight, mIconSize - mBorderWidth
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
Util.java 178 Rect dst = new Rect( local
183 c.drawBitmap(source, src, dst, null);
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
XmlDictInputOutput.java 185 String dst = attrs.getValue(uri, DST_ATTRIBUTE); local
187 WeightedString bigram = new WeightedString(dst, freq / XML_TO_MEMORY_RATIO);

Completed in 3245 milliseconds

<<31323334353637383940>>