/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/ |
D | Setup.sample | 23 imageext src/imageext.c $(SDL) $(IMAGE) $(PNG) $(JPEG) $(DEBUG) 24 font src/font.c $(SDL) $(FONT) $(DEBUG) 25 mixer src/mixer.c $(SDL) $(MIXER) $(DEBUG) 26 mixer_music src/music.c $(SDL) $(MIXER) $(DEBUG) 27 _numericsurfarray src/_numericsurfarray.c $(SDL) $(DEBUG) 28 _numericsndarray src/_numericsndarray.c $(SDL) $(MIXER) $(DEBUG) 29 movie src/movie.c $(SDL) $(SMPEG) $(DEBUG) 30 scrap src/scrap.c $(SDL) $(SCRAP) $(DEBUG) 31 _camera src/_camera.c src/camera_v4l2.c src/camera_v4l.c $(SDL) $(DEBUG) 32 pypm src/pypm.c $(SDL) $(PORTMIDI) $(PORTTIME) $(DEBUG) [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
D | file_util.py | 18 def _copy_file_contents(src, dst, buffer_size=16*1024): argument 32 fsrc = open(src, 'rb') 34 raise DistutilsFileError("could not open '%s': %s" % (src, errstr)) 54 "could not read from '%s': %s" % (src, errstr)) 71 def copy_file(src, dst, preserve_mode=1, preserve_times=1, update=0, argument 107 if not os.path.isfile(src): 109 "can't copy '%s': doesn't exist or not a regular file" % src) 113 dst = os.path.join(dst, os.path.basename(src)) 117 if update and not newer(src, dst): 119 log.debug("not copying %s (output up-to-date)", src) [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/ |
D | LuaLib.inf | 34 src/lapi.c 35 src/lauxlib.c 36 src/lbaselib.c 37 src/lbitlib.c 38 src/lcode.c 39 src/lcorolib.c 40 src/lctype.c 41 src/ldblib.c 42 src/ldebug.c 43 src/ldo.c [all …]
|
/device/google/contexthub/firmware/external/ |
D | Android.mk | 26 freebsd/lib/msun/src/e_atan2f.c \ 27 freebsd/lib/msun/src/e_expf.c \ 28 freebsd/lib/msun/src/s_atanf.c \ 35 $(LOCAL_PATH)/freebsd/lib/msun/src \ 37 $(NANOHUB_OS_PATH)/src/platform/$(AUX_ARCH)/inc \ 38 $(NANOHUB_OS_PATH)/src/platform/$(AUX_ARCH)/inc/plat/cmsis \ 39 $(NANOHUB_OS_PATH)/src/cpu/$(AUX_CPU)/inc \ 53 freebsd/lib/msun/src/e_atan2f.c \ 54 freebsd/lib/msun/src/e_expf.c \ 55 freebsd/lib/msun/src/s_atanf.c \ [all …]
|
/device/google/contexthub/firmware/lib/libc/ |
D | bcopy.c | 71 const char *src = src0; in memcpy() local 74 if (length == 0 || dst == src) /* nothing to do */ in memcpy() 83 if ((unsigned long)dst < (unsigned long)src) { in memcpy() 87 t = (uintptr_t)src; /* only need low bits */ in memcpy() 98 TLOOP1(*dst++ = *src++); in memcpy() 104 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize); in memcpy() 106 TLOOP(*dst++ = *src++); in memcpy() 113 src += length; in memcpy() 115 t = (uintptr_t)src; in memcpy() 122 TLOOP1(*--dst = *--src); in memcpy() [all …]
|
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/ |
D | inet_net_pton.c | 81 static int inet_net_pton_ipv4 (const char *src, u_char *dst, 100 const char *src, in inet_net_pton() argument 107 return (inet_net_pton_ipv4(src, dst, size)); in inet_net_pton() 132 const char *src, in inet_net_pton_ipv4() argument 146 ch = *src++; in inet_net_pton_ipv4() 147 if (ch == '0' && (src[0] == 'x' || src[0] == 'X') in inet_net_pton_ipv4() 148 && isascii(src[1]) && isxdigit(src[1])) { in inet_net_pton_ipv4() 153 src++; /* skip x or X. */ in inet_net_pton_ipv4() 154 while ((ch = *src++) != '\0' && in inet_net_pton_ipv4() 181 } while ((ch = *src++) != '\0' && in inet_net_pton_ipv4() [all …]
|
D | ns_netint.c | 27 ns_get16(const u_char *src) { in ns_get16() argument 30 NS_GET16(dst, src); in ns_get16() 35 ns_get32(const u_char *src) { in ns_get32() argument 38 NS_GET32(dst, src); in ns_get32() 43 ns_put16(uint16_t src, u_char *dst) { in ns_put16() argument 44 NS_PUT16(src, dst); in ns_put16() 48 ns_put32(uint32_t src, u_char *dst) { in ns_put32() argument 49 NS_PUT32(src, dst); in ns_put32()
|
D | ns_ttl.c | 80 ns_format_ttl(u_long src, char *dst, size_t dstlen) { in ns_format_ttl() argument 85 secs = (int)(src % 60); src /= 60; in ns_format_ttl() 86 mins = (int)(src % 60); src /= 60; in ns_format_ttl() 87 hours = (int)(src % 24); src /= 24; in ns_format_ttl() 88 days = (int)(src % 7); src /= 7; in ns_format_ttl() 89 weeks = (int)src; src = 0; in ns_format_ttl() 125 ns_parse_ttl(const char *src, u_long *dst) { in ns_parse_ttl() argument 133 while ((ch = *src++) != '\0') { in ns_parse_ttl()
|
D | inet_pton.c | 75 static int inet_pton4 (const char *src, u_char *dst); 76 static int inet_pton6 (const char *src, u_char *dst); 92 const char *src, in inet_pton() argument 98 return (inet_pton4(src, dst)); in inet_pton() 100 return (inet_pton6(src, dst)); in inet_pton() 120 const char *src, in inet_pton4() argument 131 while ((ch = *src++) != '\0') { in inet_pton4() 175 const char *src, in inet_pton6() argument 190 if (*src == ':') in inet_pton6() 191 if (*++src != ':') in inet_pton6() [all …]
|
D | res_comp.c | 117 dn_expand(const u_char *msg, const u_char *eom, const u_char *src, in dn_expand() argument 120 int n = ns_name_uncompress(msg, eom, src, dst, (size_t)dstsiz); in dn_expand() 133 dn_comp(const char *src, u_char *dst, int dstsiz, in dn_comp() argument 136 return (ns_name_compress(src, dst, (size_t)dstsiz, in dn_comp() 279 void __putlong(u_int32_t src, u_char *dst) { ns_put32(src, dst); } in __putlong() argument 280 void __putshort(u_int16_t src, u_char *dst) { ns_put16(src, dst); } in __putshort() argument 281 u_int32_t _getlong(const u_char *src) { return (ns_get32(src)); } in _getlong() argument 282 u_int16_t _getshort(const u_char *src) { return (ns_get16(src)); } in _getshort() argument
|
/device/google/cuttlefish_common/guest/hals/hwcomposer/cutf_cvm/ |
D | vsoc_composer.cpp | 61 typedef int (*ConverterFunction)(const BufferSpec& src, const BufferSpec& dst, 63 int DoCopy(const BufferSpec& src, const BufferSpec& dst, bool v_flip); 64 int ConvertFromYV12(const BufferSpec& src, const BufferSpec& dst, bool v_flip); 167 int ConvertFromYV12(const BufferSpec& src, const BufferSpec& dst, bool v_flip) { in ConvertFromYV12() argument 169 int stride_in_pixels = src.stride / formatToBytesPerPixel(src.format); in ConvertFromYV12() 174 uint8_t* src_y = src.buffer; in ConvertFromYV12() 176 uint8_t* src_v = src_y + stride_y * src.height; in ConvertFromYV12() 178 uint8_t* src_u = src_v + stride_v * src.height / 2; in ConvertFromYV12() 182 src_y += src.crop_y * stride_y + src.crop_x; in ConvertFromYV12() 183 src_v += (src.crop_y / 2) * stride_v + (src.crop_x / 2); in ConvertFromYV12() [all …]
|
/device/google/cuttlefish_common/guest/hals/hwcomposer/vsoc/ |
D | vsoc_composer.cpp | 63 typedef int (*ConverterFunction)(const BufferSpec& src, const BufferSpec& dst, 65 int DoCopy(const BufferSpec& src, const BufferSpec& dst, bool v_flip); 66 int ConvertFromYV12(const BufferSpec& src, const BufferSpec& dst, bool v_flip); 169 int ConvertFromYV12(const BufferSpec& src, const BufferSpec& dst, bool v_flip) { in ConvertFromYV12() argument 171 int stride_in_pixels = src.stride / formatToBytesPerPixel(src.format); in ConvertFromYV12() 176 uint8_t* src_y = src.buffer; in ConvertFromYV12() 178 uint8_t* src_v = src_y + stride_y * src.height; in ConvertFromYV12() 180 uint8_t* src_u = src_v + stride_v * src.height / 2; in ConvertFromYV12() 184 src_y += src.crop_y * stride_y + src.crop_x; in ConvertFromYV12() 185 src_v += (src.crop_y / 2) * stride_v + (src.crop_x / 2); in ConvertFromYV12() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | shutil.py | 54 def _samefile(src, dst): argument 58 return os.path.samefile(src, dst) 63 return (os.path.normcase(os.path.abspath(src)) == 66 def copyfile(src, dst): argument 68 if _samefile(src, dst): 69 raise Error("`%s` and `%s` are the same file" % (src, dst)) 71 for fn in [src, dst]: 82 with open(src, 'rb') as fsrc: 86 def copymode(src, dst): argument 89 st = os.stat(src) [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | shutil.py | 53 def _samefile(src, dst): argument 57 return os.path.samefile(src, dst) 62 return (os.path.normcase(os.path.abspath(src)) == 65 def copyfile(src, dst): argument 67 if _samefile(src, dst): 68 raise Error("`%s` and `%s` are the same file" % (src, dst)) 70 for fn in [src, dst]: 81 with open(src, 'rb') as fsrc: 85 def copymode(src, dst): argument 88 st = os.stat(src) [all …]
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/AArch64/ |
D | CopyMem.S | 64 #define src x1 macro 98 prfm PLDL1KEEP, [src] 99 add srcend, src, count 108 ldp A_l, A_h, [src] 112 ldp B_l, B_h, [src, 16] 126 ldr A_l, [src] 134 ldr A_lw, [src] 145 ldrb A_lw, [src] 147 ldrb B_lw, [src, tmp1] 157 ldp B_l, B_h, [src, 16] [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/ |
D | extensions_win32.ini | 66 cl=/I %PYTHONEX%\win32\src 71 cl=/I %PYTHONEX%\win32\src 76 cl=/I %PYTHONEX%\win32\src 81 cl=/I %PYTHONEX%\win32\src 87 cl=/I %PYTHONEX%\win32\src 91 cl=/I %PYTHONEX%\win32\src 95 cl=/I %PYTHONEX%\win32\src 99 cl=/I %PYTHONEX%\win32\src 103 cl=/I %PYTHONEX%\win32\src 108 cl=/I %PYTHONEX%\win32\src [all …]
|
/device/google/marlin/camera/QCamera2/stack/mm-camera-test/ |
D | Android.mk | 24 src/mm_qcamera_main_menu.c \ 25 src/mm_qcamera_app.c \ 26 src/mm_qcamera_unit_test.c \ 27 src/mm_qcamera_video.c \ 28 src/mm_qcamera_preview.c \ 29 src/mm_qcamera_snapshot.c \ 30 src/mm_qcamera_rdi.c \ 31 src/mm_qcamera_reprocess.c\ 32 src/mm_qcamera_queue.c \ 33 src/mm_qcamera_socket.c \ [all …]
|
/device/linaro/bootloader/edk2/StdLib/LibC/NetUtil/ |
D | inet_ntop.c | 61 static const char *inet_ntop4(const u_char *src, char *dst, socklen_t size); 62 static const char *inet_ntop6(const u_char *src, char *dst, socklen_t size); 73 inet_ntop(int af, const void *src, char *dst, socklen_t size) in inet_ntop() argument 76 _DIAGASSERT(src != NULL); in inet_ntop() 81 return (inet_ntop4(src, dst, size)); in inet_ntop() 83 return (inet_ntop6(src, dst, size)); in inet_ntop() 103 inet_ntop4(const u_char *src, char *dst, socklen_t size) in inet_ntop4() argument 108 _DIAGASSERT(src != NULL); in inet_ntop4() 112 src[0], src[1], src[2], src[3]); in inet_ntop4() 129 inet_ntop6(const u_char *src, char *dst, socklen_t size) in inet_ntop6() argument [all …]
|
/device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/ |
D | Makefile | 15 OBJECTS := src/cert.o \ 16 src/cmd_opt.o \ 17 src/ext.o \ 18 src/key.o \ 19 src/main.o \ 20 src/sha.o \ 21 src/tbbr/tbb_cert.o \ 22 src/tbbr/tbb_ext.o \ 23 src/tbbr/tbb_key.o 78 ${CC} -c ${CFLAGS} -xc - -o src/build_msg.o [all …]
|
/device/linaro/hikey/hifi/xaf/hifi-dpf/ipc/xt-shmem/hikey/ |
D | dsp_comm.c | 28 unsigned char *src = (unsigned char*)s; in dsp_memcpy() local 32 } else if (src > dest) { in dsp_memcpy() 34 *dest = *src; in dsp_memcpy() 35 src++; in dsp_memcpy() 38 src = src + (size - 1); in dsp_memcpy() 40 *dest = *src; in dsp_memcpy() 41 src--; in dsp_memcpy()
|
/device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/ |
D | mem.c | 45 void *memcpy(void *dst, const void *src, size_t len) in memcpy() argument 47 const char *s = src; in memcpy() 59 void *memmove(void *dst, const void *src, size_t len) in memmove() argument 69 if ((size_t)dst - (size_t)src >= len) { in memmove() 71 return memcpy(dst, src, len); in memmove() 75 const char *s = (const char *)src + len; in memmove() 86 void *memchr(const void *src, int c, size_t len) in memchr() argument 88 const char *s = src; in memchr()
|
/device/linaro/bootloader/edk2/StdLib/LibC/Locale/ |
D | _wcstod.h | 57 const wchar_t *src, *start; in _FUNCNAME() local 65 src = nptr; in _FUNCNAME() 66 while (iswspace((wint_t)*src) != 0) in _FUNCNAME() 67 ++src; in _FUNCNAME() 68 if (*src == L'\0') in _FUNCNAME() 81 start = src; in _FUNCNAME() 82 len = wcstombs(NULL, src, 0); in _FUNCNAME() 95 len = wcstombs(buf, src, bufsiz + 1); in _FUNCNAME()
|
/device/google/contexthub/firmware/app/chre/common/ |
D | chre10_app.c | 54 static void processTripleAxisData(const struct TripleAxisDataEvent *src, uint32_t sensorHandle, uin… in processTripleAxisData() argument 59 initDataHeader(&three.header, src->referenceTime, sensorHandle); in processTripleAxisData() 62 for (i=0; i<src->samples[0].firstSample.numSamples; i++) { in processTripleAxisData() 64 three.header.baseTimestamp += src->samples[i].deltaTime; in processTripleAxisData() 65 three.readings[0].x = src->samples[i].x; in processTripleAxisData() 66 three.readings[0].y = src->samples[i].y; in processTripleAxisData() 67 three.readings[0].z = src->samples[i].z; in processTripleAxisData() 73 static void processSingleAxisData(const struct SingleAxisDataEvent *src, uint32_t sensorHandle, uin… in processSingleAxisData() argument 82 initDataHeader(&occ.header, src->referenceTime, sensorHandle); in processSingleAxisData() 85 for (i=0; i<src->samples[0].firstSample.numSamples; i++) { in processSingleAxisData() [all …]
|
/device/linaro/bootloader/edk2/ArmPkg/Library/CompilerIntrinsicsLib/ |
D | memcpy.c | 19 void *__memcpy(void *dest, const void *src, size_t n) in __memcpy() argument 22 unsigned char const *s = src; in __memcpy() 31 void *memcpy(void *dest, const void *src, size_t n); 36 void __aeabi_memcpy(void *dest, const void *src, size_t n); 39 void __aeabi_memcpy4(void *dest, const void *src, size_t n); 42 void __aeabi_memcpy8(void *dest, const void *src, size_t n);
|
/device/linaro/hikey/hifi/xaf/hifi-dpf/core/ |
D | xf-core.c | 97 u32 src = XF_MSG_SRC(m->id); in xf_proxy_register() local 123 m->id = __XF_MSG_ID(src, component->id); in xf_proxy_register() 171 u32 src = cmd->src; 177 XF_CHK_ERR(XF_MSG_SRC_CORE(src) == core, -EINVAL); 180 if ((component = xf_client_lookup(XF_CORE_DATA(core), XF_PORT_CLIENT(src))) == NULL) 182 TRACE(ERROR, _x("Source port lookup failed: %x"), src); 185 else if (!component->port || !(port = component->port(component, XF_PORT_ID(src)))) 187 TRACE(ERROR, _b("Source port doesn't exist: %x"), src); 192 TRACE(ERROR, _b("Source port is already routed: %x"), src); 197 …XF_CHK_API(xf_output_port_route(port, __XF_MSG_ID(dst, src), cmd->alloc_number, cmd->alloc_size, c… [all …]
|