/external/wpa_supplicant_8/src/crypto/ |
D | aes-gcm.c | 106 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 …]
|
D | fips_prf_internal.c | 22 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()
|
D | fips_prf_openssl.c | 31 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/chromium_org/third_party/mesa/src/src/mesa/main/ |
D | accum.c | 190 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/mesa3d/src/mesa/main/ |
D | accum.c | 190 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/openssl/openssl/apps/ |
D | engine.c | 202 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/openssl/apps/ |
D | engine.c | 202 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/ |
D | TextRun.h | 65 …TextRun(const LChar* c, unsigned len, float xpos = 0, float expansion = 0, ExpansionBehavior expan… 68 , m_xpos(xpos) in m_charactersLength() 85 …TextRun(const UChar* c, unsigned len, float xpos = 0, float expansion = 0, ExpansionBehavior expan… 88 , m_xpos(xpos) in m_charactersLength() 105 …TextRun(const String& string, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBeha… 108 , m_xpos(xpos) 133 …TextRun(const StringView& string, float xpos = 0, float expansion = 0, ExpansionBehavior expansion… 136 , m_xpos(xpos)
|
/external/skia/src/core/ |
D | SkBitmapProcState_matrixProcs.cpp | 334 int xpos = nofilter_trans_preamble(s, &xy, x, y); in clampx_nofilter_trans() local 346 if (xpos < 0) { in clampx_nofilter_trans() 347 n = -xpos; in clampx_nofilter_trans() 357 xpos = 0; in clampx_nofilter_trans() 361 if (xpos < width) { in clampx_nofilter_trans() 362 n = width - xpos; in clampx_nofilter_trans() 366 fill_sequential(xptr, xpos, n); in clampx_nofilter_trans() 382 int xpos = nofilter_trans_preamble(s, &xy, x, y); in repeatx_nofilter_trans() local 391 int start = sk_int_mod(xpos, width); in repeatx_nofilter_trans() 422 int xpos = nofilter_trans_preamble(s, &xy, x, y); in mirrorx_nofilter_trans() local [all …]
|
D | SkBBoxRecord.cpp | 200 void SkBBoxRecord::onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[], in onDrawPosTextH() argument 219 if (xpos[i] < bbox.fLeft) { in onDrawPosTextH() 220 bbox.fLeft = xpos[i]; in onDrawPosTextH() 222 if (xpos[i] > bbox.fRight) { in onDrawPosTextH() 223 bbox.fRight = xpos[i]; in onDrawPosTextH() 241 drawPosTextHImpl(text, byteLength, xpos, constY, paint, flatPaintData); in onDrawPosTextH()
|
/external/chromium_org/third_party/skia/src/core/ |
D | SkBitmapProcState_matrixProcs.cpp | 334 int xpos = nofilter_trans_preamble(s, &xy, x, y); in clampx_nofilter_trans() local 346 if (xpos < 0) { in clampx_nofilter_trans() 347 n = -xpos; in clampx_nofilter_trans() 357 xpos = 0; in clampx_nofilter_trans() 361 if (xpos < width) { in clampx_nofilter_trans() 362 n = width - xpos; in clampx_nofilter_trans() 366 fill_sequential(xptr, xpos, n); in clampx_nofilter_trans() 382 int xpos = nofilter_trans_preamble(s, &xy, x, y); in repeatx_nofilter_trans() local 391 int start = sk_int_mod(xpos, width); in repeatx_nofilter_trans() 422 int xpos = nofilter_trans_preamble(s, &xy, x, y); in mirrorx_nofilter_trans() local [all …]
|
D | SkBBoxRecord.cpp | 200 void SkBBoxRecord::onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[], in onDrawPosTextH() argument 219 if (xpos[i] < bbox.fLeft) { in onDrawPosTextH() 220 bbox.fLeft = xpos[i]; in onDrawPosTextH() 222 if (xpos[i] > bbox.fRight) { in onDrawPosTextH() 223 bbox.fRight = xpos[i]; in onDrawPosTextH() 241 drawPosTextHImpl(text, byteLength, xpos, constY, paint, flatPaintData); in onDrawPosTextH()
|
D | SkTextToPathIter.h | 33 bool next(const SkPath** path, SkScalar* xpos);
|
/external/chromium_org/ui/events/gesture_detection/ |
D | velocity_tracker.cc | 171 float xpos, xvel, xaccel; member 181 float xpos, 185 float xpos, 735 float xpos, in InitState() argument 739 state.xpos = xpos; in InitState() 750 float xpos, in UpdateState() argument 761 float xvel = (xpos - state.xpos) / dt; in UpdateState() 787 state.xpos = xpos; in UpdateState() 797 out_estimator->xcoeff[0] = state.xpos; in PopulateEstimator()
|
/external/skia/tests/ |
D | RecordDrawTest.cpp | 22 SkAutoTMalloc<SkScalar> xpos(len); in draw_pos_text_h() local 24 xpos[i] = (SkScalar)i; in draw_pos_text_h() 26 canvas->drawPosTextH(text, len, xpos, y, SkPaint()); in draw_pos_text_h()
|
/external/chromium_org/third_party/skia/tests/ |
D | RecordDrawTest.cpp | 22 SkAutoTMalloc<SkScalar> xpos(len); in draw_pos_text_h() local 24 xpos[i] = (SkScalar)i; in draw_pos_text_h() 26 canvas->drawPosTextH(text, len, xpos, y, SkPaint()); in draw_pos_text_h()
|
/external/regex-re2/util/ |
D | stringpiece.cc | 48 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/ |
D | stringpiece.cc | 48 const size_type xpos = result - ptr_; in find() local 49 return xpos + s.length_ <= length_ ? xpos : npos; in find()
|
/external/libhevc/decoder/ |
D | ihevcd_decode.c | 476 WORD32 xpos = ps_codec->i4_disp_wd - 32 - LOGO_WD; in ihevcd_decode() local 482 if(xpos < 0) in ihevcd_decode() 483 xpos = 0; in ihevcd_decode() 488 xpos, in ihevcd_decode() 817 WORD32 xpos = ps_codec->i4_disp_wd - 32 - LOGO_WD; in ihevcd_decode() local 823 if(xpos < 0) in ihevcd_decode() 824 xpos = 0; in ihevcd_decode() 829 xpos, in ihevcd_decode()
|
/external/pdfium/core/src/fpdftext/ |
D | fpdf_text.cpp | 489 CTextColumn* CTextPage::FindColumn(FX_FLOAT xpos) in FindColumn() argument 493 if (pColumn->m_AvgPos < xpos + 1 && pColumn->m_AvgPos > xpos - 1) { in FindColumn() 651 int xpos; in WriteOutput() local 653 xpos = (int)((pText->m_pColumn->m_AvgPos - leftx) * iTextWidth / pagewidth + 0.5); in WriteOutput() 654 xpos -= pText->m_Text.GetLength(); in WriteOutput() 656 xpos = (int)((pText->m_Left - leftx) * iTextWidth / pagewidth + 0.5); in WriteOutput() 658 if (xpos <= lastpos) { in WriteOutput() 659 xpos = lastpos + 1; in WriteOutput() 661 for (int j = lastpos + 1; j < xpos; j ++) { in WriteOutput() 668 lastpos = xpos + pText->m_Text.GetLength(); in WriteOutput()
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/ |
D | string_piece.cc | 49 const size_type xpos = result - ptr_; in find() local 50 return xpos + s.length_ <= length_ ? xpos : npos; in find()
|
/external/skia/samplecode/ |
D | SampleText.cpp | 153 SkScalar xpos = x; in DrawTheText() local 156 pts[i].set(xpos, y), xpos += paint.getTextSize(); in DrawTheText()
|
/external/chromium_org/third_party/skia/samplecode/ |
D | SampleText.cpp | 153 SkScalar xpos = x; in DrawTheText() local 156 pts[i].set(xpos, y), xpos += paint.getTextSize(); in DrawTheText()
|
/external/chromium_org/third_party/skia/third_party/harfbuzz/contrib/ |
D | harfbuzz-freetype.c | 68 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/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ |
D | SchedGui.py | 150 (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)
|