Home
last modified time | relevance | path

Searched full:part (Results 426 - 450 of 24485) sorted by relevance

1...<<11121314151617181920>>...980

/third_party/skia/include/core/
H A DSkPathBuilder.h93 /** Appends arc to the builder. Arc added is part of ellipse
112 weighted to describe part of circle. Arc is contained by tangent from
114 is part of circle sized to radius, positioned so it touches both tangent lines.
138 part of oval with radii (r.fX, r.fY) rotated by xAxisRotate degrees. Arc curves
163 /** Appends arc to the builder, as the start of new contour. Arc added is part of ellipse
H A DSkImageInfo.h190 If SkColorSpace cs is nullptr and SkColorInfo is part of drawing source: SkColorSpace
298 If SkColorSpace cs is nullptr and SkImageInfo is part of drawing source: SkColorSpace
339 If SkColorSpace cs is nullptr and SkImageInfo is part of drawing source: SkColorSpace
372 If SkColorSpace cs is nullptr and SkImageInfo is part of drawing source: SkColorSpace
390 If SkImageInfo is part of drawing source: SkColorSpace defaults to sRGB, mapping
427 Returned SkImageInfo as part of source does not draw, and as part of destination
441 Returned SkImageInfo as part of source does not draw, and as part of destination
/third_party/ffmpeg/libavfilter/
H A Dvf_fspp.c6 * This file is part of FFmpeg.
279 // Even part of FDCT in column_fidct_c()
293 // Even part of IDCT in column_fidct_c()
311 // Odd part of FDCT in column_fidct_c()
330 // Odd part of IDCT in column_fidct_c()
383 // Even part in row_idct_c()
396 // Odd part in row_idct_c()
454 // Even part in row_fdct_c()
470 // Odd part in row_fdct_c()
/third_party/libbpf/include/uapi/linux/
H A Dif_link.h98 * Part of aggregate "frame" errors in `/proc/net/dev`.
118 * Part of aggregate "frame" errors in `/proc/net/dev`.
127 * Part of aggregate "frame" errors in `/proc/net/dev`.
134 * Part of aggregate "frame" errors in `/proc/net/dev`.
164 * Part of aggregate "carrier" errors in `/proc/net/dev`.
175 * Part of aggregate "carrier" errors in `/proc/net/dev`.
185 * Part of aggregate "carrier" errors in `/proc/net/dev`.
189 * Part of aggregate "carrier" errors in `/proc/net/dev`.
197 * Part of aggregate "carrier" errors in `/proc/net/dev`.
/third_party/mbedtls/docs/
H A Dpsa-driver-example-and-guide.md16 The PSA Driver Interface specification specifies which cryptographic operations can be accelerated by third-party drivers. Operations that are completed within one step (one function call), such as verifying a signature, are called *Single-Part Operations*. On the other hand, operations that consist of multiple steps implemented by different functions called sequentially are called *Multi-Part Operations*. Single-part operations implemented by a driver will have one entry point, while multi-part operations will have multiple: one for each step.
22 Mbed TLS contains a **driver dispatch layer** (also called a driver wrapper layer). For each cryptographic operation that supports driver acceleration (or sub-part of a multi-part operation), the library calls the corresponding function in the driver wrapper. Using flags set at compile time, the driver wrapper ascertains whether any present drivers support the operation. When no such driver is present, the built-in library implementation is called as a fallback (if allowed). When a compatible driver is present, the driver wrapper calls the driver entry point function provided by the driver author.
50 If the driver is accelerating operations whose entry points are not present in the table, a different process is followed where the developer manually edits the driver dispatch layer. The following steps describe this process. Steps 1, 2, 3, and 7 only need to be done once *per driver*. Steps 4, 5, and 6 must be done *for each single-part operation* or *for each sub-part of a multi-part operation* implemented by the driver.
/third_party/jerryscript/jerry-core/ecma/base/
H A Decma-helpers-conversion.c48 * Round high part of 128-bit integer to uint64_t
257 * Number.MAX_VALUE exponent part when using 64 bit float representation.
261 * Number.MIN_VALUE exponent part when using 64 bit float representation.
268 * Number.MAX_VALUE exponent part when using 32 bit float representation.
272 * Number.MIN_VALUE exponent part when using 32 bit float representation.
426 /* Checking if significant part of parse string is equal to "Infinity" */ in ecma_utf8_string_to_number()
441 /* Parsing digits before dot (or before end of digits part if there is no dot in number) */ in ecma_utf8_string_to_number()
483 /* Parsing number's part that is placed after dot */ in ecma_utf8_string_to_number()
881 * Calculate the number of digits from the given double value whithout franction part
/third_party/skia/third_party/externals/libjpeg-turbo/simd/i386/
H A Djidctred-sse2.asm178 ; -- Odd part
219 ; -- Even part
323 ; -- Even part
329 ; -- Odd part
343 ; -- Even part
453 ; -- Odd part
489 ; -- Even part
546 ; -- Odd part
555 ; -- Even part
/third_party/skia/third_party/externals/libjpeg-turbo/simd/x86_64/
H A Djidctred-sse2.asm171 ; -- Odd part
212 ; -- Even part
316 ; -- Even part
322 ; -- Odd part
336 ; -- Even part
438 ; -- Odd part
474 ; -- Even part
531 ; -- Odd part
540 ; -- Even part
/third_party/zlib/examples/
H A Dgznorm.c124 unsigned long part; // accumulated trailer component in gzip_normalize() local
172 // Disposition the consumed component or part of a component. in gzip_normalize()
379 part = 0; in gzip_normalize()
388 part = (part >> 8) + ((unsigned long)(*put++) << 24); in gzip_normalize()
395 crc = crc ? crc32_combine(crc, part, len2) : part; in gzip_normalize()
396 part = 0; in gzip_normalize()
401 len += part; in gzip_normalize()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtc/
H A Dnoise.inl68 tvec3<T, P> Pi0 = floor(Position); // Integer part for indexing
69 tvec3<T, P> Pi1 = Pi0 + T(1); // Integer part + 1
72 tvec3<T, P> Pf0 = fract(Position); // Fractional part for interpolation
73 tvec3<T, P> Pf1 = Pf0 - T(1); // Fractional part - 1.0
139 tvec3<T, P> Pi0 = floor(P); // Integer part for indexing
140 tvec3<T, P> Pi1 = Pi0 + T(1); // Integer part + 1
143 tvec3<T, P> Pf0 = fract(P); // Fractional part for interpolation
144 tvec3<T, P> Pf1 = Pf0 - T(1); // Fractional part - 1.0
212 tvec4<T, P> Pi0 = floor(Position); // Integer part for indexing
213 tvec4<T, P> Pi1 = Pi0 + T(1); // Integer part
[all...]
/third_party/curl/tests/data/
H A Dtest103614 expected to be a file without the first part
57 expected to be a file without the first part
H A Dtest11102 # Test that the fragment is not send as part of the path
27 HTTP GET with URL that contains a fragment after the query part
/third_party/glslang/Test/baseResults/
H A Dcomment.frag.out2 WARNING: 0:10: 'line continuation' : used at end of comment; the following line is still part of the comment
3 WARNING: 0:12: 'line continuation' : used at end of comment; the following line is still part of the comment
/third_party/node/test/parallel/
H A Dtest-http-client-aborted-event.js8 res.write('Part of my res.');
31 res.write('Part of my res.');
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dmodff.c9 /* no fractional part */ in modff()
18 /* no integral part */ in modff()
H A Dmodf.c9 /* no fractional part */ in modf()
18 /* no integral part*/ in modf()
/third_party/musl/src/math/
H A Dmodff.c9 /* no fractional part */ in modff()
18 /* no integral part */ in modff()
H A Dmodf.c9 /* no fractional part */ in modf()
18 /* no integral part*/ in modf()
/third_party/node/deps/npm/node_modules/@tufjs/models/dist/utils/
H A Doid.js10 parts.slice(2).forEach((part) => {
11 const bytes = encodeVariableLengthInteger(parseInt(part, 10));
/third_party/typescript/tests/baselines/reference/project/jsFileCompilationDifferentNamesSpecified/amd/
H A DjsFileCompilationDifferentNamesSpecified.errors.txt3 Part of 'files' list in tsconfig.json
8 !!! error TS6504: Part of 'files' list in tsconfig.json
/third_party/typescript/tests/cases/fourslash/
H A DindentationInAmdIife.ts8 //// // No line-breaks in the expression part of the call expression
20 //// // Contains line-breaks in the expression part of the call expression.
/foundation/graphic/graphic_2d/rosen/test/frame_analyzer/unittest/
H A Dframe_collector_test.cpp48 PART("CaseDescription") { in HWTEST_F()
69 PART("CaseDescription") { in HWTEST_F()
102 PART("EnvConditions") { in HWTEST_F()
109 PART("CaseDescription") { in HWTEST_F()
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/l2cap/
H A Dl2cap_inst.c248 chan->part.options = NULL; in L2capNewChannel()
249 chan->part.length = 0; in L2capNewChannel()
307 if (chan->part.options != NULL) { in L2capDestroyChannel()
308 L2capFree(chan->part.options); in L2capDestroyChannel()
/third_party/ffmpeg/libavformat/
H A Drtpdec_vp8.c6 * This file is part of FFmpeg.
174 // marker), the single missed packet must have been part in vp8_handle_packet()
225 "Missed part of a keyframe, sequence broken\n"); in vp8_handle_packet()
231 "Missed part of the first partition, sequence broken\n"); in vp8_handle_packet()
/third_party/icu/icu4c/source/common/
H A Ddictionarydata.h168 * Each byte offset marks the start of the next part in the data file,
170 * When two consecutive byte offsets are the same, then the corresponding part is empty.
173 * Each part starts at an offset with proper alignment for its data.
174 * If necessary, the previous part may include padding bytes to achieve this alignment.

Completed in 24 milliseconds

1...<<11121314151617181920>>...980