/external/stlport/src/ |
D | time_facets.cpp | 217 char _buf[64]; in __write_formatted_timeT() local 243 _STLP_SPRINTF(_buf, (modifier != '#') ? "%.2ld" : "%ld", (long)t->tm_mday); in __write_formatted_timeT() 244 __append(buf, _buf, ((long)t->tm_mday < 10L && modifier == '#') ? _buf + 1 : _buf + 2, ct); in __write_formatted_timeT() 248 _STLP_SPRINTF(_buf, "%2ld", (long)t->tm_mday); in __write_formatted_timeT() 249 __append(buf, _buf, _buf + 2, ct); in __write_formatted_timeT() 253 _STLP_SPRINTF(_buf, (modifier != '#') ? "%.2ld" : "%ld", (long)t->tm_hour); in __write_formatted_timeT() 254 __append(buf, _buf, ((long)t->tm_hour < 10L && modifier == '#') ? _buf + 1 : _buf + 2, ct); in __write_formatted_timeT() 258 _STLP_SPRINTF(_buf, (modifier != '#') ? "%.2ld" : "%ld", (long)__hour12(t->tm_hour)); in __write_formatted_timeT() 259 …__append(buf, _buf, ((long)__hour12(t->tm_hour) < 10L && modifier == '#') ? _buf + 1 : _buf + 2, c… in __write_formatted_timeT() 263 _bend = __write_integer(_buf, 0, (long)((long)t->tm_yday + 1)); in __write_formatted_timeT() [all …]
|
/external/chromium/third_party/libevent/ |
D | event_tagging.c | 72 static struct evbuffer *_buf; /* not thread safe */ variable 77 if (_buf != NULL) in evtag_init() 80 if ((_buf = evbuffer_new()) == NULL) in evtag_init() 200 evbuffer_drain(_buf, EVBUFFER_LENGTH(_buf)); in evtag_marshal_int() 201 encode_int(_buf, integer); in evtag_marshal_int() 204 encode_int(evbuf, EVBUFFER_LENGTH(_buf)); in evtag_marshal_int() 205 evbuffer_add_buffer(evbuf, _buf); in evtag_marshal_int() 217 evbuffer_drain(_buf, EVBUFFER_LENGTH(_buf)); in evtag_marshal_timeval() 219 encode_int(_buf, tv->tv_sec); in evtag_marshal_timeval() 220 encode_int(_buf, tv->tv_usec); in evtag_marshal_timeval() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
D | BEROctetStringGenerator.java | 42 private byte[] _buf; field in BEROctetStringGenerator.BufferedBEROctetStream 49 _buf = buf; in BufferedBEROctetStream() 58 _buf[_off++] = (byte)b; in write() 60 if (_off == _buf.length) in write() 62 DEROctetString.encode(_derOut, _buf); in write() 71 int numToCopy = Math.min(len, _buf.length - _off); in write() 72 System.arraycopy(b, off, _buf, _off, numToCopy); in write() 75 if (_off < _buf.length) in write() 80 DEROctetString.encode(_derOut, _buf); in write() 94 System.arraycopy(_buf, 0, bytes, 0, _off); in close()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
D | PKIXPolicyNode.java | 114 StringBuffer _buf = new StringBuffer(); in toString() local 115 _buf.append(_indent); in toString() 116 _buf.append(validPolicy); in toString() 117 _buf.append(" {\n"); in toString() 121 _buf.append(((PKIXPolicyNode)children.get(i)).toString(_indent + " ")); in toString() 124 _buf.append(_indent); in toString() 125 _buf.append("}\n"); in toString() 126 return _buf.toString(); in toString()
|
/external/chromium/third_party/libevent/test/ |
D | regress.gen.c | 407 struct evbuffer *_buf = evbuffer_new(); in evtag_marshal_msg() local 408 assert(_buf != NULL); in evtag_marshal_msg() 409 evbuffer_drain(_buf, -1); in evtag_marshal_msg() 410 msg_marshal(_buf, msg); in evtag_marshal_msg() 411 evtag_marshal(evbuf, tag, EVBUFFER_DATA(_buf), EVBUFFER_LENGTH(_buf)); in evtag_marshal_msg() 412 evbuffer_free(_buf); in evtag_marshal_msg() 633 struct evbuffer *_buf = evbuffer_new(); in evtag_marshal_kill() local 634 assert(_buf != NULL); in evtag_marshal_kill() 635 evbuffer_drain(_buf, -1); in evtag_marshal_kill() 636 kill_marshal(_buf, msg); in evtag_marshal_kill() [all …]
|
/external/eigen/test/ |
D | unalignedassert.cpp | 71 size_t _buf = reinterpret_cast<size_t>(buf); in construct_at_boundary() local 72 _buf += (16 - (_buf % 16)); // make 16-byte aligned in construct_at_boundary() 73 _buf += boundary; // make exact boundary-aligned in construct_at_boundary() 74 T *x = ::new(reinterpret_cast<void*>(_buf)) T; in construct_at_boundary()
|
/external/stlport/test/unit/ |
D | full_streambuf.h | 23 { return _buf; } in str() 36 _buf += traits_type::to_char_type(c); in overflow() 43 std::string _buf; variable
|
/external/wpa_supplicant_8/src/utils/ |
D | wpabuf.c | 47 int wpabuf_resize(struct wpabuf **_buf, size_t add_len) in wpabuf_resize() argument 49 struct wpabuf *buf = *_buf; in wpabuf_resize() 55 *_buf = wpabuf_alloc(add_len); in wpabuf_resize() 56 return *_buf == NULL ? -1 : 0; in wpabuf_resize() 99 *_buf = buf; in wpabuf_resize()
|
/external/openssh/openbsd-compat/ |
D | bsd-arc4random.c | 89 arc4random_buf(void *_buf, size_t n) in arc4random_buf() argument 93 char *buf = (char *)_buf; in arc4random_buf()
|
/external/openssl/crypto/des/ |
D | enc_writ.c | 80 int DES_enc_write(int fd, const void *_buf, int len, in DES_enc_write() argument 90 const unsigned char *buf=_buf; in DES_enc_write()
|
/external/valgrind/main/coregrind/m_demangle/ |
D | vg_libciface.h | 54 #define sprintf(_buf,_fmt,_args...) VG_(sprintf)((_buf),(_fmt),(_args)) argument
|
/external/opencv/cv/src/ |
D | cvtemplmatch.cpp | 205 void* _buf = buf[thread_idx]; in icvCrossCorr() local 234 planes[i] = cvInitMatHeader( &temp, y2 - y1, x2 - x1, depth, _buf ); in icvCrossCorr() 269 corr_depth, _buf ); in icvCrossCorr() 284 corr_depth, _buf ); in icvCrossCorr()
|
D | cvimgwarp.cpp | 240 worktype* _buf = k == 0 ? buf0 : buf1; \ 255 _buf[dx] = mul_one_macro(t) + fx*(_src[sx+cn] - t); \ 259 _buf[dx] = mul_one_macro(_src[xofs[dx].idx]); \
|
/external/bison/m4/ |
D | fpending.m4 | 62 'fp->_ptr - fp->_buf' \
|
/external/giflib/ |
D | dgif_lib.c | 46 #define READ(_gif,_buf,_len) \ argument 48 ((GifFilePrivateType*)_gif->Private)->Read(_gif,_buf,_len) : \ 49 fread(_buf,1,_len,((GifFilePrivateType*)_gif->Private)->File))
|
/external/openssl/ssl/ |
D | s2_pkt.c | 417 int ssl2_write(SSL *s, const void *_buf, int len) in ssl2_write() argument 419 const unsigned char *buf=_buf; in ssl2_write()
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | config_winreg.c | 589 char _buf[WPS_DEV_TYPE_BUFSIZE], *buf; in wpa_config_write_global() local 591 _buf, sizeof(_buf)); in wpa_config_write_global()
|
D | config_file.c | 862 char _buf[WPS_DEV_TYPE_BUFSIZE], *buf; in wpa_config_write_global() local 864 _buf, sizeof(_buf)); in wpa_config_write_global()
|
/external/wpa_supplicant_8/src/rsn_supp/ |
D | wpa.c | 398 const u8 *_buf = (const u8 *) (key + 1); in wpa_supplicant_process_1_of_4() local 400 wpa_hexdump(MSG_DEBUG, "RSN: msg 1/4 key data", _buf, len); in wpa_supplicant_process_1_of_4() 401 if (wpa_supplicant_parse_ies(_buf, len, &ie) < 0) in wpa_supplicant_process_1_of_4()
|
/external/qemu/ |
D | qemu-char.c | 552 int send_all(int fd, const void *_buf, int len1) in send_all() argument 555 const uint8_t *buf = _buf; in send_all()
|
/external/e2fsprogs/doc/ |
D | libext2fs.texinfo | 684 …_filsys @var{fs}, ext2_ino_t @var{ino}, int @var{flags}, char *@var{block}_buf, int (*func)(ext2_f…
|