Searched defs:dst (Results 26 - 44 of 44) sorted by relevance

12

/device/generic/goldfish-opengl/system/OpenglSystemCommon/
H A DFormatConversions.cpp320 char* dst = _dst; local
325 memcpy(dst, src, dst_line_len);
327 dst += dst_line_len;
/device/google/contexthub/firmware/os/platform/stm32/
H A Dcrt_stm32.c128 uint32_t *dst, *src, *end; local
131 dst = __data_start;
134 while(dst != end)
135 *dst++ = *src++;
138 dst = __bss_start;
140 while(dst != end)
141 *dst++ = 0;
H A Dbl.c284 static void blWriteBytes(uint8_t *dst, const uint8_t *src, uint32_t length) argument
303 if (dst[i] != src[i])
304 func(&dst[i], src[i], &flash->SR);
311 bool blPlatProgramFlash(uint8_t *dst, const uint8_t *src, uint32_t length, uint32_t key1, uint32_t key2) argument
346 blWriteBytes(dst, src, length);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
H A Dcursor.c45 char* dst; local
56 dst = buf;
57 *dst = 0;
58 while (isalpha(*src) && dst - buf < sizeof(buf) - 2) {
59 *dst++ = tolower(*src++);
62 *dst = 0;
/device/google/contexthub/firmware/os/core/
H A Dbl.c128 static bool blProgramFlash(uint8_t *dst, const uint8_t *src, uint32_t length, uint32_t key1, uint32_t key2) argument
135 ((0xFFFFFFFF - (uint32_t)dst) < (length - 1)) ||
136 ((dst < mBlFlashTable[0].address)) ||
137 ((dst + length) > (mBlFlashTable[sector_cnt-1].address +
144 if (dst >= mBlFlashTable[i].address &&
145 dst < (mBlFlashTable[i].address + mBlFlashTable[i].length)) {
153 offset = (uint32_t)(dst - mBlFlashTable[i].address);
170 if (!blPlatProgramFlash(dst, src, length, key1, key2))
173 return !memcmp(dst, src, length);
181 static bool blProgramTypedArea(uint8_t *dst, cons argument
200 blExtApiProgramSharedArea(uint8_t *dst, const uint8_t *src, uint32_t length, uint32_t key1, uint32_t key2) argument
205 blExtApiProgramEe(uint8_t *dst, const uint8_t *src, uint32_t length, uint32_t key1, uint32_t key2) argument
[all...]
H A DhostIntf.c1518 void hostIntfCopyInterrupts(void *dst, uint32_t numBits) argument
1523 atomicBitsetBulkRead(mInterrupt, dst, numBits);
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dantlr.c137 zzantlr_state st; FILE *f; struct zzdlg_state dst; local
140 zzsave_dlg_state(&dst);
149 zzrestore_dlg_state(&dst);
/device/linaro/bootloader/edk2/StdLib/Include/netinet/
H A Din.h272 #define IP_RECVDSTADDR 7 /* bool; receive IP dst addr w/dgram */
500 * dst Destination IP address
504 in_cksum_phdr(u_int32_t src, u_int32_t dst, u_int32_t lenproto) argument
511 (u_int16_t)(dst >> 16) +
512 (u_int16_t)(dst /*& 0xffff*/);
/device/generic/goldfish/audio/
H A Daudio_hw.c1066 uint16_t *dst = (uint16_t *)buffer; local
1071 *dst = *src;
1073 dst += 1;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dfileobject.c2819 char *dst = buf; local
2840 char *src = dst;
2842 nread = fread(dst, 1, n, stream);
2853 *dst++ = '\n';
2871 *dst++ = c;
2884 return dst - buf;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_datetime.py58 def dst(self, dt): member in class:FixedOffset
75 self.assertRaises(NotImplementedError, useless.dst, dt)
89 self.assertRaises(NotImplementedError, ne.dst, dt)
97 self.assertEqual(fo.dst(dt), timedelta(minutes=42))
1648 def dst(self, dt): return timedelta(0) member in class:TestDateTime.test_astimezone.Bogus
1654 def dst(self, dt): return None member in class:TestDateTime.test_astimezone.AlsoBogus
2004 dst = utcoffset variable in class:TZInfoBase.test_argument_passing.introspective
2013 self.assertEqual(obj.dst(), expected)
2063 def dst(self, dt): return None member in class:TZInfoBase.test_tzinfo_classes.C1
2069 self.assertTrue(t.dst() i
2074 def dst(self, dt): return timedelta(minutes=1439) member in class:TZInfoBase.test_tzinfo_classes.C3
2084 def dst(self, dt): return 7 member in class:TZInfoBase.test_tzinfo_classes.C4
2094 def dst(self, dt): return timedelta(hours=24) member in class:TZInfoBase.test_tzinfo_classes.C6
2102 def dst(self, dt): return timedelta(microseconds=-81) member in class:TZInfoBase.test_tzinfo_classes.C7
2726 def dst(self, dt): member in class:TestDateTimeTZ.test_tzinfo_timetuple.DST
2760 def dst(self, dt): member in class:TestDateTimeTZ.test_utctimetuple.DST
3047 def dst(self, dt): member in class:USTimeZone
3249 def dst(self, dt): return HOUR member in class:TestTimezoneConversions.test_bogus_dst.ok
3257 def dst(self, dt): return None member in class:TestTimezoneConversions.test_bogus_dst.notok
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dbz2module.c349 char *dst = buf; local
367 char *src = dst;
369 nread = BZ2_bzRead(bzerror, stream, dst, n);
377 *dst++ = '\n';
395 *dst++ = c;
408 return dst - buf;
H A Dsocketmodule.c321 int inet_pton(int af, const char *src, void *dst);
322 const char *inet_ntop(int af, const void *src, char *dst, socklen_t size);
5421 inet_pton(int af, const char *src, void *dst) argument
5431 memcpy(dst, &packed_addr, 4);
5439 inet_ntop(int af, const void *src, char *dst, socklen_t size) argument
5447 return strncpy(dst, inet_ntoa(packed_addr), size);
H A Ddatetimemodule.c918 /* Call tzinfo.dst(tzinfoarg), and extract an integer from the
919 * result. tzinfo must be an instance of the tzinfo class. If dst()
920 * returns None, call_dst returns 0 and sets *none to 1. If dst()
922 * returns -1. If dst() returns an invalid timedelta for a UTC offset,
929 return call_utc_tzinfo_method(tzinfo, "dst", tzinfoarg, none);
2872 return tzinfo_nogo("dst");
2881 int off, dst; local
2905 dst = call_dst(dt->tzinfo, (PyObject *)dt, &none);
2906 if (dst == -1 && PyErr_Occurred())
2910 "dst() resul
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dfileobject.c2752 char *dst = buf; local
2773 char *src = dst;
2775 nread = fread(dst, 1, n, stream);
2786 *dst++ = '\n';
2804 *dst++ = c;
2817 return dst - buf;
/device/linaro/bootloader/edk2/StdLib/Include/netinet6/
H A Din6.h408 #define IPV6_RECVDSTADDR 7 /* bool; receive IP6 dst addr w/dgram */
424 #define IPV6_2292PKTINFO 19 /* bool; send/recv if, src/dst addr */
441 #define IPV6_RTHDRDSTOPTS 35 /* ip6_dest; send dst option before rthdr */
443 #define IPV6_RECVPKTINFO 36 /* bool; recv if, dst addr */
447 #define IPV6_RECVDSTOPTS 40 /* bool; recv dst option after rthdr */
449 #define IPV6_RECVRTHDRDSTOPTS 41 /* bool; recv dst option before rthdr */
461 #define IPV6_DSTOPTS 50 /* ip6_dest; send dst option befor rthdr */
495 struct in6_addr ipi6_addr; /* src/dst IPv6 address */
674 * dst Destination IPv6 address
678 * NOTE: We expect the src and dst addresse
682 in6_cksum_phdr(const struct in6_addr *src, const struct in6_addr *dst, u_int32_t len, u_int32_t nxt) argument
[all...]
/device/google/contexthub/firmware/os/cpu/cortexm4/inc/cpu/cmsis/
H A Darm_math.h543 q31_t * dst,
582 *dst = out;
594 q15_t * dst,
632 *dst = out;
5224 * @param[out] *dst points to the instance of the output floating-point matrix structure.
5231 arm_matrix_instance_f32 * dst);
5237 * @param[out] *dst points to the instance of the output floating-point matrix structure.
5244 arm_matrix_instance_f64 * dst);
6199 int32_t * dst,
6219 *dst
541 arm_recip_q31( q31_t in, q31_t * dst, q31_t * pRecipTable) argument
592 arm_recip_q15( q15_t in, q15_t * dst, q15_t * pRecipTable) argument
6194 arm_circularRead_f32( int32_t * circBuffer, int32_t L, int32_t * readOffset, int32_t bufferInc, int32_t * dst, int32_t * dst_base, int32_t dst_length, int32_t dstInc, uint32_t blockSize) argument
6294 arm_circularRead_q15( q15_t * circBuffer, int32_t L, int32_t * readOffset, int32_t bufferInc, q15_t * dst, q15_t * dst_base, int32_t dst_length, int32_t dstInc, uint32_t blockSize) argument
6396 arm_circularRead_q7( q7_t * circBuffer, int32_t L, int32_t * readOffset, int32_t bufferInc, q7_t * dst, q7_t * dst_base, int32_t dst_length, int32_t dstInc, uint32_t blockSize) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Dsocketmodule.c326 int inet_pton(int af, const char *src, void *dst);
327 const char *inet_ntop(int af, const void *src, char *dst, socklen_t size);
5523 inet_pton(int af, const char *src, void *dst) argument
5533 memcpy(dst, &packed_addr, 4);
5541 inet_ntop(int af, const void *src, char *dst, socklen_t size) argument
5549 return strncpy(dst, inet_ntoa(packed_addr), size);
H A Ddatetimemodule.c918 /* Call tzinfo.dst(tzinfoarg), and extract an integer from the
919 * result. tzinfo must be an instance of the tzinfo class. If dst()
920 * returns None, call_dst returns 0 and sets *none to 1. If dst()
922 * returns -1. If dst() returns an invalid timedelta for a UTC offset,
929 return call_utc_tzinfo_method(tzinfo, "dst", tzinfoarg, none);
2872 return tzinfo_nogo("dst");
2881 int off, dst; local
2905 dst = call_dst(dt->tzinfo, (PyObject *)dt, &none);
2906 if (dst == -1 && PyErr_Occurred())
2910 "dst() resul
[all...]

Completed in 731 milliseconds

12