/external/grub/stage2/ |
D | char_io.c | 311 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/ |
D | kernel.c | 37 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()
|
D | kernel.c.texi | 37 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/wpa_supplicant_8/src/crypto/ |
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 61 os_memcpy(xpos, _t, 20); in fips186_2_prf() 66 carry += xkey[k] + xpos[k]; in fips186_2_prf() 71 xpos += 20; in fips186_2_prf()
|
/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/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 …]
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | TextRun.h | 45 …TextRun(const UChar* c, int len, bool allowTabs = false, float xpos = 0, float expansion = 0, Expa… 48 , m_xpos(xpos) in m_characters() 65 …TextRun(const String& s, bool allowTabs = false, float xpos = 0, float expansion = 0, ExpansionBeh… 68 , m_xpos(xpos)
|
/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/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
D | crypto_openssl.c | 110 u8 *xpos = x; in fips186_2_prf() local 140 os_memcpy(xpos, _t, 20); in fips186_2_prf() 145 carry += xkey[k] + xpos[k]; in fips186_2_prf() 150 xpos += 20; in fips186_2_prf()
|
D | sha1.c | 422 u8 *xpos = x; in fips186_2_prf() local 452 os_memcpy(xpos, _t, 20); in fips186_2_prf() 457 carry += xkey[k] + xpos[k]; in fips186_2_prf() 462 xpos += SHA1_MAC_LEN; in fips186_2_prf()
|
/external/chromium/base/ |
D | string_piece.cc | 43 const size_type xpos = result - ptr_; in find() local 44 return xpos + s.length_ <= length_ ? xpos : npos; in find()
|
/external/astl/include/ |
D | string | 271 // Find the lowest position xpos, if possible, such that: 272 // pos <= xpos && xpos < size() 273 // at(xpos) == c 274 // @return xpos if it exists, npos otherwise. 279 // Find the highest position xpos, if possible, such that: 280 // xpos <= pos && xpos < size() 281 // at(xpos) == c 282 // @return xpos if it exists, npos otherwise.
|
/external/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/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)
|
/external/jmonkeyengine/engine/src/test/jme3test/batching/ |
D | TestBatchNodeCluster.java | 193 int xpos = xPosition.get(xPosition.size() - 1); in randomize() local 206 if (xpos >= lineLength * 2) { in randomize() 314 float xpos = 0; field in TestBatchNodeCluster
|
/external/skia/src/utils/ |
D | SkProxyCanvas.cpp | 121 const SkScalar xpos[], SkScalar constY, in drawPosTextH() argument 123 fProxy->drawPosTextH(text, byteLength, xpos, constY, paint); in drawPosTextH()
|
D | SkNWayCanvas.cpp | 238 const SkScalar xpos[], SkScalar constY, in drawPosTextH() argument 242 iter->drawPosTextH(text, byteLength, xpos, constY, paint); in drawPosTextH()
|
/external/skia/samplecode/ |
D | SampleText.cpp | 269 SkScalar xpos = x; in DrawTheText() local 272 pts[i].set(xpos, y), xpos += paint.getTextSize(); in DrawTheText()
|
/external/jpeg/ |
D | jccoefct.c | 150 JDIMENSION ypos, xpos; in compress_data() local 172 xpos = MCU_col_num * compptr->MCU_sample_width; in compress_data() 180 ypos, xpos, (JDIMENSION) blockcnt); in compress_data()
|
/external/qemu/distrib/jpeg-6b/ |
D | jccoefct.c | 150 JDIMENSION ypos, xpos; in compress_data() local 172 xpos = MCU_col_num * compptr->MCU_sample_width; in compress_data() 180 ypos, xpos, (JDIMENSION) blockcnt); in compress_data()
|
/external/webkit/Source/WebCore/page/ |
D | DragController.cpp | 654 int xpos = draggingRect.maxX(); in dragLocForSelectionDrag() local 655 xpos = draggingRect.x() < xpos ? draggingRect.x() : xpos; in dragLocForSelectionDrag() 663 return IntPoint(xpos, ypos); in dragLocForSelectionDrag()
|
/external/mksh/src/ |
D | lex.c | 1137 int xpos; in readhere() local 1142 xpos = strlen(xp) - 1; in readhere() 1143 memmove(xp, xp + 1, xpos); in readhere() 1144 xp[xpos] = '\n'; in readhere() 1158 xpos = Xsavepos(xs, xp); in readhere() 1216 xp = Xrestpos(xs, xp, xpos); in readhere()
|
/external/skia/include/core/ |
D | SkDraw.h | 138 const SkPath* next(SkScalar* xpos); //!< returns nil when there are no more paths
|
/external/skia/include/utils/ |
D | SkNWayCanvas.h | 59 const SkScalar xpos[], SkScalar constY,
|