Home
last modified time | relevance | path

Searched refs:xpos (Results 1 – 25 of 99) sorted by relevance

1234

/external/wpa_supplicant_8/src/crypto/
Daes-gcm.c106 const u8 *xpos = x; in ghash() local
113 xor_block(y, xpos); in ghash()
114 xpos += 16; in ghash()
123 if (x + xlen > xpos) { in ghash()
125 size_t last = x + xlen - xpos; in ghash()
126 os_memcpy(tmp, xpos, last); in ghash()
147 const u8 *xpos = x; in aes_gctr() local
159 xor_block(ypos, xpos); in aes_gctr()
160 xpos += AES_BLOCK_SIZE; in aes_gctr()
165 last = x + xlen - xpos; in aes_gctr()
[all …]
Dfips_prf_internal.c22 u8 *xpos = x; in fips186_2_prf() local
53 os_memcpy(xpos, _t, 20); in fips186_2_prf()
58 carry += xkey[k] + xpos[k]; in fips186_2_prf()
63 xpos += SHA1_MAC_LEN; in fips186_2_prf()
Dfips_prf_openssl.c31 u8 *xpos = x; in fips186_2_prf() local
62 os_memcpy(xpos, _t, 20); in fips186_2_prf()
67 carry += xkey[k] + xpos[k]; in fips186_2_prf()
72 xpos += 20; in fips186_2_prf()
/external/grub/stage2/
Dchar_io.c311 int xpos, lpos, c, section; in real_get_cmdline() local
343 else if (xpos - count < 1) in real_get_cmdline()
347 xpos -= count; in real_get_cmdline()
357 gotoxy (xpos, getxy () & 0xFF); in real_get_cmdline()
367 if (xpos + count >= CMDLINE_WIDTH) in real_get_cmdline()
371 xpos += count; in real_get_cmdline()
386 gotoxy (xpos, getxy () & 0xFF); in real_get_cmdline()
396 int pos = xpos; in real_get_cmdline()
435 offset = xpos - plen; in real_get_cmdline()
438 xpos = lpos + plen; in real_get_cmdline()
[all …]
/external/grub/docs/
Dkernel.c37 static int xpos; variable
166 xpos = 0; in cls()
223 xpos = 0; in putchar()
230 *(video + (xpos + ypos * COLUMNS) * 2) = c & 0xFF; in putchar()
231 *(video + (xpos + ypos * COLUMNS) * 2 + 1) = ATTRIBUTE; in putchar()
233 xpos++; in putchar()
234 if (xpos >= COLUMNS) in putchar()
Dkernel.c.texi37 static int xpos;
166 xpos = 0;
223 xpos = 0;
230 *(video + (xpos + ypos * COLUMNS) * 2) = c & 0xFF;
231 *(video + (xpos + ypos * COLUMNS) * 2 + 1) = ATTRIBUTE;
233 xpos++;
234 if (xpos >= COLUMNS)
/external/mesa3d/src/mesa/main/
Daccum.c190 GLint xpos, GLint ypos, GLint width, GLint height, in accum_scale_or_bias() argument
200 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height, in accum_scale_or_bias()
248 GLint xpos, GLint ypos, GLint width, GLint height, in accum_or_load() argument
270 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height, in accum_or_load()
278 ctx->Driver.MapRenderbuffer(ctx, colorRb, xpos, ypos, width, height, in accum_or_load()
342 GLint xpos, GLint ypos, GLint width, GLint height) in accum_return() argument
351 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height, in accum_return()
372 ctx->Driver.MapRenderbuffer(ctx, colorRb, xpos, ypos, width, height, in accum_return()
455 GLint xpos, ypos, width, height; in _mesa_accum() local
465 xpos = ctx->DrawBuffer->_Xmin; in _mesa_accum()
[all …]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
Daccum.c190 GLint xpos, GLint ypos, GLint width, GLint height, in accum_scale_or_bias() argument
200 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height, in accum_scale_or_bias()
248 GLint xpos, GLint ypos, GLint width, GLint height, in accum_or_load() argument
270 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height, in accum_or_load()
278 ctx->Driver.MapRenderbuffer(ctx, colorRb, xpos, ypos, width, height, in accum_or_load()
342 GLint xpos, GLint ypos, GLint width, GLint height) in accum_return() argument
351 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height, in accum_return()
372 ctx->Driver.MapRenderbuffer(ctx, colorRb, xpos, ypos, width, height, in accum_return()
455 GLint xpos, ypos, width, height; in _mesa_accum() local
465 xpos = ctx->DrawBuffer->_Xmin; in _mesa_accum()
[all …]
/external/skia/src/core/
DSkBitmapProcState_matrixProcs.cpp272 int xpos = nofilter_trans_preamble(s, &xy, x, y); in clampx_nofilter_trans() local
284 if (xpos < 0) { in clampx_nofilter_trans()
285 n = -xpos; in clampx_nofilter_trans()
295 xpos = 0; in clampx_nofilter_trans()
299 if (xpos < width) { in clampx_nofilter_trans()
300 n = width - xpos; in clampx_nofilter_trans()
304 fill_sequential(xptr, xpos, n); in clampx_nofilter_trans()
320 int xpos = nofilter_trans_preamble(s, &xy, x, y); in repeatx_nofilter_trans() local
329 int start = sk_int_mod(xpos, width); in repeatx_nofilter_trans()
360 int xpos = nofilter_trans_preamble(s, &xy, x, y); in mirrorx_nofilter_trans() local
[all …]
DSkBBoxRecord.cpp180 void SkBBoxRecord::drawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[], in drawPosTextH() argument
199 if (xpos[i] < bbox.fLeft) { in drawPosTextH()
200 bbox.fLeft = xpos[i]; in drawPosTextH()
202 if (xpos[i] > bbox.fRight) { in drawPosTextH()
203 bbox.fRight = xpos[i]; in drawPosTextH()
220 drawPosTextHImpl(text, byteLength, xpos, constY, paint, flatPaintData); in drawPosTextH()
DSkTextToPathIter.h33 bool next(const SkPath** path, SkScalar* xpos);
/external/chromium_org/third_party/skia/src/core/
DSkBitmapProcState_matrixProcs.cpp272 int xpos = nofilter_trans_preamble(s, &xy, x, y); in clampx_nofilter_trans() local
284 if (xpos < 0) { in clampx_nofilter_trans()
285 n = -xpos; in clampx_nofilter_trans()
295 xpos = 0; in clampx_nofilter_trans()
299 if (xpos < width) { in clampx_nofilter_trans()
300 n = width - xpos; in clampx_nofilter_trans()
304 fill_sequential(xptr, xpos, n); in clampx_nofilter_trans()
320 int xpos = nofilter_trans_preamble(s, &xy, x, y); in repeatx_nofilter_trans() local
329 int start = sk_int_mod(xpos, width); in repeatx_nofilter_trans()
360 int xpos = nofilter_trans_preamble(s, &xy, x, y); in mirrorx_nofilter_trans() local
[all …]
DSkBBoxRecord.cpp180 void SkBBoxRecord::drawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[], in drawPosTextH() argument
199 if (xpos[i] < bbox.fLeft) { in drawPosTextH()
200 bbox.fLeft = xpos[i]; in drawPosTextH()
202 if (xpos[i] > bbox.fRight) { in drawPosTextH()
203 bbox.fRight = xpos[i]; in drawPosTextH()
220 drawPosTextHImpl(text, byteLength, xpos, constY, paint, flatPaintData); in drawPosTextH()
DSkTextToPathIter.h33 bool next(const SkPath** path, SkScalar* xpos);
/external/openssl/apps/
Dengine.c202 int xpos = 0; in util_verbose() local
248 if(xpos == 0) in util_verbose()
250 xpos = BIO_puts(bio_out, indent); in util_verbose()
253 xpos += BIO_printf(bio_out, ", "); in util_verbose()
257 if((xpos > (int)strlen(indent)) && in util_verbose()
258 (xpos + (int)strlen(name) > line_wrap)) in util_verbose()
261 xpos = BIO_puts(bio_out, indent); in util_verbose()
263 xpos += BIO_printf(bio_out, "%s", name); in util_verbose()
274 xpos = 0; in util_verbose()
283 if(xpos > 0) in util_verbose()
/external/chromium_org/third_party/openssl/openssl/apps/
Dengine.c202 int xpos = 0; in util_verbose() local
248 if(xpos == 0) in util_verbose()
250 xpos = BIO_puts(bio_out, indent); in util_verbose()
253 xpos += BIO_printf(bio_out, ", "); in util_verbose()
257 if((xpos > (int)strlen(indent)) && in util_verbose()
258 (xpos + (int)strlen(name) > line_wrap)) in util_verbose()
261 xpos = BIO_puts(bio_out, indent); in util_verbose()
263 xpos += BIO_printf(bio_out, "%s", name); in util_verbose()
274 xpos = 0; in util_verbose()
283 if(xpos > 0) in util_verbose()
/external/chromium_org/third_party/WebKit/Source/platform/text/
DTextRun.h63 …TextRun(const LChar* c, unsigned len, float xpos = 0, float expansion = 0, ExpansionBehavior expan…
66 , m_xpos(xpos) in m_charactersLength()
83 …TextRun(const UChar* c, unsigned len, float xpos = 0, float expansion = 0, ExpansionBehavior expan…
86 , m_xpos(xpos) in m_charactersLength()
103 …TextRun(const String& string, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBeha…
106 , m_xpos(xpos)
131 …TextRun(const StringView& string, float xpos = 0, float expansion = 0, ExpansionBehavior expansion…
134 , m_xpos(xpos)
/external/regex-re2/util/
Dstringpiece.cc48 const size_type xpos = result - ptr_; in find() local
49 return xpos + s.length_ <= length_ ? xpos : npos; in find()
/external/chromium_org/third_party/re2/util/
Dstringpiece.cc48 const size_type xpos = result - ptr_; in find() local
49 return xpos + s.length_ <= length_ ? xpos : npos; in find()
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
DSkiaFontWin.cpp78 SkScalar* xpos = storage.get(); in skiaDrawText() local
80 xpos[i] = x; in skiaDrawText()
84 xpos, y, textRect, *paint); in skiaDrawText()
/external/chromium/base/
Dstring_piece.cc43 const size_type xpos = result - ptr_; in find() local
44 return xpos + s.length_ <= length_ ? xpos : npos; in find()
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/
Dstring_piece.cc49 const size_type xpos = result - ptr_; in find() local
50 return xpos + s.length_ <= length_ ? xpos : npos; in find()
/external/harfbuzz/contrib/
Dharfbuzz-freetype.c68 hb_uint32 point, HB_Fixed *xpos, HB_Fixed *ypos, in hb_freetype_outline_point_get() argument
88 *xpos = face->glyph->outline.points[point].x; in hb_freetype_outline_point_get()
/external/chromium_org/base/strings/
Dstring_piece.cc62 const StringPiece::size_type xpos = in find() local
64 return xpos + s.size() <= self.size() ? xpos : StringPiece::npos; in find()
/external/linux-tools-perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
DSchedGui.py150 (xpos, ypos) = self.scroll.GetViewStart()
151 xpos = self.us_to_px(x) / self.scroll_scale
152 …scale, self.width_virtual / self.scroll_scale, self.height_virtual / self.scroll_scale, xpos, ypos)

1234