/third_party/node/test/pummel/ |
D | test-fs-watch-system-limit.js | 57 let accumulated = ''; variable 59 accumulated += chunk; 60 if (accumulated.includes('Error:') && !finished) { 62 accumulated.includes('ENOSPC: System limit for number ' + 64 accumulated.includes('EMFILE: '), 65 accumulated);
|
/third_party/ffmpeg/libswresample/arm/ |
D | resample.S | 30 … d0, d0, d1 @ pair adding of the 4x32-bit accumulated values 46 … d0, d0, d1 @ pair adding of the 4x32-bit accumulated values 59 … d0, d0, d1 @ pair adding of the 4x32-bit accumulated values 73 … d0, d0, d1 @ pair adding of the 4x32-bit accumulated values
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | predictor_enc.c | 46 static float PredictionCostSpatialHistogram(const int accumulated[4][256], in PredictionCostSpatialHistogram() 53 retval += VP8LCombinedShannonEntropy(tile[i], accumulated[i]); in PredictionCostSpatialHistogram() 300 int accumulated[4][256], in GetBestPredictorForTile() 386 (const int (*)[256])accumulated, (const int (*)[256])histo_argb); in GetBestPredictorForTile() 402 accumulated[i][j] += best_histo[i][j]; in GetBestPredictorForTile() 531 static float PredictionCostCrossColor(const int accumulated[256], in PredictionCostCrossColor() 536 return VP8LCombinedShannonEntropy(counts, accumulated) + in PredictionCostCrossColor()
|
/third_party/libuv/docs/src/ |
D | metrics.rst | 18 The return value is the accumulated time spent idle in the kernel's event
|
/third_party/curl/tests/data/ |
D | test497 | 34 Reject too large accumulated HTTP response headers
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/doc/ |
D | OcclusionQueries.md | 38 - Note that if the query spans across multiple render passes, its old value will be accumulated 45 in both the old offset and the new offset will be accumulated together.
|
/third_party/libinput/doc/user/ |
D | wheel-api.rst | 157 Note how the first low-resolution event is sent at an accumulated 15 158 degrees, the second at an accumulated 20 degrees. The libinput API does not
|
/third_party/python/Python/ |
D | import.c | 1485 static _PyTime_t accumulated; in import_find_and_load() local 1487 _PyTime_t t1 = 0, accumulated_copy = accumulated; in import_find_and_load() 1515 accumulated = 0; in import_find_and_load() 1534 (long)_PyTime_AsMicroseconds(cum - accumulated, _PyTime_ROUND_CEILING), in import_find_and_load() 1538 accumulated = accumulated_copy + cum; in import_find_and_load()
|
/third_party/openGLES/extensions/APPLE/ |
D | APPLE_element_array.txt | 215 DrawElementArrayAPPLE, or DrawRangeElementArrayAPPLE are accumulated into a 226 accumulated into a display list as if VERTEX_ARRAY_RANGE_APPLE is
|
/third_party/skia/third_party/externals/opengl-registry/extensions/APPLE/ |
D | APPLE_element_array.txt | 215 DrawElementArrayAPPLE, or DrawRangeElementArrayAPPLE are accumulated into a 226 accumulated into a display list as if VERTEX_ARRAY_RANGE_APPLE is
|
/third_party/openssl/doc/man7/ |
D | proxy-certificates.pod | 256 * accumulated rights bit array, and voilà, you 257 * now have a new accumulated rights bit array.
|
/third_party/gstreamer/gstreamer/docs/random/ |
D | plan-0.11.txt | 134 - add accumulated time to the event
|
/third_party/musl/libc-test/ |
D | README | 83 the build and runtime errors of each target are accumulated into a
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/doc/ |
D | Queries.md | 33 that span multiple render passes must use multiple Vulkan queries whose results are accumulated.
|
/third_party/openGLES/extensions/SGIX/ |
D | SGIX_quad_mesh.txt | 168 Z512* 0 Number of vertices accumulated for
|
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/ |
D | SGIX_quad_mesh.txt | 168 Z512* 0 Number of vertices accumulated for
|
/third_party/python/Doc/library/ |
D | trace.rst | 178 for the given :class:`Trace` instance. Does not reset the accumulated
|
D | itertools.rst | 97 Make an iterator that returns accumulated sums, or accumulated 138 the accumulated total in *func* argument:: 163 final accumulated value.
|
D | profile.rst | 364 are accumulated into a single entry. 373 name) functions are automatically accumulated into single function
|
/third_party/skia/src/core/ |
D | SkAAClip.cpp | 1691 SkDEBUGCODE(int accumulated = 0;) in merge() 1723 SkDEBUGCODE(accumulated += minN;) in merge() 1724 SkASSERT(accumulated <= width); in merge()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ATI/ |
D | ATI_element_array.txt | 192 DrawRangeElementArrayATI are accumulated into a display list.)
|
/third_party/openGLES/extensions/ATI/ |
D | ATI_element_array.txt | 192 DrawRangeElementArrayATI are accumulated into a display list.)
|
/third_party/python/Lib/test/ |
D | test_itertools.py | 1632 accumulated = [1, 3, 6, 10, 15] 1636 self.assertEqual(list(pickle.loads(pickle.dumps(it, proto))), accumulated[:]) 1638 self.assertEqual(list(pickle.loads(pickle.dumps(it, proto))), accumulated[1:]) 1641 self.assertEqual(list(copy.deepcopy(it)), accumulated[1:]) 1642 self.assertEqual(list(copy.copy(it)), accumulated[1:])
|
/third_party/protobuf/ruby/ext/google/protobuf_c/ |
D | upb.c | 9214 const char *accumulated; member 9552 UPB_ASSERT(p->accumulated == NULL); in assert_accumulate_empty() 9557 p->accumulated = NULL; in accumulate_clear() 9588 if (!p->accumulated && can_alias) { in accumulate_append() 9589 p->accumulated = buf; in accumulate_append() 9603 if (p->accumulated != p->accumulate_buf) { in accumulate_append() 9604 memcpy(p->accumulate_buf, p->accumulated, p->accumulated_len); in accumulate_append() 9605 p->accumulated = p->accumulate_buf; in accumulate_append() 9617 UPB_ASSERT(p->accumulated); in accumulate_getptr() 9619 return p->accumulated; in accumulate_getptr() [all …]
|
/third_party/openssl/doc/internal/man7/ |
D | build.info.pod | 199 Attributes are accumulated globally. This means that a library could 291 Most of the statement values are accumulated globally from all the
|