/third_party/jerryscript/tests/jerry/es2015/ |
H A D | class-inheritance-builtin-array.js | 65 var sliced = c.slice (c); 98 sliced = c.slice (c);
|
/third_party/node/test/parallel/ |
H A D | test-http-1.0-keep-alive.js | 115 check(tests.slice(1)); 123 ctx.chunks.slice(0, -1).forEach(function(chunk) { res.write(chunk); });
|
H A D | test-http2-create-client-session.js | 28 stream.write(body.slice(0, 20)); 29 stream.end(body.slice(20));
|
/third_party/node/test/fixtures/crypto/ |
H A D | aes_gcm.js | 93 result.set(tag[keyLength].slice(0, byteCount), 105 noadresult.set(tag_with_empty_ad[keyLength].slice(0, byteCount),
|
/third_party/node/test/fixtures/wpt/WebCryptoAPI/encrypt_decrypt/ |
H A D | aes_gcm_vectors.js | 35 result.set(tag[keyLength].slice(0, byteCount), ciphertext[keyLength].byteLength); 47 noadresult.set(tag_with_empty_ad[keyLength].slice(0, byteCount), ciphertext[keyLength].byteLength);
|
/third_party/node/benchmark/fixtures/ |
H A D | simple-https-server.js | 67 res.write(body.slice(i * step, i * step + step)); 68 res.end(body.slice((n_chunks - 1) * step));
|
/third_party/node/deps/npm/node_modules/diff/lib/patch/ |
H A D | reverse.js | 43 l.slice(1)) 52 l.slice(1))
|
/third_party/node/deps/v8/src/d8/ |
H A D | d8-js.cc | 76 props.push("get " + name + getter.slice(getter.indexOf('('))); 80 props.push("set " + name + setter.slice(setter.indexOf('(')));
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | zero-sized-array.rs | 26 ::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/sfntly/java/src/com/google/typography/font/sfntly/data/ |
H A D | FontData.java | 142 * Makes a slice of this FontData. The returned slice will share the data with 145 * @param offset the start of the slice 146 * @param length the number of bytes in the slice 147 * @return a slice of the original FontData 149 public abstract FontData slice(int offset, int length); in slice() method in FontData 152 * Makes a bottom bound only slice of this array. The returned slice will 155 * @param offset the start of the slice 156 * @return a slice o 158 public abstract FontData slice(int offset); slice() method in FontData [all...] |
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/ |
H A D | CMapFormat0.java | 69 super(data == null ? null : data.slice( in Builder() 75 super(data == null ? null : data.slice( in Builder()
|
H A D | CMapFormat14.java | 37 super(data == null ? null : data.slice( in Builder() 43 super(data == null ? null : data.slice( in Builder()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | spliceTuples.js | 31 if (!ar) ar = Array.prototype.slice.call(from, 0, i);
35 return to.concat(ar || Array.prototype.slice.call(from));
|
H A D | arrayLiteralSpread.js | 30 if (!ar) ar = Array.prototype.slice.call(from, 0, i);
34 return to.concat(ar || Array.prototype.slice.call(from));
|
H A D | arrayLiterals2ES5.js | 68 if (!ar) ar = Array.prototype.slice.call(from, 0, i);
72 return to.concat(ar || Array.prototype.slice.call(from));
|
H A D | controlFlowIIFE.js | 46 test.slice(1); // No error 114 test.slice(1); // No error
|
H A D | destructuringArrayBindingPatternAndAssignment2.js | 41 if (!ar) ar = Array.prototype.slice.call(from, 0, i);
45 return to.concat(ar || Array.prototype.slice.call(from));
|
H A D | excessiveStackDepthFlatArray.js | 47 if (!ar) ar = Array.prototype.slice.call(from, 0, i);
51 return to.concat(ar || Array.prototype.slice.call(from));
|
H A D | literalFreshnessPropagationOnNarrowing.js | 68 if (!ar) ar = Array.prototype.slice.call(from, 0, i);
72 return to.concat(ar || Array.prototype.slice.call(from));
|
/third_party/skia/modules/canvaskit/htmlcanvas/ |
H A D | radialgradient.js | 42 rcg._colors = this._colors.slice(); 43 rcg._pos = this._pos.slice();
|
/third_party/rust/crates/nom/src/ |
H A D | lib.rs | 408 pub use core::{cmp, convert, fmt, iter, mem, ops, option, result, slice, str}; 424 slice, str, string, vec,
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | string.rs | 52 let slice = CStr::from_ptr(self.as_ptr()).to_bytes(); in deref() 53 str::from_utf8_unchecked(slice) in deref()
|
H A D | bio.rs | 5 use std::slice; 66 slice::from_raw_parts(ptr as *const _ as *const _, len as usize) in get_buf()
|
/third_party/mesa3d/src/broadcom/vulkan/ |
H A D | v3dvx_cmd_buffer.c | 110 const struct v3d_resource_slice *slice = in cmd_buffer_render_pass_emit_load() local 137 load.memory_format = slice->tiling; in cmd_buffer_render_pass_emit_load() 139 if (slice->tiling == V3D_TILING_UIF_NO_XOR || in cmd_buffer_render_pass_emit_load() 140 slice->tiling == V3D_TILING_UIF_XOR) { in cmd_buffer_render_pass_emit_load() 142 slice->padded_height_of_output_image_in_uif_blocks; in cmd_buffer_render_pass_emit_load() 143 } else if (slice->tiling == V3D_TILING_RASTER) { in cmd_buffer_render_pass_emit_load() 144 load.height_in_ub_or_stride = slice->stride; in cmd_buffer_render_pass_emit_load() 311 const struct v3d_resource_slice *slice = in cmd_buffer_render_pass_emit_store() local 339 store.memory_format = slice->tiling; in cmd_buffer_render_pass_emit_store() 341 if (slice in cmd_buffer_render_pass_emit_store() 907 const struct v3d_resource_slice *slice = cmd_buffer_emit_render_pass_rcl() local [all...] |
/kernel/linux/linux-5.10/drivers/misc/cxl/ |
H A D | file.c | 28 #define CXL_AFU_MINOR_D(afu) (CXL_CARD_MINOR(afu->adapter) + 1 + (3 * afu->slice)) 49 int slice = CXL_DEVT_AFU(inode->i_rdev); in __afu_open() local 52 pr_devel("afu_open afu%i.%i\n", slice, adapter_num); in __afu_open() 57 if (slice > adapter->slices) in __afu_open() 61 if (!(afu = adapter->afu[slice])) { in __afu_open() 297 afuid.afu_offset = ctx->afu->slice; in afu_ioctl_get_afu_id() 578 "afu%i.%i%s", afu->adapter->adapter_num, afu->slice, postfix); in cxl_add_chardev()
|