/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/ |
D | Nat.java | 11 public static int add(int len, int[] x, int[] y, int[] z) in add() 23 public static int add33At(int len, int x, int[] z, int zPos) in add33At() 35 public static int add33At(int len, int x, int[] z, int zOff, int zPos) in add33At() 47 public static int add33To(int len, int x, int[] z) in add33To() 58 public static int add33To(int len, int x, int[] z, int zOff) in add33To() 69 public static int addBothTo(int len, int[] x, int[] y, int[] z) in addBothTo() 81 public static int addBothTo(int len, int[] x, int xOff, int[] y, int yOff, int[] z, int zOff) in addBothTo() 93 public static int addDWordAt(int len, long x, int[] z, int zPos) in addDWordAt() 105 public static int addDWordAt(int len, long x, int[] z, int zOff, int zPos) in addDWordAt() 117 public static int addDWordTo(int len, long x, int[] z) in addDWordTo() [all …]
|
/external/google-breakpad/src/third_party/libdisasm/ |
D | x86_format.c | 18 #define STRNCAT( buf, str, len ) do { \ argument 31 #define STRNCATF( buf, fmt, data, len ) do { \ argument 58 int len ) { in format_insn_prefix_str() 75 static void get_operand_data_str( x86_op_t *op, char *str, int len ){ in get_operand_data_str() 115 static void get_operand_regtype_str( int regtype, char *str, int len ) in get_operand_regtype_str() 161 static int format_expr( x86_ea_t *ea, char *buf, int len, in format_expr() 285 static int format_seg( x86_op_t *op, char *buf, int len, in format_seg() 406 int len) { in format_insn_eflags_str() 646 int len){ in format_operand_att() 720 int len){ in format_operand_native() [all …]
|
/external/vboot_reference/firmware/lib/ |
D | stateful_util.c | 13 void StatefulInit(MemcpyState *state, void *buf, uint64_t len) in StatefulInit() 20 void *StatefulSkip(MemcpyState *state, uint64_t len) in StatefulSkip() 33 void *StatefulMemcpy(MemcpyState *state, void *dst, uint64_t len) in StatefulMemcpy() 47 const void *StatefulMemcpy_r(MemcpyState *state, const void *src, uint64_t len) in StatefulMemcpy_r() 62 uint64_t len) in StatefulMemset_r()
|
/external/libxml2/ |
D | xmlstring.c | 41 xmlStrndup(const xmlChar *cur, int len) { in xmlStrndup() 85 xmlCharStrndup(const char *cur, int len) { in xmlCharStrndup() 206 xmlStrncmp(const xmlChar *str1, const xmlChar *str2, int len) { in xmlStrncmp() 296 xmlStrncasecmp(const xmlChar *str1, const xmlChar *str2, int len) { in xmlStrncasecmp() 397 xmlStrsub(const xmlChar *str, int start, int len) { in xmlStrsub() 423 int len = 0; in xmlStrlen() local 448 xmlStrncat(xmlChar *cur, const xmlChar *add, int len) { in xmlStrncat() 483 xmlStrncatNew(const xmlChar *str1, const xmlChar *str2, int len) { in xmlStrncatNew() 541 xmlStrPrintf(xmlChar *buf, int len, const xmlChar *msg, ...) { in xmlStrPrintf() 569 xmlStrVPrintf(xmlChar *buf, int len, const xmlChar *msg, va_list ap) { in xmlStrVPrintf() [all …]
|
/external/aac/libFDK/src/ |
D | scale.cpp | 121 INT len, /*!< Length */ in scaleValues() 171 INT len, /*!< Length */ in scaleValues() 226 INT len, /*!< Length */ in scaleValues() 283 INT len, in scaleValuesWithFactor() 348 INT len /*!< Length of input vector */ in getScalefactorShort() 374 INT len, /*!< Length of input vector */ in getScalefactorPCM() 400 INT len, /*!< Length of input vector */ in getScalefactorShort() 430 INT len) /*!< Length of input vector */ in getScalefactor() 448 INT len) /*!< Length of input vector */ in getScalefactor()
|
/external/expat/tests/ |
D | chardata.c | 26 int len = 0; in xmlstrlen() local 45 int len; in CharData_AppendString() local 61 CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len) in CharData_AppendXMLChars() 86 int len; in CharData_CheckString() local 115 int len = xmlstrlen(expected); in CharData_CheckXMLChars() local
|
/external/f2fs-tools/lib/ |
D | libf2fs_io.c | 31 int dev_read_version(void *buf, __u64 offset, size_t len) in dev_read_version() 40 int dev_read(void *buf, __u64 offset, size_t len) in dev_read() 49 int dev_readahead(__u64 offset, size_t len) in dev_readahead() 58 int dev_write(void *buf, __u64 offset, size_t len) in dev_write() 72 int dev_write_dump(void *buf, __u64 offset, size_t len) in dev_write_dump() 81 int dev_fill(void *buf, __u64 offset, size_t len) in dev_fill()
|
/external/apache-http/src/org/apache/http/util/ |
D | ByteArrayBuffer.java | 51 private int len; field in ByteArrayBuffer 67 public void append(final byte[] b, int off, int len) { in append() 95 public void append(final char[] b, int off, int len) { in append() 117 public void append(final CharArrayBuffer b, int off, int len) { in append() 121 append(b.buffer(), off, len); in append() local 152 public void setLength(int len) { in setLength()
|
/external/opencv/cv/src/ |
D | _cvmatrix.h | 45 #define icvCopyVector( src, dst, len ) memcpy( (dst), (src), (len)*sizeof((dst)[0])) argument 46 #define icvSetZero( dst, len ) memset( (dst), 0, (len)*sizeof((dst)[0])) argument 48 #define icvCopyVector_32f( src, len, dst ) memcpy((dst),(src),(len)*sizeof(float)) argument 50 #define icvCopyVector_64d( src, len, dst ) memcpy((dst),(src),(len)*sizeof(double)) argument 55 #define icvCreateVector_32f( len ) (float*)cvAlloc( (len)*sizeof(float)) argument 56 #define icvCreateVector_64d( len ) (double*)cvAlloc( (len)*sizeof(double)) argument 69 #define icvNormVector_32f( src, len ) \ argument 72 #define icvNormVector_64d( src, len ) \ argument 78 #define icvCheckVector_64f( ptr, len ) argument 79 #define icvCheckVector_32f( ptr, len ) argument [all …]
|
/external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/ |
D | MessageFormatter.java | 311 final int len = a.length; in objectArrayAppend() local 327 final int len = a.length; in booleanArrayAppend() local 338 final int len = a.length; in byteArrayAppend() local 349 final int len = a.length; in charArrayAppend() local 360 final int len = a.length; in shortArrayAppend() local 371 final int len = a.length; in intArrayAppend() local 382 final int len = a.length; in longArrayAppend() local 393 final int len = a.length; in floatArrayAppend() local 404 final int len = a.length; in doubleArrayAppend() local
|
/external/wpa_supplicant_8/src/drivers/ |
D | priv_netlink.h | 49 #define NLMSG_ALIGN(len) (((len) + NLMSG_ALIGNTO - 1) & ~(NLMSG_ALIGNTO - 1)) argument 51 #define NLMSG_LENGTH(len) ((len) + NLMSG_ALIGN(sizeof(struct nlmsghdr))) argument 52 #define NLMSG_SPACE(len) NLMSG_ALIGN(NLMSG_LENGTH(len)) argument 54 #define NLMSG_NEXT(nlh,len) ((len) -= NLMSG_ALIGN((nlh)->nlmsg_len), \ argument 57 #define NLMSG_OK(nlh,len) ((len) >= (int) sizeof(struct nlmsghdr) && \ argument 60 #define NLMSG_PAYLOAD(nlh,len) ((nlh)->nlmsg_len - NLMSG_SPACE((len))) argument 63 #define RTA_ALIGN(len) (((len) + RTA_ALIGNTO - 1) & ~(RTA_ALIGNTO - 1)) argument 64 #define RTA_OK(rta,len) \ argument 70 #define RTA_LENGTH(len) (RTA_ALIGN(sizeof(struct rtattr)) + (len)) argument 71 #define RTA_SPACE(len) RTA_ALIGN(RTA_LENGTH(len)) argument
|
/external/wpa_supplicant_8/src/tls/ |
D | x509v3.c | 181 const u8 *buf, size_t len, in x509_parse_algorithm_identifier() 219 static int x509_parse_public_key(const u8 *buf, size_t len, in x509_parse_public_key() 292 static int x509_parse_name(const u8 *buf, size_t len, struct x509_name *name, in x509_parse_name() 499 void x509_name_string(struct x509_name *name, char *buf, size_t len) in x509_name_string() 540 static int x509_parse_time(const u8 *buf, size_t len, u8 asn1_tag, in x509_parse_time() 650 static int x509_parse_validity(const u8 *buf, size_t len, in x509_parse_validity() 725 const u8 *pos, size_t len) in x509_parse_ext_key_usage() 762 const u8 *pos, size_t len) in x509_parse_ext_basic_constraints() 847 const u8 *pos, size_t len) in x509_parse_alt_name_rfc8222() 869 const u8 *pos, size_t len) in x509_parse_alt_name_dns() [all …]
|
D | tlsv1_cred.c | 41 const u8 *buf, size_t len) in tlsv1_add_cert_der() 85 static const u8 * search_tag(const char *tag, const u8 *buf, size_t len) in search_tag() 103 const u8 *buf, size_t len) in tlsv1_add_cert() 161 size_t len; in tlsv1_set_cert_chain() local 224 static struct crypto_private_key * tlsv1_set_key_pem(const u8 *key, size_t len) in tlsv1_set_key_pem() 264 size_t len, in tlsv1_set_key_enc_pem() 292 const u8 *key, size_t len, const char *passwd) in tlsv1_set_key() 333 size_t len; in tlsv1_set_private_key() local 353 const u8 *dh, size_t len) in tlsv1_set_dhparams_der() 431 const u8 *buf, size_t len) in tlsv1_set_dhparams_blob() [all …]
|
/external/libnfc-nci/halimpl/pn54x/log/ |
D | phNxpLog.c | 57 int len = property_get (PROP_NAME_NXPLOG_GLOBAL_LOGLEVEL, valueStr, ""); in phNxpLog_SetGlobalLogLevel() local 80 int len; in phNxpLog_SetHALLogLevel() local 109 int len; in phNxpLog_SetExtnsLogLevel() local 137 int len; in phNxpLog_SetTmlLogLevel() local 165 int len; in phNxpLog_SetDnldLogLevel() local 193 int len; in phNxpLog_SetNciTxLogLevel() local
|
/external/wpa_supplicant_8/src/wps/ |
D | wps_attr_parse.c | 21 u8 id, u8 len, const u8 *pos) in wps_set_vendor_ext_wfa_subelem() 81 u16 len) in wps_parse_vendor_ext_wfa() 101 u16 len) in wps_parse_vendor_ext() 142 const u8 *pos, u16 len) in wps_set_attr() 588 u16 type, len; in wps_parse_msg() local
|
/external/google-breakpad/src/client/linux/minidump_writer/ |
D | line_reader_unittest.cc | 63 unsigned len; in TEST() local 73 unsigned int len; in TEST() local 89 unsigned len; in TEST() local 105 unsigned len; in TEST() local 127 unsigned len; in TEST() local 151 unsigned len; in TEST() local 167 unsigned len; in TEST() local
|
/external/wpa_supplicant_8/src/utils/ |
D | wpabuf.c | 30 static void wpabuf_overflow(const struct wpabuf *buf, size_t len) in wpabuf_overflow() 113 struct wpabuf * wpabuf_alloc(size_t len) in wpabuf_alloc() 135 struct wpabuf * wpabuf_alloc_ext_data(u8 *data, size_t len) in wpabuf_alloc_ext_data() 160 struct wpabuf * wpabuf_alloc_copy(const void *data, size_t len) in wpabuf_alloc_copy() 217 void * wpabuf_put(struct wpabuf *buf, size_t len) in wpabuf_put() 240 size_t len = 0; in wpabuf_concat() local 277 struct wpabuf * wpabuf_zeropad(struct wpabuf *buf, size_t len) in wpabuf_zeropad()
|
/external/libnfc-nci/src/nfc/nci/ |
D | nci_hrcv.c | 49 UINT8 *pp, len, op_code; in nci_proc_core_rsp() local 108 UINT8 *pp, len, op_code; in nci_proc_core_ntf() local 160 UINT8 *pp, len, op_code; in nci_proc_rf_management_rsp() local 226 UINT8 *pp, len, op_code; in nci_proc_rf_management_ntf() local 294 UINT8 *pp, len, op_code; in nci_proc_ee_management_rsp() local 354 UINT8 *pp, len, op_code; in nci_proc_ee_management_ntf() local 437 UINT8 *pp, len, op_code; in nci_proc_prop_rsp() local 464 UINT8 *pp, len, op_code; in nci_proc_prop_ntf() local
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | i915_debug.c | 35 debug(struct debug_stream *stream, const char *name, GLuint len) in debug() 82 bool dump_floats, GLuint len) in debug_prim() 111 debug_program(struct debug_stream *stream, const char *name, GLuint len) in debug_program() 133 debug_chain(struct debug_stream *stream, const char *name, GLuint len) in debug_chain() 162 GLuint i, len; in debug_variable_length_prim() local 206 debug_load_immediate(struct debug_stream *stream, const char *name, GLuint len) in debug_load_immediate() 312 debug_load_indirect(struct debug_stream *stream, const char *name, GLuint len) in debug_load_indirect() 434 debug_copy_blit(struct debug_stream *stream, const char *name, GLuint len) in debug_copy_blit() 456 debug_color_blit(struct debug_stream *stream, const char *name, GLuint len) in debug_color_blit() 476 debug_modes4(struct debug_stream *stream, const char *name, GLuint len) in debug_modes4() [all …]
|
/external/skia/src/core/ |
D | SkWriter32.cpp | 17 size_t len = this->readU32(); in readString() local 31 size_t len; in readIntoString() local 39 void SkWriter32::writeString(const char str[], size_t len) { in writeString() 56 size_t SkWriter32::WriteStringSize(const char* str, size_t len) { in WriteStringSize()
|
/external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/ |
D | StringUtil.java | 38 int len = totalLen - numStr.length(); in padNum() local 55 int len = totalLen - numStr.length(); in padNumZero() local 72 int len = totalLen - numStr.length(); in padNum() local 89 int len = totalLen - numStr.length(); in padNumZero() local 108 int len = wholeLen - dpLoc; in padNum() local 135 int len = wholeLen - dpLoc; in padNumZero() local 162 int len = wholeLen - dpLoc; in padNum() local 189 int len = wholeLen - dpLoc; in padNumZero() local
|
/external/openssh/ |
D | buffer.c | 30 buffer_append(Buffer *buffer, const void *data, u_int len) in buffer_append() 39 buffer_append_space(Buffer *buffer, u_int len) in buffer_append_space() 50 buffer_check_alloc(Buffer *buffer, u_int len) in buffer_check_alloc() 62 buffer_get_ret(Buffer *buffer, void *buf, u_int len) in buffer_get_ret() 74 buffer_get(Buffer *buffer, void *buf, u_int len) in buffer_get()
|
/external/ipsec-tools/src/racoon/ |
D | privsep.c | 80 privsep_send(sock, buf, len) in privsep_send() argument 109 size_t len; local 286 size_t len; in privsep_init() local 708 size_t len; local 788 size_t len; local 896 size_t len; local 951 size_t len; local 998 size_t len; local 1127 size_t len; local 1171 size_t len; local [all …]
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
D | RegisterSpecSet.java | 62 int len = specs.length; in equals() local 87 int len = specs.length; in hashCode() local 102 int len = specs.length; in toString() local 144 int len = specs.length; in size() local 325 int len = Math.min(thisLen, otherSpecs.length); in intersect() local 357 int len = specs.length; in withOffset() local 382 int len = specs.length; in mutableCopy() local
|
/external/webrtc/src/common_audio/signal_processing/ |
D | resample_by_2_internal.c | 31 void WebRtcSpl_DownBy2IntToShort(WebRtc_Word32 *in, WebRtc_Word32 len, WebRtc_Word16 *out, in WebRtcSpl_DownBy2IntToShort() 125 WebRtc_Word32 len, in WebRtcSpl_DownBy2ShortToInt() 200 void WebRtcSpl_UpBy2ShortToInt(const WebRtc_Word16 *in, WebRtc_Word32 len, WebRtc_Word32 *out, in WebRtcSpl_UpBy2ShortToInt() 270 void WebRtcSpl_UpBy2IntToInt(const WebRtc_Word32 *in, WebRtc_Word32 len, WebRtc_Word32 *out, in WebRtcSpl_UpBy2IntToInt() 340 void WebRtcSpl_UpBy2IntToShort(const WebRtc_Word32 *in, WebRtc_Word32 len, WebRtc_Word16 *out, in WebRtcSpl_UpBy2IntToShort() 419 void WebRtcSpl_LPBy2ShortToInt(const WebRtc_Word16* in, WebRtc_Word32 len, WebRtc_Word32* out, in WebRtcSpl_LPBy2ShortToInt() 552 void WebRtcSpl_LPBy2IntToInt(const WebRtc_Word32* in, WebRtc_Word32 len, WebRtc_Word32* out, in WebRtcSpl_LPBy2IntToInt()
|