| /third_party/curl/tests/libtest/ |
| H A D | lib552.c | 175 static const char fill[] = "test data"; in test() local 189 databuf[i] = fill[i % sizeof(fill)]; in test()
|
| /third_party/python/Tools/peg_generator/pegen/ |
| H A D | tokenizer.py | 109 fill = "-" * self._index + "-" 111 fill = "-" * self._index + ">" 113 fill = "-" * self._index + "*" 115 print(f"{fill} (Bof)") 118 print(f"{fill} {shorttok(tok)}")
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
| H A D | substitute.cc | 129 std::fill_n(beg, writer - beg, hex.fill); in Arg() 154 // Tricky: if the fill character is ' ', then it's <fill><+/-><digits> in Arg() 155 // But...: if the fill character is '0', then it's <+/-><fill><digits> in Arg() 157 if (neg && dec.fill == '0') { // If filling with '0', in Arg() 162 std::fill_n(writer, fillers, dec.fill); in Arg()
|
| H A D | str_cat.cc | 41 std::memset(end - 32, hex.fill, 16); in AlphaNum() 43 std::memset(end - real_width - 16, hex.fill, 16); in AlphaNum() 64 // Tricky: if the fill character is ' ', then it's <fill><+/-><digits> in AlphaNum() 65 // But...: if the fill character is '0', then it's <+/-><fill><digits> in AlphaNum() 67 if (neg && dec.fill == '0') { // If filling with '0', in AlphaNum() 72 std::fill_n(writer, fillers, dec.fill); in AlphaNum()
|
| /third_party/skia/src/xps/ |
| H A D | SkXPSDevice.cpp | 706 "Could not set fill brush for image brush central path."); in createXpsImageBrush() 1090 HRESULT SkXPSDevice::createXpsRect(const SkRect& rect, BOOL stroke, BOOL fill, in createXpsRect() argument 1098 return this->createXpsQuad(points, stroke, fill, xpsRect); in createXpsRect() 1101 BOOL stroke, BOOL fill, variable 1137 HRM((*xpsQuad)->SetIsFilled(fill), "Could not set quad fill."); 1155 //If trying to paint with a stroke, ignore that and fill. in drawPaint() 1212 BOOL fill = FALSE; in internalDrawRect() local 1214 HRV(this->shadePath(shadedPath.get(), paint, this->localToDevice(), &fill, &stroke)); in internalDrawRect() 1241 HRV(this->createXpsQuad(points, stroke, fill, in internalDrawRect() 1263 close_figure(const SkTDArray<XPS_SEGMENT_TYPE>& segmentTypes, const SkTDArray<FLOAT>& segmentData, const SkTDArray<BOOL>& segmentStrokes, BOOL stroke, BOOL fill, IXpsOMGeometryFigure* figure, IXpsOMGeometryFigureCollection* figures) close_figure() argument 1292 addXpsPathGeometry( IXpsOMGeometryFigureCollection* xpsFigures, BOOL stroke, BOOL fill, const SkPath& path) addXpsPathGeometry() argument 1449 shadePath(IXpsOMPath* shadedPath, const SkPaint& shaderPaint, const SkMatrix& matrix, BOOL* fill, BOOL* stroke) shadePath() argument 1523 bool fill = paint->getFillPath(*skeletalPath, fillablePath); drawPath() local 1559 BOOL fill; drawPath() local [all...] |
| /third_party/icu/tools/unicodetools/com/ibm/rbm/gui/ |
| H A D | RBGroupPanel.java | 164 gbc.fill = GridBagConstraints.HORIZONTAL; in initComponents() 178 gbc.fill = GridBagConstraints.BOTH; in initComponents() 182 gbc.fill = GridBagConstraints.HORIZONTAL; in initComponents() 320 gbc.fill = GridBagConstraints.HORIZONTAL; in initComponents() 334 gbc.fill = GridBagConstraints.BOTH; in initComponents() 338 gbc.fill = GridBagConstraints.HORIZONTAL; in initComponents()
|
| /third_party/jerryscript/jerry-ext/debugger/ |
| H A D | debugger-sha1.c | 268 size_t fill; in jerryx_sha1_update() local 277 fill = 64 - left; in jerryx_sha1_update() 287 if (left && source_length >= fill) in jerryx_sha1_update() 289 memcpy ((void *) (sha1_context_p->buffer + left), source_p, fill); in jerryx_sha1_update() 291 source_p += fill; in jerryx_sha1_update() 292 source_length -= fill; in jerryx_sha1_update()
|
| /third_party/lwip/src/netif/ppp/polarssl/ |
| H A D | md5.c | 213 int fill; in md5_update() local 220 fill = 64 - left; in md5_update() 228 if( left && ilen >= fill ) in md5_update() 231 input, fill ); in md5_update() 233 input += fill; in md5_update() 234 ilen -= fill; in md5_update()
|
| H A D | sha1.c | 247 int fill; in sha1_update() local 254 fill = 64 - left; in sha1_update() 262 if( left && ilen >= fill ) in sha1_update() 265 input, fill ); in sha1_update() 267 input += fill; in sha1_update() 268 ilen -= fill; in sha1_update()
|
| /third_party/python/Modules/_blake2/impl/ |
| H A D | blake2b.c | 356 uint32_t fill = 2 * BLAKE2B_BLOCKBYTES - left; in blake2b_update() local 358 if( inlen > fill ) in blake2b_update() 360 memcpy( S->buf + left, in, fill ); // Fill buffer in blake2b_update() 361 S->buflen += fill; in blake2b_update() 366 in += fill; in blake2b_update() 367 inlen -= fill; in blake2b_update() 369 else // inlen <= fill in blake2b_update()
|
| H A D | blake2b-ref.c | 299 uint32_t fill = 2 * BLAKE2B_BLOCKBYTES - left; in blake2b_update() local 301 if( inlen > fill ) in blake2b_update() 303 memcpy( S->buf + left, in, fill ); // Fill buffer in blake2b_update() 304 S->buflen += fill; in blake2b_update() 309 in += fill; in blake2b_update() 310 inlen -= fill; in blake2b_update() 312 else // inlen <= fill in blake2b_update()
|
| H A D | blake2s-ref.c | 289 uint32_t fill = 2 * BLAKE2S_BLOCKBYTES - left; in blake2s_update() local 291 if( inlen > fill ) in blake2s_update() 293 memcpy( S->buf + left, in, fill ); // Fill buffer in blake2s_update() 294 S->buflen += fill; in blake2s_update() 299 in += fill; in blake2s_update() 300 inlen -= fill; in blake2s_update() 302 else // inlen <= fill in blake2s_update()
|
| H A D | blake2s.c | 329 size_t fill = 2 * BLAKE2S_BLOCKBYTES - left; in blake2s_update() local 331 if( inlen > fill ) in blake2s_update() 333 memcpy( S->buf + left, in, fill ); // Fill buffer in blake2s_update() 334 S->buflen += fill; in blake2s_update() 339 in += fill; in blake2s_update() 340 inlen -= fill; in blake2s_update() 342 else /* inlen <= fill */ in blake2s_update()
|
| /third_party/vk-gl-cts/framework/delibs/dethread/ |
| H A D | deThreadTest.c | 360 deSemaphore fill; member 395 deSemaphore_increment(buffer->fill); in producerThread() 410 deSemaphore_decrement(buffer->fill); in consumerThread() 448 testBuffer.fill = deSemaphore_create(0, DE_NULL); in deSemaphore_selfTest() 450 DE_TEST_ASSERT(testBuffer.empty && testBuffer.fill); in deSemaphore_selfTest() 465 deSemaphore_destroy(testBuffer.fill); in deSemaphore_selfTest()
|
| /third_party/libunwind/libunwind/tests/ |
| H A D | ia64-test-nat-asm.S | 123 ldf.fill f2 = [sp] // restore r2 201 ld8.fill r4 = [sp] // restore r4 238 ld8.fill r6 = [sp] // restore r6 279 ld8.fill r6 = [sp] // restore r6 322 ld8.fill r6 = [sp] // restore r6 366 ld8.fill r6 = [sp] // restore r6 423 ld8.fill r7 = [sp]
|
| /third_party/ffmpeg/libavcodec/ |
| H A D | rasc.c | 390 unsigned fill; in decode_dlta() local 412 fill = bytestream2_get_byte(&dc); in decode_dlta() 414 b2[cx] = fill; in decode_dlta() 420 fill = bytestream2_get_byte(&dc); in decode_dlta() 423 AV_WL32(b2 + cx, fill); in decode_dlta() 429 fill = bytestream2_get_le32(&dc); in decode_dlta() 432 AV_WL32(b2 + cx, fill); in decode_dlta() 457 fill = bytestream2_get_le32(&dc); in decode_dlta() 459 AV_WL32(b2 + cx, fill); in decode_dlta()
|
| /third_party/ntfs-3g/src/ |
| H A D | lowntfs-3g.c | 1382 ntfs_fuse_fill_context_t *fill; in ntfs_fuse_opendir() local 1412 fill = (ntfs_fuse_fill_context_t*) in ntfs_fuse_opendir() 1414 if (!fill) in ntfs_fuse_opendir() 1417 fill->first = fill->last in ntfs_fuse_opendir() 1419 fill->filled = FALSE; in ntfs_fuse_opendir() 1420 fill->ino = ino; in ntfs_fuse_opendir() 1421 fill->off = 0; in ntfs_fuse_opendir() 1423 fill->fh = fi->fh; in ntfs_fuse_opendir() 1426 fi->fh = (long)fill; in ntfs_fuse_opendir() 1445 ntfs_fuse_fill_context_t *fill; ntfs_fuse_releasedir() local 1493 ntfs_fuse_fill_context_t *fill; ntfs_fuse_readdir() local [all...] |
| /third_party/node/benchmark/fs/ |
| H A D | read-stream-throughput.js | 48 buf.fill('a'); 50 buf.fill('x');
|
| /third_party/libabigail/src/ |
| H A D | abg-viz-svg.cc | 194 std::string rect_strip = R"_delimiter_(<rect x="__x" y="__y" fill="__color" stroke="__color" stroke-width="1" width="__width" height="__height"/> 207 std::string text_strip = R"_delimiter_(<text x="__x" y="__y" fill="__color" __style>__val</text>
|
| /third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
| H A D | UnpackRowLength.cpp | 60 std::fill(rowIter, rowIter + texSize * 4, static_cast<GLubyte>(255u)); in testRowLength() 61 std::fill(rowIter + texSize * 4, rowIter + rowLength * 4, static_cast<GLubyte>(0u)); in testRowLength()
|
| /third_party/skia/third_party/externals/oboe/src/flowgraph/resampler/ |
| H A D | SincResampler.cpp | 39 std::fill(mSingleFrame.begin(), mSingleFrame.end(), 0.0); in readFrame() 40 std::fill(mSingleFrame2.begin(), mSingleFrame2.end(), 0.0); in readFrame()
|
| H A D | SincResamplerStereo.cpp | 50 std::fill(mSingleFrame.begin(), mSingleFrame.end(), 0.0); in readFrame() 51 std::fill(mSingleFrame2.begin(), mSingleFrame2.end(), 0.0); in readFrame()
|
| /third_party/skia/docs/examples/ |
| H A D | UnpremulBugs.cpp | 5 void fill(SkBitmap & b, SkColor c, int n) { in REG_FIDDLE() function 17 fill(bmp, c, n); in REG_FIDDLE()
|
| /third_party/skia/src/core/ |
| H A D | SkPathPriv.h | 22 static const int kPathRefGenIDBitCnt = 30; // leave room for the fill type (skbug.com/1762) 80 // In some scenarios (e.g. fill or convexity checking all but the last leading move to are 357 static bool IsInverseFillType(SkPathFillType fill) { 358 return (static_cast<int>(fill) & 2) != 0; 361 /** Returns equivalent SkPath::FillType representing SkPath fill inside its bounds. 364 @param fill one of: kWinding_FillType, kEvenOdd_FillType, 366 @return fill, or kWinding_FillType or kEvenOdd_FillType if fill is inverted 368 static SkPathFillType ConvertToNonInverseFillType(SkPathFillType fill) { 369 return (SkPathFillType)(static_cast<int>(fill) [all...] |
| /third_party/python/Lib/ |
| H A D | textwrap.py | 10 __all__ = ['TextWrapper', 'wrap', 'fill', 'dedent', 'indent', 'shorten'] 20 the wrap() and fill() methods; the other methods are just there for 361 def fill(self, text): member in TextWrapper 362 """fill(text : string) -> string 386 def fill(text, width=70, **kwargs): function 396 return w.fill(text) 411 return w.fill(' '.join(text.strip().split()))
|