Home
last modified time | relevance | path

Searched refs:IsInBounds (Results 1 – 19 of 19) sorted by relevance

/external/pdfium/core/fxcodec/jbig2/
DJBig2_BitStream.cpp28 if (!IsInBounds()) in readNBits()
50 if (!IsInBounds()) in readNBits()
72 if (!IsInBounds()) in read1Bit()
81 if (!IsInBounds()) in read1Bit()
90 if (!IsInBounds()) in read1Byte()
125 return IsInBounds() ? m_Span[m_dwByteIdx] : 0; in getCurByte()
129 if (IsInBounds()) in incByteIdx()
134 return IsInBounds() ? m_Span[m_dwByteIdx] : 0xFF; in getCurByte_arith()
183 bool CJBig2_BitStream::IsInBounds() const { in IsInBounds() function in CJBig2_BitStream
DJBig2_BitStream.h43 bool IsInBounds() const;
DJBig2_ArithDecoder.cpp122 if (!m_pStream->IsInBounds()) in BYTEIN()
/external/llvm/include/llvm/IR/
DOperator.h367 IsInBounds = (1 << 0) enumerator
374 (SubclassOptionalData & ~IsInBounds) | (B * IsInBounds); in setIsInBounds()
380 return SubclassOptionalData & IsInBounds; in isInBounds()
/external/angle/third_party/spirv-tools/src/source/opt/
Dcombine_access_chains.cpp259 auto IsInBounds = [](SpvOp opcode) { in UpdateOpcode() local
265 if (!IsInBounds(base_opcode)) return SpvOpPtrAccessChain; in UpdateOpcode()
267 if (!IsInBounds(base_opcode)) return SpvOpAccessChain; in UpdateOpcode()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dcombine_access_chains.cpp259 auto IsInBounds = [](SpvOp opcode) { in UpdateOpcode() local
265 if (!IsInBounds(base_opcode)) return SpvOpPtrAccessChain; in UpdateOpcode()
267 if (!IsInBounds(base_opcode)) return SpvOpAccessChain; in UpdateOpcode()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dcombine_access_chains.cpp259 auto IsInBounds = [](SpvOp opcode) { in UpdateOpcode() local
265 if (!IsInBounds(base_opcode)) return SpvOpPtrAccessChain; in UpdateOpcode()
267 if (!IsInBounds(base_opcode)) return SpvOpAccessChain; in UpdateOpcode()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DOperator.h433 IsInBounds = (1 << 0), enumerator
439 (SubclassOptionalData & ~IsInBounds) | (B * IsInBounds); in setIsInBounds()
445 return SubclassOptionalData & IsInBounds; in isInBounds()
/external/v8/src/wasm/
Dwasm-external-refs.cc498 if (!base::IsInBounds<uint64_t>(dst, size, mem_size)) return kOutOfBounds; in memory_init_wrapper()
501 if (!base::IsInBounds<uint32_t>(src, size, seg_size)) return kOutOfBounds; in memory_init_wrapper()
523 if (!base::IsInBounds<uint64_t>(dst, size, mem_size)) return kOutOfBounds; in memory_copy_wrapper()
524 if (!base::IsInBounds<uint64_t>(src, size, mem_size)) return kOutOfBounds; in memory_copy_wrapper()
548 if (!base::IsInBounds<uint64_t>(dst, size, mem_size)) return kOutOfBounds; in memory_fill_wrapper()
Dmodule-instantiate.cc673 if (!base::IsInBounds<uint32_t>( in Build()
687 if (!base::IsInBounds<uint64_t>(base, seg.source.length(), in Build()
884 DCHECK(base::IsInBounds<uint64_t>(dest_offset, size, in LoadDataSegments()
1919 if (!base::IsInBounds<uint64_t>(dst, count, table_object->current_length()) || in LoadElemSegmentImpl()
1920 !base::IsInBounds<uint64_t>( in LoadElemSegmentImpl()
Dwasm-objects.cc386 bool WasmTableObject::IsInBounds(Isolate* isolate, in IsInBounds() function in v8::internal::WasmTableObject
439 DCHECK(IsInBounds(isolate, table, index)); in Set()
479 DCHECK(IsInBounds(isolate, table, index)); in Get()
1383 if (!base::IsInBounds(dst, count, max_dst) || in CopyTableEntries()
1384 !base::IsInBounds(src, count, max_src)) { in CopyTableEntries()
Dwasm-objects.h231 static bool IsInBounds(Isolate* isolate, Handle<WasmTableObject> table,
Dwasm-js.cc1661 if (!i::WasmTableObject::IsInBounds(i_isolate, receiver, index)) { in WebAssemblyTableGet()
1687 if (!i::WasmTableObject::IsInBounds(i_isolate, table_object, index)) { in WebAssemblyTableSet()
/external/v8/src/base/
Dbounds.h32 inline constexpr bool IsInBounds(T index, T length, T max) { in IsInBounds() function
/external/v8/src/runtime/
Druntime-wasm.cc374 if (!WasmTableObject::IsInBounds(isolate, table, entry_index)) { in RUNTIME_FUNCTION()
401 if (!WasmTableObject::IsInBounds(isolate, table, entry_index)) { in RUNTIME_FUNCTION()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DConstants.cpp1991 unsigned SubClassOptionalData = InBounds ? GEPOperator::IsInBounds : 0; in getGetElementPtr()
/external/llvm/lib/IR/
DConstants.cpp1941 InBounds ? GEPOperator::IsInBounds : 0, None, in getGetElementPtr()
/external/v8/src/wasm/baseline/
Dliftoff-compiler.cc2100 !base::IsInBounds<uintptr_t>(offset, access_size, in BoundsCheckMem()
/external/v8/src/compiler/
Dwasm-compiler.cc3687 !base::IsInBounds<uintptr_t>(offset, access_size, in BoundsCheckMem()