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

<<21222324252627282930>>

  /external/skia/tests/
RoundRectTest.cpp 362 SkRRect dst; local
363 dst.setEmpty();
365 const SkRRect copyOfDst = dst;
367 bool success = orig.transform(matrix, &dst);
370 // Since the transform failed, dst should be unchanged.
371 REPORTER_ASSERT(reporter, copyOfDst == dst);
374 REPORTER_ASSERT(reporter, orig != dst);
382 const SkVector& dstUL = dst.radii(SkRRect::kUpperLeft_Corner); \
383 const SkVector& dstUR = dst.radii(SkRRect::kUpperRight_Corner); \
384 const SkVector& dstLR = dst.radii(SkRRect::kLowerRight_Corner);
389 SkRRect dst; local
    [all...]
  /external/srec/srec/Vocabulary/src/
VocabularyImpl.c 331 LCHAR *dst, *max_dst; local
340 for(src=word_prons,dst=phrase_prons; src && *src; ) {
341 for( ; *src && dst<max_dst; ) {
342 *dst++ = *src++;
344 *dst++ = *src++; // copy the null
346 *dst = 0; // add a double-null
347 *len = dst-phrase_prons;
351 for(dst=phrase_prons; *dst; ) dst++
    [all...]
  /external/srec/tools/parseStringTest/
parseStringTest.c 69 char *src=trans, *dst=trans; local
70 for( ;(*dst = *src)!=L('\0'); src++) {
71 if(*dst != ' ') dst++;
72 else if(src[1] != ' ') dst++;
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
CommandLine.java 80 String dst; local
83 dst = src + ".xhtml";
85 dst = src + "_";
87 dst = src.substring(0, j) + ".xhtml";
88 System.err.println("src: " + src + " dst: " + dst);
89 OutputStream os = new FileOutputStream(dst);
  /external/tcpdump/
print-dccp.c 69 u_int32_t dst; member in struct:phu::phdr
84 memcpy(&phu.ph.dst, &ip->ip_dst.s_addr, sizeof(u_int32_t));
86 phu.ph.dst = ip_finddst(ip);
print-decnet.c 72 int dst, src, hops; local
134 dst =
144 dst = EXTRACT_LE_16BITS(rhp->rh_short.sh_dst);
157 dnaddr_string(src), dnaddr_string(dst), pktlen);
183 int src, dst, info, blksize, eco, ueco, hello, other, vers; local
288 dst = EXTRACT_LE_16BITS(rtea.dne_remote.dne_nodeaddr);
295 blksize, dnaddr_string(dst), hello, other);
416 int dst, src, flags; local
422 dst = EXTRACT_LE_16BITS(nsphp->nh_dst);
432 printf("data %d>%d ", src, dst);
    [all...]
util.c 439 char *src, *dst; local
453 dst = buf;
455 while ((*dst++ = *src++) != '\0')
457 dst[-1] = ' ';
459 dst[-1] = '\0';
  /external/v8/src/ia32/
codegen-ia32.cc 183 Register dst = edi; local
186 __ mov(dst, Operand(esp, stack_offset + kDestinationOffset));
192 __ movdqu(Operand(dst, 0), xmm0);
193 __ mov(edx, dst);
197 __ add(dst, edx);
220 __ movdqa(Operand(dst, 0x00), xmm0);
221 __ movdqa(Operand(dst, 0x10), xmm1);
222 __ add(dst, Immediate(0x20));
234 __ movdqa(Operand(dst, 0), xmm0);
235 __ add(dst, Immediate(0x10))
301 Register dst = edi; local
    [all...]
lithium-gap-resolver-ia32.cc 287 Operand dst = cgen_->ToOperand(destination); local
288 __ mov(dst, src);
294 Register dst = cgen_->ToRegister(destination); local
295 __ mov(dst, src);
300 Operand dst = cgen_->ToOperand(destination); local
302 __ mov(dst, tmp);
308 Register dst = cgen_->ToRegister(destination); local
310 __ Set(dst, cgen_->ToInteger32Immediate(constant_source));
312 __ LoadObject(dst, cgen_->ToHandle(constant_source));
316 Operand dst = cgen_->ToOperand(destination) local
329 XMMRegister dst = cgen_->ToDoubleRegister(destination); local
333 Operand dst = cgen_->ToOperand(destination); local
341 XMMRegister dst = cgen_->ToDoubleRegister(destination); local
345 Operand dst = cgen_->ToOperand(destination); local
369 Register dst = cgen_->ToRegister(destination); local
398 Operand dst = cgen_->ToOperand(destination); local
416 XMMRegister dst = cgen_->ToDoubleRegister(destination); local
    [all...]
  /external/valgrind/main/callgrind/
events.c 282 void CLG_(copy_cost)(EventSet* es, ULong* dst, ULong* src)
287 CLG_(zero_cost)(es, dst);
290 CLG_ASSERT(dst != 0);
293 dst[i] = src[i];
299 ULong* dst; local
307 dst = *pdst;
308 if (!dst)
309 dst = *pdst = CLG_(get_eventset_cost)(es);
312 dst[i] = src[i];
315 void CLG_(add_cost)(EventSet* es, ULong* dst, ULong* src
329 ULong* dst; local
422 ULong* dst; local
    [all...]
  /external/valgrind/main/coregrind/
m_xarray.c 342 XArray* dst = (XArray*)opaque; local
343 (void) VG_(addBytesToXA)( dst, &c, 1 );
346 void VG_(xaprintf)( XArray* dst, const HChar* format, ... )
350 VG_(vcbprintf)( add_char_to_XA, (void*)dst, format, vargs );
  /external/webp/src/enc/
alpha.c 70 uint32_t* dst = picture.argb; local
74 dst[i] = (src[i] << 8) | 0xff000000u;
77 dst += picture.argb_stride;
153 uint8_t* dst, int dst_stride, int width, int height) {
155 memcpy(dst, src, width);
157 dst += dst_stride;
  /external/wpa_supplicant_8/src/ap/
wpa_auth_glue.c 345 const u8 *dst; member in struct:wpa_auth_ft_iface_iter_data
361 if (os_memcmp(hapd->own_addr, idata->dst, ETH_ALEN) == 0) {
381 static int hostapd_wpa_auth_send_ether(void *ctx, const u8 *dst, u16 proto,
394 idata.dst = dst;
406 return hapd->driver->send_ether(hapd->drv_priv, dst,
415 os_memcpy(buf->h_dest, dst, ETH_ALEN);
419 ret = l2_packet_send(hapd->l2, dst, proto, (u8 *) buf,
428 static int hostapd_wpa_auth_send_ft_action(void *ctx, const u8 *dst,
437 sta = ap_get_sta(hapd, dst);
    [all...]
  /external/wpa_supplicant_8/src/utils/
common.c 323 char *dst = (char *) str; local
325 *dst++ = (char) *str++;
326 *dst = '\0';
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_udp.c 57 struct wpa_ctrl_dst *dst; local
59 dst = os_zalloc(sizeof(*dst));
60 if (dst == NULL)
62 os_memcpy(&dst->addr, from, sizeof(struct sockaddr_in));
63 dst->addrlen = fromlen;
64 dst->debug_level = MSG_INFO;
65 dst->next = priv->ctrl_dst;
66 priv->ctrl_dst = dst;
77 struct wpa_ctrl_dst *dst, *prev = NULL local
105 struct wpa_ctrl_dst *dst; local
328 struct wpa_ctrl_dst *dst, *prev; local
360 struct wpa_ctrl_dst *dst, *next; local
    [all...]
ctrl_iface_unix.c 70 struct wpa_ctrl_dst *dst; local
72 dst = os_zalloc(sizeof(*dst));
73 if (dst == NULL)
75 os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un));
76 dst->addrlen = fromlen;
77 dst->debug_level = MSG_INFO;
78 dl_list_add(ctrl_dst, &dst->list);
90 struct wpa_ctrl_dst *dst; local
92 dl_list_for_each(dst, ctrl_dst, struct wpa_ctrl_dst, list)
115 struct wpa_ctrl_dst *dst; local
496 struct wpa_ctrl_dst *dst, *prev; local
571 struct wpa_ctrl_dst *dst, *next; local
915 struct wpa_ctrl_dst *dst, *prev; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
findhalfpel.cpp 150 uint8 *dst; local
161 dst = subpel_pred;
163 dst -= 4; /* offset */
176 *((uint32*)(dst += 4)) = tmp32;
220 dst = subpel_pred + V0Q_H2Q * SUBPEL_PRED_BLK_SIZE; /* go to the 14th array 17x18*/
236 *dst++ = tmp32;
243 *dst++ = tmp32;
250 *dst++ = tmp32;
257 *dst++ = tmp32;
267 *dst = tmp32
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_MCReconBlock_s.s 606 dst RN 1 label
673 LDR dst, [pDst] ;// dst = [dcba]
677 UXTB16 tmp1, dst ;// tmp1 = [0c0a]
678 UXTB16 tmp2, dst, ROR #8 ;// tmp2 = [0d0b]
686 LDR dst, [pDst]
690 UXTB16 tmp1, dst
691 UXTB16 tmp2, dst, ROR #8
  /frameworks/av/media/libstagefright/rtsp/
APacketSource.cpp 300 uint8_t *dst = csd->data(); local
301 *dst++ = 0x03;
302 *dst++ = 20 + config->size();
303 *dst++ = 0x00; // ES_ID
304 *dst++ = 0x00;
305 *dst++ = 0x00; // streamDependenceFlag, URL_Flag, OCRstreamFlag
306 *dst++ = 0x04;
307 *dst++ = 15 + config->size();
308 *dst++ = objectType;
309 for (int i = 0; i < 12; ++i) { *dst++ = 0x00;
386 uint8_t *dst = csd->data(); local
    [all...]