Searched defs:src (Results 151 - 175 of 259) sorted by relevance

1234567891011

/vbox/src/VBox/Devices/PC/ipxe/src/net/80211/
H A Dwpa_ccmp.c178 * @v len Number of bytes pointed to by @a src
193 const u8 *src = srcv, *msrc = msrcv; local
216 *dest++ = *src++ ^ S[i];
/vbox/src/VBox/Devices/PC/ipxe/src/net/
H A Dfcels.c158 struct sockaddr_fc *src = ( ( struct sockaddr_fc * ) meta->src ); local
171 if ( ! src ) {
195 memcpy ( &els->peer_port_id, &src->sfc_port_id,
H A Dfc.c587 struct sockaddr_fc src; local
645 fc_meta.src = fc_fill_sockaddr ( &src, &fchdr->s_id );
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/common/ctf/
H A Dctf_create.c9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1098 ctf_bundle_t src, dst; local
1175 src.ctb_file = src_fp;
1176 src.ctb_type = src_type;
1177 src.ctb_dtd = NULL;
1263 * ways (src members vs. dst, dst members vs. src) but we make
1264 * this more optimal by only checking src vs. dst and comparing
1266 * which covers the possibility of dst members not in src
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_cg.c9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
317 * and src->dn_reg, r2, r2
328 dt_cg_field_set(dt_node_t *src, dt_irlist_t *dlp, argument
393 instr = DIF_INSTR_FMT(DIF_OP_AND, src->dn_reg, r2, r2);
410 dt_cg_store(dt_node_t *src, dt_irlist_t *dlp, dt_regset_t *drp, dt_node_t *dst) argument
426 size = dt_node_type_size(src);
428 if (src->dn_flags & DT_NF_REF) {
432 instr = DIF_INSTR_COPYS(src->dn_reg, reg, dst->dn_reg);
437 reg = dt_cg_field_set(src, dl
473 dt_cg_typecast(const dt_node_t *src, const dt_node_t *dst, dt_irlist_t *dlp, dt_regset_t *drp) argument
[all...]
H A Ddt_module.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
259 dt_module_symgelf32(const Elf32_Sym *src, GElf_Sym *dst) argument
262 dst->st_name = src->st_name;
263 dst->st_info = src->st_info;
264 dst->st_other = src->st_other;
265 dst->st_shndx = src->st_shndx;
266 dst->st_value = src->st_value;
267 dst->st_size = src->st_size;
274 dt_module_symgelf64(const Elf64_Sym *src, GElf_Sy argument
[all...]
/vbox/src/VBox/Storage/testcase/
H A DtstVD.cpp700 static int tstVmdkRename(const char *src, const char *dst) argument
729 rc = VDOpen(pVD, "VMDK", src, VD_OPEN_FLAGS_NORMAL, NULL);
740 static int tstVmdkCreateRenameOpen(const char *src, const char *dst, argument
743 int rc = tstVDCreateDelete("VMDK", src, cbSize, uFlags, false);
747 rc = tstVmdkRename(src, dst);
/vbox/src/VBox/Additions/linux/drm/
H A Dvbox_mode.c639 static void copy_cursor_image(u8 *src, u8 *dst, int width, int height, argument
645 memcpy(dst + cbMask, src, width * height * 4);
648 if (((uint32_t *)src)[i * width + j] > 0xf0000000)
662 u8 *src; local
693 src = ttm_kmap_obj_virtual(&uobj_map, &src_isiomem);
699 copy_cursor_image(src, dst, width, height, cbMask);
706 DRM_ERROR("src cursor bo should be in main memory\n");
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/vbox/libWineStub/include/wine/
H A Dport.h290 void *memmove(void *dest, const void *src, size_t len);
354 static inline void *memcpy_unaligned( void *dst, const void *src, size_t size ) argument
356 return memcpy( dst, src, size );
359 extern void *memcpy_unaligned( void *dst, const void *src, size_t size );
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Ddrawprim.c381 const DWORD *src = ptr; local
382 DWORD c = *src & 0xff00ff00;
383 c |= (*src & 0xff0000) >> 16;
384 c |= (*src & 0xff) << 16;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dport.h281 void *memmove(void *dest, const void *src, size_t len);
345 static inline void *memcpy_unaligned( void *dst, const void *src, size_t size ) argument
347 return memcpy( dst, src, size );
350 extern void *memcpy_unaligned( void *dst, const void *src, size_t size );
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/
H A Dprprf.c115 ** Fill into the buffer using the data in src
117 static int fill2(SprintfState *ss, const char *src, int srclen, int width, argument
137 rv = (*ss->stuff)(ss, src, srclen);
156 static int fill_n(SprintfState *ss, const char *src, int srclen, int width, argument
231 rv = (*ss->stuff)(ss, src, srclen);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/
H A Dmdmac.c407 PStrFromCStr(const char* src, Str255 dst) argument
412 if ( (void*)src == (void*)dst )
417 thisChar = *(const unsigned char*)src++;
423 nextChar = *(const unsigned char*)src++;
431 else if ( src != NULL )
439 while ( (temp = *src++) != 0 )
513 void PStrFromCStr(const char* src, Str255 dst) argument
518 if ( (void*)src == (void*)dst )
523 thisChar = *(const unsigned char*)src++;
529 nextChar = *(const unsigned char*)src
[all...]
/vbox/src/libs/xpcom18a4/xpcom/obsolete/
H A DnsFileSpecWin.cpp113 char* src = (char*)ioPath; local
114 if (*src == '/') {
115 if (!src[1]) {
117 nsSimpleCharString temp = src + 1;
122 char* colonPointer = src + 2;
123 if (strstr(src, "|/") == colonPointer)
126 nsSimpleCharString temp = src + 1;
132 for (src = (char*)ioPath; *src; ++src)
[all...]
/vbox/src/libs/libpng-1.2.8/contrib/gregbook/
H A Drpng-x.c642 uch *src; local
663 src = image_data + row*image_rowbytes;
667 red = *src++;
668 green = *src++;
669 blue = *src++;
694 r = *src++;
695 g = *src++;
696 b = *src++;
697 a = *src++;
737 src
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dloader.c304 void **src = (void **)array; local
308 *dst++ = *src ? (BYTE *)*src - base : 0;
309 src++;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/vbox/libWineStub/include/wine/
H A Dport.h281 void *memmove(void *dest, const void *src, size_t len);
345 static inline void *memcpy_unaligned( void *dst, const void *src, size_t size ) argument
347 return memcpy( dst, src, size );
350 extern void *memcpy_unaligned( void *dst, const void *src, size_t size );
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Ddrawprim.c350 const DWORD *src = ptr; local
351 DWORD c = *src & 0xff00ff00;
352 c |= (*src & 0xff0000) >> 16;
353 c |= (*src & 0xff) << 16;
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
H A DLzmaDec.c418 ptrdiff_t src = (ptrdiff_t)pos - (ptrdiff_t)dicPos; local
422 *((volatile Byte *)dest) = (Byte)*(dest + src);
745 SRes LzmaDec_DecodeToDic(CLzmaDec *p, SizeT dicLimit, const Byte *src, SizeT *srcLen, argument
761 p->tempBuf[p->tempBufSize++] = *src++;
804 int dummyRes = LzmaDec_TryDummy(p, src, inSize);
807 memcpy(p->tempBuf, src, inSize);
818 bufLimit = src;
821 bufLimit = src + inSize - LZMA_REQUIRED_INPUT_MAX;
822 p->buf = src;
825 processed = (SizeT)(p->buf - src);
866 LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status) argument
995 LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, const Byte *propData, unsigned propSize, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc) argument
[all...]
/vbox/src/VBox/Devices/Audio/
H A Daudio_int.h248 static inline int audio_ring_dist (int dst, int src, int len) argument
250 return (dst >= src) ? (dst - src) : (len - src + dst);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DLzmaDec.c399 ptrdiff_t src = (ptrdiff_t)pos - (ptrdiff_t)dicPos; local
403 *(dest) = (Byte)*(dest + src);
727 SRes LzmaDec_DecodeToDic(CLzmaDec *p, SizeT dicLimit, const Byte *src, SizeT *srcLen, argument
743 p->tempBuf[p->tempBufSize++] = *src++;
786 int dummyRes = LzmaDec_TryDummy(p, src, inSize);
789 memcpy(p->tempBuf, src, inSize);
800 bufLimit = src;
803 bufLimit = src + inSize - LZMA_REQUIRED_INPUT_MAX;
804 p->buf = src;
807 processed = (SizeT)(p->buf - src);
848 LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status) argument
977 LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, const Byte *propData, unsigned propSize, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/netinet/
H A Din.h254 struct in_addr ip_dst; /* first hop, 0 w/o src rt */
499 * src Source IP address
504 in_cksum_phdr(u_int32_t src, u_int32_t dst, u_int32_t lenproto) argument
509 (u_int16_t)(src >> 16) +
510 (u_int16_t)(src /*& 0xffff*/) +
/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Dtcp.c1712 , ipX_addr_t *src, u8_t isipv6
1720 outif = ipX_route(isipv6, src, dest);
1769 LWIP_DEBUGF(TCP_DEBUG, ("| %5"U16_F" | %5"U16_F" | (src port, dest port)\n",
1770 ntohs(tcphdr->src), ntohs(tcphdr->dest)));
1710 tcp_eff_send_mss_impl(u16_t sendmss, ipX_addr_t *dest , ipX_addr_t *src, u8_t isipv6 ) argument
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dpixel.c237 * Pack src pixel data into tmpRow array as either GLfloat[][1] or
241 get_row(const char *src, GLenum srcFormat, GLenum srcType, argument
244 const GLbyte *bSrc = (GLbyte *) src;
245 const GLubyte *ubSrc = (GLubyte *) src;
246 const GLshort *sSrc = (GLshort *) src;
247 const GLushort *usSrc = (GLushort *) src;
248 const GLint *iSrc = (GLint *) src;
249 const GLuint *uiSrc = (GLuint *) src;
250 const GLfloat *fSrc = (GLfloat *) src;
251 const GLdouble *dSrc = (GLdouble *) src;
1499 const char *src = (const char *) srcPtr; local
[all...]
/vbox/src/VBox/HostServices/SharedFolders/
H A Dvbsf.cpp1734 void *src, *dst; local
1736 src = &pDirEntry->szName[0];
1739 memcpy(dst, src, pDirEntry->cbName + 1);

Completed in 157 milliseconds

1234567891011