Searched refs:xpos (Results 1 - 25 of 78) sorted by relevance

1234

/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dfips_prf_internal.c22 u8 *xpos = x; local
53 os_memcpy(xpos, _t, 20);
58 carry += xkey[k] + xpos[k];
63 xpos += SHA1_MAC_LEN;
H A Dfips_prf_openssl.c53 u8 *xpos = x; local
84 os_memcpy(xpos, _t, 20);
89 carry += xkey[k] + xpos[k];
94 xpos += 20;
H A Daes-gcm.c106 const u8 *xpos = x; local
113 xor_block(y, xpos);
114 xpos += 16;
123 if (x + xlen > xpos) {
125 size_t last = x + xlen - xpos;
126 os_memcpy(tmp, xpos, last);
147 const u8 *xpos = x; local
159 xor_block(ypos, xpos);
160 xpos += AES_BLOCK_SIZE;
165 last = x + xlen - xpos;
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Dfips_prf_internal.c22 u8 *xpos = x; local
53 os_memcpy(xpos, _t, 20);
58 carry += xkey[k] + xpos[k];
63 xpos += SHA1_MAC_LEN;
H A Dfips_prf_openssl.c53 u8 *xpos = x; local
84 os_memcpy(xpos, _t, 20);
89 carry += xkey[k] + xpos[k];
94 xpos += 20;
H A Daes-gcm.c106 const u8 *xpos = x; local
113 xor_block(y, xpos);
114 xpos += 16;
123 if (x + xlen > xpos) {
125 size_t last = x + xlen - xpos;
126 os_memcpy(tmp, xpos, last);
147 const u8 *xpos = x; local
159 xor_block(ypos, xpos);
160 xpos += AES_BLOCK_SIZE;
165 last = x + xlen - xpos;
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dfips_prf_internal.c22 u8 *xpos = x; local
53 os_memcpy(xpos, _t, 20);
58 carry += xkey[k] + xpos[k];
63 xpos += SHA1_MAC_LEN;
H A Dfips_prf_openssl.c53 u8 *xpos = x; local
84 os_memcpy(xpos, _t, 20);
89 carry += xkey[k] + xpos[k];
94 xpos += 20;
H A Daes-gcm.c106 const u8 *xpos = x; local
113 xor_block(y, xpos);
114 xpos += 16;
123 if (x + xlen > xpos) {
125 size_t last = x + xlen - xpos;
126 os_memcpy(tmp, xpos, last);
147 const u8 *xpos = x; local
159 xor_block(ypos, xpos);
160 xpos += AES_BLOCK_SIZE;
165 last = x + xlen - xpos;
[all...]
/external/skia/tests/
H A DSVGDeviceTest.cpp54 SkAutoTMalloc<SkScalar> xpos(xposCount);
55 SkParse::FindScalars(x, xpos.get(), xposCount);
57 REPORTER_ASSERT(reporter, xpos[0] == offset.x());
60 REPORTER_ASSERT(reporter, xpos[i] == SkIntToScalar(expected[i]));
101 SkAutoTMalloc<SkScalar> xpos(len);
103 xpos[i] = SkIntToScalar(txt[i]);
109 svgCanvas->drawPosTextH(txt, len, xpos, offset.y(), paint);
/external/mesa3d/src/mesa/main/
H A Daccum.c190 GLint xpos, GLint ypos, GLint width, GLint height,
200 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height,
248 GLint xpos, GLint ypos, GLint width, GLint height,
270 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height,
278 ctx->Driver.MapRenderbuffer(ctx, colorRb, xpos, ypos, width, height,
342 GLint xpos, GLint ypos, GLint width, GLint height)
351 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height,
372 ctx->Driver.MapRenderbuffer(ctx, colorRb, xpos, ypos, width, height,
455 GLint xpos, ypos, width, height; local
465 xpos
189 accum_scale_or_bias(struct gl_context *ctx, GLfloat value, GLint xpos, GLint ypos, GLint width, GLint height, GLboolean bias) argument
247 accum_or_load(struct gl_context *ctx, GLfloat value, GLint xpos, GLint ypos, GLint width, GLint height, GLboolean load) argument
341 accum_return(struct gl_context *ctx, GLfloat value, GLint xpos, GLint ypos, GLint width, GLint height) argument
[all...]
/external/regex-re2/util/
H A Dstringpiece.cc48 const size_type xpos = result - ptr_; local
49 return xpos + s.length_ <= length_ ? xpos : npos;
/external/skia/samplecode/
H A DSampleText.cpp49 SkScalar xpos = x; local
52 pts[i].set(xpos, y), xpos += paint.getTextSize(); local
/external/skia/src/core/
H A DSkBitmapProcState_matrixProcs.cpp342 int xpos = nofilter_trans_preamble(s, &xy, x, y);
354 if (xpos < 0) {
355 n = -xpos;
365 xpos = 0;
369 if (xpos < width) {
370 n = width - xpos;
374 fill_sequential(xptr, xpos, n);
390 int xpos = nofilter_trans_preamble(s, &xy, x, y);
399 int start = sk_int_mod(xpos, width);
430 int xpos
[all...]
H A DSkTextToPathIter.h30 SkScalar fXPos; // accumulated xpos, returned in next
48 bool next(const SkPath** path, SkScalar* xpos);
H A DSkPicturePlayback.cpp362 const SkScalar* xpos = (const SkScalar*)reader->skip(xCount * sizeof(SkScalar)); local
363 canvas->drawPosTextH(text.text(), text.length(), xpos, constY, paint);
370 const SkScalar* xpos = (const SkScalar*)reader->skip((3 + xCount) * sizeof(SkScalar)); local
371 const SkScalar top = *xpos++;
372 const SkScalar bottom = *xpos++;
373 const SkScalar constY = *xpos++;
375 canvas->drawPosTextH(text.text(), text.length(), xpos, constY, paint);
/external/libhevc/decoder/
H A Dihevcd_decode.c495 WORD32 xpos = ps_codec->i4_disp_wd - 32 - LOGO_WD; local
501 if(xpos < 0)
502 xpos = 0;
507 xpos,
871 WORD32 xpos = ps_codec->i4_disp_wd - 32 - LOGO_WD; local
877 if(xpos < 0)
878 xpos = 0;
883 xpos,
/external/pdfium/core/src/fpdftext/
H A Dtxtproc.h77 CTextColumn* FindColumn(FX_FLOAT xpos);
H A Dfpdf_text.cpp485 CTextColumn* CTextPage::FindColumn(FX_FLOAT xpos) { argument
488 if (pColumn->m_AvgPos < xpos + 1 && pColumn->m_AvgPos > xpos - 1) {
645 int xpos; local
647 xpos =
650 xpos -= pText->m_Text.GetLength();
652 xpos = (int)((pText->m_Left - leftx) * iTextWidth / pagewidth + 0.5);
654 if (xpos <= lastpos) {
655 xpos = lastpos + 1;
657 for (int j = lastpos + 1; j < xpos;
[all...]
/external/toybox/toys/posix/
H A Dls.c231 unsigned columns, unsigned *xpos)
238 *xpos = ul % columns;
250 *xpos = columns;
259 *xpos = ul % columns;
260 return (*xpos*height) + (ul/columns);
264 *xpos = ul % (columns-1);
266 return (*xpos*height) + widecols + (ul/(columns-1));
230 next_column(unsigned long ul, unsigned long dtlen, unsigned columns, unsigned *xpos) argument
/external/jmonkeyengine/engine/src/test/jme3test/batching/
H A DTestBatchNodeCluster.java193 int xpos = xPosition.get(xPosition.size() - 1);
206 if (xpos >= lineLength * 2) {
314 float xpos = 0; field in class:TestBatchNodeCluster
/external/kernel-headers/original/uapi/linux/dvb/
H A Dvideo.h176 __u32 xpos; /* 23-22 button color number */ member in struct:video_highlight
/external/skia/include/utils/
H A DSkLuaCanvas.h36 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
H A DSkPaintFilterCanvas.h94 void onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
/external/libjpeg-turbo/
H A Djccoefct.c149 JDIMENSION ypos, xpos; local
171 xpos = MCU_col_num * compptr->MCU_sample_width;
179 ypos, xpos, (JDIMENSION) blockcnt);

Completed in 467 milliseconds

1234