Home
last modified time | relevance | path

Searched refs:slice (Results 2051 - 2075 of 2326) sorted by relevance

1...<<81828384858687888990>>...94

/third_party/python/Modules/_ctypes/
H A D_ctypes.c3188 * Set a slice in object 'dst', which has the type 'type',
3895 /* Trivial cases, where we either return inargs itself, or a slice of it. */ in _build_callargs()
5265 PySliceObject *slice = (PySliceObject *)item; in Pointer_subscript() local
5275 slicing, we have to dissect the slice object ourselves.*/ in Pointer_subscript()
5276 if (slice->step == Py_None) { in Pointer_subscript()
5280 step = PyNumber_AsSsize_t(slice->step, in Pointer_subscript()
5286 "slice step cannot be zero"); in Pointer_subscript()
5290 if (slice->start == Py_None) { in Pointer_subscript()
5293 "slice start is required " in Pointer_subscript()
5300 start = PyNumber_AsSsize_t(slice in Pointer_subscript()
[all...]
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fShaderImageLoadStoreTests.cpp624 PixelBufferAccess getSliceAccess (int slice) { return getSliceAccessInternal(slice); } in getSliceAccess() argument
628 ConstPixelBufferAccess getSliceAccess (int slice) const { return getSliceAccessInternal(slice); } in getSliceAccess()
637 PixelBufferAccess getSliceAccessInternal (int slice) const;
717 PixelBufferAccess LayeredImage::getSliceAccessInternal (int slice) const in getSliceAccessInternal()
720 return tcu::getSubregion(srcAccess, 0, 0, slice, srcAccess.getWidth(), srcAccess.getHeight(), 1); in getSliceAccessInternal()
837 //! Base for a functor for verifying and logging a 2d texture layer (2d image, cube face, 3d slice, 2d layer).
1104 //! An ImageLayerVerifier that simply compares the result slice to a slice i
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUBinary.java700 * Same as ByteBuffer.slice() plus preserving the byte order.
703 ByteBuffer b = bytes.slice(); in sliceWithOrder()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DICUBinary.java705 * Same as ByteBuffer.slice() plus preserving the byte order.
708 ByteBuffer b = bytes.slice(); in sliceWithOrder()
/third_party/mesa3d/src/gallium/include/pipe/
H A Dp_video_state.h340 /* slice header */
405 /** Starting MB address for this slice. */
407 /** Number of macroblocks in this slice. */
409 /** slice type. */
522 struct pipe_h265_enc_slice_param slice; member
/third_party/node/test/parallel/
H A Dtest-crypto-authenticated.js489 c.update(msg.slice(1));
/third_party/node/deps/v8/third_party/jinja2/
H A Dnodes.py773 """Represents a slice object. This must only be used as argument for
787 return slice(const(self.start), const(self.stop), const(self.step))
/third_party/node/tools/inspector_protocol/jinja2/
H A Dnodes.py741 """Represents a slice object. This must only be used as argument for
752 return slice(const(self.start), const(self.stop), const(self.step))
/third_party/node/deps/npm/node_modules/read-package-json/lib/
H A Dread-json.js59 content = content.slice(1)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
H A DCallLowering.cpp296 j += Handler.assignCustomValue(Args[i], makeArrayRef(ArgLocs).slice(j)); in handleAssignments()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp329 llvm::toHex(BuildID.slice(1), /*LowerCase=*/true)); in findDebugBinary()
/third_party/skia/third_party/externals/jinja2/
H A Dnodes.py773 """Represents a slice object. This must only be used as argument for
787 return slice(const(self.start), const(self.stop), const(self.step))
/third_party/protobuf/python/google/protobuf/internal/
H A Dcontainers.py307 if isinstance(key, slice): # PY3
/third_party/rust/crates/rustix/src/backend/linux_raw/
H A Dconv.rs193 pub(super) fn slice<T: Sized, Num0: ArgNumber, Num1: ArgNumber>(
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp4760 Opt = StringSwitch<unsigned>(OptStr.slice(0, OptStr.size()).lower()) in parseMemBarrierOptOperand()
4963 std::string SpecReg = Mask.slice(Start, Next).lower(); in parseMSRMaskOperand()
4965 Flags = Mask.slice(Next+1, Mask.size()); in parseMSRMaskOperand()
6265 Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 2); in splitMnemonic()
6285 Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 1); in splitMnemonic()
6299 Mnemonic = Mnemonic.slice(0, Mnemonic.size()-2); in splitMnemonic()
6313 Mnemonic = Mnemonic.slice(0, Mnemonic.size()-1); in splitMnemonic()
6321 ITMask = Mnemonic.slice(2, Mnemonic.size()); in splitMnemonic()
6322 Mnemonic = Mnemonic.slice(0, 2); in splitMnemonic()
6326 ITMask = Mnemonic.slice( in splitMnemonic()
[all...]
/third_party/node/deps/v8/src/torque/
H A Dimplementation-visitor.cc1424 LocationReference slice = LocationReference::HeapSlice( in GenerateFieldReference() local
1430 slice, {TypeOracle::GetConstInt31Type(), "0"}); in GenerateFieldReference()
1432 return slice; in GenerateFieldReference()
1488 VisitResult slice = field.GetVisitResult(); in InitializeClass() local
1491 {{slice, initializer_value}, {}}); in InitializeClass()
2376 LocationReference slice, VisitResult index) { in GenerateReferenceToItemInHeapSlice()
2377 DCHECK(slice.IsHeapSlice()); in GenerateReferenceToItemInHeapSlice()
2379 const StructType* slice_type = *slice.heap_slice().type()->StructSupertype(); in GenerateReferenceToItemInHeapSlice()
2382 // on the underlying slice implementation. in GenerateReferenceToItemInHeapSlice()
2384 LocationReference::Temporary(slice in GenerateReferenceToItemInHeapSlice()
2375 GenerateReferenceToItemInHeapSlice( LocationReference slice, VisitResult index) GenerateReferenceToItemInHeapSlice() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp478 return {StringRef(Strtab.data() + Record[0], Record[1]), Record.slice(2)}; in readNameFromStrtab()
5915 ArrayRef<uint64_t>(Record).slice(RefListStartIndex, NumRefs)); in parseEntireSummary()
5919 ArrayRef<uint64_t>(Record).slice(CallGraphEdgeStartIndex), in parseEntireSummary()
5975 makeRefList(ArrayRef<uint64_t>(Record).slice(RefArrayStart)); in parseEntireSummary()
5996 ArrayRef<uint64_t>(Record).slice(RefListStartIndex, NumRefs)); in parseEntireSummary()
6055 ArrayRef<uint64_t>(Record).slice(RefListStartIndex, NumRefs)); in parseEntireSummary()
6058 ArrayRef<uint64_t>(Record).slice(CallGraphEdgeStartIndex), in parseEntireSummary()
6111 makeRefList(ArrayRef<uint64_t>(Record).slice(RefArrayStart)); in parseEntireSummary()
6386 F.Mods.push_back({Stream.getBitcodeBytes().slice( in getBitcodeFileContents()
/third_party/typescript/lib/
H A Dtsc.js21 if (!ar) ar = Array.prototype.slice.call(from, 0, i);
25 return to.concat(ar || Array.prototype.slice.call(from));
341 var result = array.slice(0, i);
397 var result = array.slice(0, i);
496 result = array.slice(0, i);
633 var v = mapfn(array.slice(start, pos), previousKey, start, pos);
733 array.length === 1 ? array.slice() :
785 for (var _i = 0, _a = array.slice(1); _i < _a.length; _i++) {
818 result = array.slice(0, i);
892 return from.slice(star
[all...]
H A DtypingsInstaller.js21 if (!ar) ar = Array.prototype.slice.call(from, 0, i);
25 return to.concat(ar || Array.prototype.slice.call(from));
405 var result = array.slice(0, i);
461 var result = array.slice(0, i);
571 result = array.slice(0, i);
708 var v = mapfn(array.slice(start, pos), previousKey, start, pos);
818 array.length === 1 ? array.slice() :
877 for (var _i = 0, _a = array.slice(1); _i < _a.length; _i++) {
910 result = array.slice(0, i);
1004 return from.slice(star
[all...]
H A Dtsserver.js21 if (!ar) ar = Array.prototype.slice.call(from, 0, i);
25 return to.concat(ar || Array.prototype.slice.call(from));
425 var result = array.slice(0, i);
481 var result = array.slice(0, i);
591 result = array.slice(0, i);
728 var v = mapfn(array.slice(start, pos), previousKey, start, pos);
838 array.length === 1 ? array.slice() :
897 for (var _i = 0, _a = array.slice(1); _i < _a.length; _i++) {
930 result = array.slice(0, i);
1024 return from.slice(star
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DConstantFolding.cpp777 SrcElemTy, Ops.slice(1, i - 1)))) && in CastGEPIndices()
1037 Ops.slice(1), GEP->isInBounds(), in ConstantFoldInstOperandsImpl()
1052 return ConstantFoldCall(Call, F, Ops.slice(0, Ops.size() - 1), TLI); in ConstantFoldInstOperandsImpl()
/third_party/ffmpeg/libavcodec/
H A Dvp3.c243 * in Hilbert order, making the minimum slice height 64 for 4:2:0 and 32
2069 * Perform the final rendering for a particular slice of data.
2070 * The slice number ranges from 0..(c_superblock_height - 1).
2072 static void render_slice(Vp3DecodeContext *s, int slice) in render_slice() argument
2081 if (slice >= s->c_superblock_height) in render_slice()
2096 int sb_x, sb_y = slice << (!plane && s->chroma_y_shift); in render_slice()
2113 /* for each superblock row in the slice (both of them)... */ in render_slice()
2259 /* this looks like a good place for slice dispatch... */ in render_slice()
2261 * if (slice == s->macroblock_height - 1) in render_slice()
2262 * dispatch (both last slice in render_slice()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderTextureGatherTests.cpp177 for (int slice = 0; slice < dst.getDepth(); slice++) in fillWithRandomColorTiles()
187 tcu::clear(tcu::getSubregion(dst, xBegin, yBegin, slice, xEnd-xBegin, yEnd-yBegin, 1), color); in fillWithRandomColorTiles()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp442 Class = In.slice(In.find('[') + 1, In.find(' '));
447 Class = In.slice(In.find('[') + 1, In.find('('));
448 Category = In.slice(In.find('[') + 1, In.find(' '));
452 return In.slice(In.find(' ') + 1, In.find(']'));
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/
H A DvktShaderRenderTextureGatherTests.cpp177 for (int slice = 0; slice < dst.getDepth(); slice++) in fillWithRandomColorTiles()
187 tcu::clear(tcu::getSubregion(dst, xBegin, yBegin, slice, xEnd-xBegin, yEnd-yBegin, 1), color); in fillWithRandomColorTiles()

Completed in 103 milliseconds

1...<<81828384858687888990>>...94