Home
last modified time | relevance | path

Searched refs:slice (Results 1976 - 2000 of 2528) sorted by relevance

1...<<71727374757677787980>>...102

/test/xts/acts/security/huks/security_huks_basic/huks_cipher_callback_BasicTest/entry/src/ohosTest/js/test/Cipher/
H A DSecurityHuksRSABasicCallbackJsunit.test.js166 HuksOptions.inData = new Uint8Array(Array.from(huksOptionsInData).slice(dateSize * i, dateSize * (i + 1)));
172 Array.from(huksOptionsInData).slice(dateSize * count, uint8ArrayToString(inDataArray).length)
H A DSecurityHuksAESBasicCallbackJsunit.test.js98 HuksOptions.inData = new Uint8Array(Array.from(huksOptionsInData).slice(dateSize * i, dateSize * (i + 1)));
104 Array.from(huksOptionsInData).slice(dateSize * count, uint8ArrayToString(inDataArray).length)
/test/xts/acts/security/huks/security_huks_basic/huks_cipher_promise_BasicTest/entry/src/ohosTest/js/test/Cipher/
H A DSecurityHuksCipherSM2BasicPromiseJsunit.test.js118 HuksOptions.inData = new Uint8Array(Array.from(huksOptionsInData).slice(dateSize * i, dateSize * (i + 1)));
124 Array.from(huksOptionsInData).slice(dateSize * count, uint8ArrayToString(inDataArray).length)
/third_party/ffmpeg/tests/fate/
H A Dhevc.mak248 fate-hevc-two-first-slice: CMD = threads=2 framemd5 -i $(TARGET_SAMPLES)/hevc/two_first_slice.mp4 -sws_flags bitexact -t 00:02.00 -an
249 FATE_HEVC-$(call FRAMEMD5, MOV, HEVC) += fate-hevc-two-first-slice
/third_party/node/lib/internal/fs/
H A Dstreams.js270 // Copy instead of slice so that we don't retain
419 writeAll.call(this, buffer.slice(bytesWritten), size, pos, cb, retries);
448 writevAll.call(this, [Buffer.concat(buffers).slice(bytesWritten)], size, pos, cb, retries);
/third_party/node/lib/internal/per_context/
H A Dprimordials.js56 `Symbol${key.description[7].toUpperCase()}${key.description.slice(8)}` :
57 `${key[0].toUpperCase()}${key.slice(1)}`;
/third_party/node/test/fixtures/wpt/streams/piping/
H A Dabort.any.js142 assert_array_equals(ws.events.slice(0, 3), ['write', 'a', 'abort'], 'events should match');
181 assert_array_equals(ws.events.slice(0, 5), ['write', 'a', 'write', 'b', 'abort'], 'events should match');
/third_party/node/deps/npm/node_modules/cli-table3/src/
H A Dcell.js114 this.widths = tableOptions.colWidths.slice(x, x + this.colSpan);
115 this.heights = tableOptions.rowHeights.slice(y, y + this.rowSpan);
/third_party/ltp/tools/sparse/sparse-src/
H A Dscheck.c97 static BoolectorNode *slice(Btor *btor, struct instruction *insn, BoolectorNode *s) in slice() function
168 case OP_TRUNC: t = slice(btor, insn, a); break; in unop()
/third_party/node/deps/undici/src/lib/fetch/
H A Dutil.js578 actualValue = actualValue.slice(0, -2)
580 actualValue = actualValue.slice(0, -1)
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Dclass_1_0.rs26 ::std::slice::from_raw_parts(self.as_ptr(), len) in as_slice()
30 ::std::slice::from_raw_parts_mut(self.as_mut_ptr(), len) in as_mut_slice()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp102 Buffer = Entry.slice(0, Size); in readBytes()
143 Buffer = CachedAlloc.slice(CacheRangeOffset, Size); in readBytes()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
H A DTextureMtl.h288 // Copy data to texture's per array's slice/cube's face. NOTE: This function doesn't upload
289 // data to 3D texture's z layer. Metal treats 3D texture's z layer & array texture's slice
290 // differently. For array/cube texture, it is only possible to upload to one slice at a time.
292 int slice,
305 int slice,
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/
H A DCMapFormat4.java365 super(data == null ? null : data.slice( in Builder()
371 super(data == null ? null : data.slice( in Builder()
/third_party/typescript/tests/baselines/reference/
H A DrecursiveTypeReferences1.js138 if (!ar) ar = Array.prototype.slice.call(from, 0, i);
142 return to.concat(ar || Array.prototype.slice.call(from));
H A DrestTuplesFromContextualTypes.js107 if (!ar) ar = Array.prototype.slice.call(from, 0, i);
111 return to.concat(ar || Array.prototype.slice.call(from));
/third_party/rust/crates/memchr/bench/data/code/
H A Drust-library.rs1290 mod slice; modules
3317 fn slice() { in slice() functions
6490 let slice: &[i32] = &[1, 2, 3]; in test_from_cow_slice()
6491 test_from_cow!(slice: &[i32]); in test_from_cow_slice()
6630 let slice: &[isize] = &[4, 5]; in test_debug_fmt()
6631 assert_eq!("[4, 5]", format!("{:?}", slice)); in test_debug_fmt()
6720 let slice = &values[1..3]; in test_slice_from_ref()
6722 assert_eq!(slice, [2, 3]); in test_slice_from_ref()
6729 let slice = &mut values[2..]; in test_slice_from_mut()
6730 assert!(slice in test_slice_from_mut()
8883 mod slice; global() modules
9074 fn slice() { slice() functions
19480 pub mod slice; global() modules
40240 fn slice(self, from: usize, to: usize) -> Self; slice() functions
40257 fn slice(self, from: usize, to: usize) -> Self { slice() functions
40266 fn slice(self, from: usize, to: usize) -> Self { slice() functions
40275 fn slice(self, from: usize, to: usize) -> Self { slice() functions
[all...]
/third_party/python/Lib/test/
H A Dtest_descr.py116 self.assertEqual(m(a, slice(b, c)), res)
118 self.assertEqual(bm(slice(b, c)), res)
170 m(dictionary['a'], slice(b, c), d)
174 bm(slice(b, c), d)
465 if isinstance(i, slice):
1967 self.assertEqual(a[0:10], ("getitem", slice(0, 10)))
1969 self.assertEqual(a.setitem, (slice(0, 10), "foo"))
1971 self.assertEqual(a.delitem, (slice(0, 10)))
3827 self.assertEqual("hello"[slice(4)], "hell")
3828 self.assertEqual(str.__getitem__("hello", slice(
[all...]
/third_party/node/test/common/
H A Dindex.js112 const args = [...flags, ...process.execArgv, ...process.argv.slice(1)];
405 console.log(context.stack.split('\n').slice(2).join('\n'));
809 if (inspected.length > 28) { inspected = `${inspected.slice(inspected, 0, 25)}...`; }
/third_party/node/deps/npm/node_modules/jackspeak/dist/esm/
H A Dindex.js299 args = args.slice(process._eval !== undefined ? 1 : 2);
327 p.positionals.push(...args.slice(token.index + 1));
736 for (const field of this.#fields.slice(start)) {
/third_party/node/deps/npm/node_modules/jackspeak/dist/commonjs/
H A Dindex.js307 args = args.slice(process._eval !== undefined ? 1 : 2);
335 p.positionals.push(...args.slice(token.index + 1));
744 for (const field of this.#fields.slice(start)) {
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/
H A DRangeTree.java1177 * Slices a range tree at a single length. This is equivalent to {@code slice(length, length)}.
1179 public RangeTree slice(int length) { in slice() method in RangeTree
1180 return slice(length, length); in slice()
1195 * slice({ 12345, 67xxx, 89 }, 0, 3) == { 123, 67x, 89 }
1196 * slice({ 12345, 67xxx, 89 }, 3, 3) == { 123, 67x }
1197 * slice({ 12, 34, 5 }, 2, 3) == { 12, 34 }
1198 * slice({ 12, 34 }, 3, 3) == { }
1201 public RangeTree slice(int minLength, int maxLength) { in slice() method in RangeTree
/third_party/skia/modules/canvaskit/htmlcanvas/
H A Dcanvas2dcontext.js709 return this._lineDashList.slice();
922 ctm: this._currentTransform.slice(),
923 ldl: this._lineDashList.slice(),
/third_party/rust/crates/rustix/src/backend/linux_raw/net/
H A Dsyscalls.rs11 by_mut, by_ref, c_int, c_uint, ret, ret_owned_fd, ret_usize, size_of, slice, slice_mut,
264 let (buf_addr, buf_len) = slice(buf);
310 let (buf_addr, buf_len) = slice(buf);
348 let (buf_addr, buf_len) = slice(buf);
386 let (buf_addr, buf_len) = slice(buf);
/third_party/ffmpeg/libavcodec/arm/
H A Dvp9itxfm_16bpp_neon.S575 @ Read a vertical 4x8 slice out of a 8x8 matrix, do a transform on it,
576 @ transpose into a horizontal 8x4 slice and store.
578 @ r1 = slice offset
606 @ for the first slice of the second pass (where it is the
619 @ Read a vertical 4x8 slice out of a 8x8 matrix, do a transform on it,
620 @ load the destination pixels (from a similar 4x8 slice), add and store back.
624 @ r3 = slice offset
1024 @ Read a vertical 2x16 slice out of a 16x16 matrix, do a transform on it,
1025 @ transpose into a horizontal 16x2 slice and store.
1066 @ Read a vertical 2x16 slice ou
[all...]

Completed in 49 milliseconds

1...<<71727374757677787980>>...102