Searched refs:tempbuf (Results 1 – 4 of 4) sorted by relevance
/external/dropbear/ |
D | packet.c | 319 unsigned char tempbuf[MAX_MAC_LEN]; in checkmac() local 338 STORE32H(ses.recvseq, tempbuf); in checkmac() 339 if (hmac_process(&hmac, tempbuf, 4) != CRYPT_OK) { in checkmac() 349 bufsize = sizeof(tempbuf); in checkmac() 350 if (hmac_done(&hmac, tempbuf, &bufsize) != CRYPT_OK) { in checkmac() 355 if (memcmp(tempbuf, buf_getptr(macbuf, macsize), macsize) != 0) { in checkmac() 524 unsigned char tempbuf[MAX_MAC_LEN]; in writemac() local 555 bufsize = sizeof(tempbuf); in writemac() 556 if (hmac_done(&hmac, tempbuf, &bufsize) in writemac() 560 buf_putbytes(outputbuffer, tempbuf, macsize); in writemac()
|
/external/openssl/crypto/rand/ |
D | rand_egd.c | 143 unsigned char egdbuf[2], tempbuf[255], *retrievebuf; in RAND_query_egd_bytes() local 246 retrievebuf = tempbuf; in RAND_query_egd_bytes() 276 RAND_seed(tempbuf, egdbuf[0]); in RAND_query_egd_bytes()
|
/external/stlport/etc/ |
D | msvcincl.dat | 169 tempbuf.h
|
/external/opencv/cxcore/src/ |
D | cxmatmul.cpp | 2382 CvSize size, avgtype* tempbuf ) \ 2389 *tempbuf++ = load_macro(vec[x]) - avg[x]; \ 2390 tempbuf -= dstsize; \ 2395 double ty = tempbuf[y]; \ 2398 double t0 = dst[x] + ty*tempbuf[x]; \ 2399 double t1 = dst[x+1] + ty*tempbuf[x+1]; \ 2402 t0 = dst[x+2] + ty*tempbuf[x+2]; \ 2403 t1 = dst[x+3] + ty*tempbuf[x+3]; \ 2408 dst[x] = (avgtype)(dst[x] + ty*tempbuf[x]); \
|