Searched defs:Length (Results 201 - 225 of 267) sorted by relevance

1234567891011

/external/skia/src/gpu/
H A DGrDistanceFieldGenFromVector.cpp76 static double Length(double x, double y) { function in struct:DPoint
83 return Length(a.fX - b.fX, a.fY - b.fY);
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DOpenCL.std.h146 Length = 106, enumerator in enum:OpenCLLIB::Entrypoints
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DCOFF.h278 uint32_t Length; member in struct:llvm::COFF::AuxiliarySectionDefinition
/external/swiftshader/third_party/LLVM/include/llvm-c/
H A DCore.h590 unsigned Length, LLVMBool DontNullTerminate);
595 LLVMValueRef LLVMConstString(const char *Str, unsigned Length,
598 LLVMValueRef *ConstantVals, unsigned Length);
1201 inline T **unwrap(LLVMValueRef *Vals, unsigned Length) { argument
1203 for (LLVMValueRef *I = Vals, *E = Vals + Length; I != E; ++I)
1206 (void)Length;
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DRegisterCoalescer.cpp1088 unsigned Length = LIS->getApproximateInstructionCount(JoinVInt); local
1089 if (Length > Threshold) {
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp1518 ConstantInt *Length = dyn_cast<ConstantInt>(MI->getLength()); local
1519 if (Length == 0)
1521 isSafeMemAccess(Offset, Length->getZExtValue(), 0,
1773 ConstantInt *Length = dyn_cast<ConstantInt>(MI->getLength()); local
1774 uint64_t MemSize = Length->getZExtValue();
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DCommandLine.cpp618 static Option *getOptionPred(StringRef Name, size_t &Length, argument
633 Length = Name.size();
651 size_t Length = 0;
652 Option *PGOpt = getOptionPred(Arg, Length, isPrefixedOrGrouping, OptionsMap);
660 Value = Arg.substr(Length);
661 Arg = Arg.substr(0, Length);
672 StringRef OneArgName = Arg.substr(0, Length);
673 Arg = Arg.substr(Length);
684 PGOpt = getOptionPred(Arg, Length, isGrouping, OptionsMap);
685 } while (PGOpt && Length !
[all...]
/external/syslinux/efi32/include/efi/
H A Defidevp.h29 UINT8 Length[2]; member in struct:_EFI_DEVICE_PATH
49 #define DevicePathNodeLength(a) ( ((a)->Length[0]) | ((a)->Length[1] << 8) )
59 (a)->Length[0] = (UINT8) (l); \
60 (a)->Length[1] = (UINT8) ((l) >> 8); \
66 (a)->Length[0] = sizeof(EFI_DEVICE_PATH); \
67 (a)->Length[1] = 0; \
/external/syslinux/efi64/include/efi/
H A Defidevp.h29 UINT8 Length[2]; member in struct:_EFI_DEVICE_PATH
49 #define DevicePathNodeLength(a) ( ((a)->Length[0]) | ((a)->Length[1] << 8) )
59 (a)->Length[0] = (UINT8) (l); \
60 (a)->Length[1] = (UINT8) ((l) >> 8); \
66 (a)->Length[0] = sizeof(EFI_DEVICE_PATH); \
67 (a)->Length[1] = 0; \
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/
H A Defidevp.h29 UINT8 Length[2]; member in struct:_EFI_DEVICE_PATH
49 #define DevicePathNodeLength(a) ( ((a)->Length[0]) | ((a)->Length[1] << 8) )
59 (a)->Length[0] = (UINT8) (l); \
60 (a)->Length[1] = (UINT8) ((l) >> 8); \
66 (a)->Length[0] = sizeof(EFI_DEVICE_PATH); \
67 (a)->Length[1] = 0; \
/external/syslinux/gpxe/src/include/gpxe/efi/Protocol/
H A DDevicePath.h64 UINT8 Length[2]; ///< Specific Device Path data. Type and Sub-Type define member in struct:__anon22179
65 ///< type of data. Size of data is included in Length.
/external/v8/src/ast/
H A Dast-types.h571 int LengthForTesting() { return Length(); }
576 int Length() { return length_; } function in class:v8::internal::AstBitsetType::AstStructuralType
579 DCHECK(0 <= i && i < this->Length());
584 DCHECK(0 <= i && i < this->Length());
589 DCHECK(2 <= length && length <= this->Length());
609 int Arity() { return this->Length() - 2; }
642 int Arity() { return this->Length(); }
/external/clang/lib/Frontend/
H A DASTUnit.cpp2619 void ASTUnit::findFileRegionDecls(FileID File, unsigned Offset, unsigned Length, argument
2626 return Ctx->getExternalSource()->FindFileRegionDecls(File, Offset, Length,
2654 std::make_pair(Offset + Length, (Decl *)nullptr), llvm::less_first());
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp811 uint64_t Length = UINT64_MAX; local
818 Length = ExtentInt.getLimitedValue() * SVB.getContext().getCharWidth();
821 Length = FR->getDecl()->getBitWidthValue(SVB.getContext());
834 NextKey.getOffset() - TopKey.getOffset() < Length) {
/external/freetype/include/freetype/internal/
H A Dtttypes.h128 /* Length :: The table length (in bytes). */
135 FT_ULong Length; /* table length */ member in struct:TT_TableRec_
/external/llvm/include/llvm/Object/
H A DCOFF.h489 support::ulittle32_t Length; member in struct:llvm::object::coff_aux_section_definition
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp564 unsigned Length = APLength == 0 ? 64 : APLength.getZExtValue(); local
568 unsigned End = Index + Length;
571 // Since variables 'Index' and 'Length' are unsigned values
579 if ((Length % 8) == 0 && (Index % 8) == 0) {
581 Length /= 8;
589 for (int i = 0; i != (int)Length; ++i)
592 for (int i = Length; i != 8; ++i)
605 // Length bits.
608 Elt = Elt.lshr(Index).zextOrTrunc(Length);
644 unsigned Length local
[all...]
/external/mesa3d/src/gallium/state_trackers/nine/
H A Ddevice9.c1129 UINT Length,
1140 DBG("This=%p Length=%u Usage=%x FVF=%x Pool=%u ppOut=%p pSharedHandle=%p\n",
1141 This, Length, Usage, FVF, Pool, ppVertexBuffer, pSharedHandle);
1153 desc.Size = Length;
1167 UINT Length,
1178 DBG("This=%p Length=%u Usage=%x Format=%s Pool=%u ppOut=%p "
1179 "pSharedHandle=%p\n", This, Length, Usage,
1191 desc.Size = Length;
1128 NineDevice9_CreateVertexBuffer( struct NineDevice9 *This, UINT Length, DWORD Usage, DWORD FVF, D3DPOOL Pool, IDirect3DVertexBuffer9 **ppVertexBuffer, HANDLE *pSharedHandle ) argument
1166 NineDevice9_CreateIndexBuffer( struct NineDevice9 *This, UINT Length, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, IDirect3DIndexBuffer9 **ppIndexBuffer, HANDLE *pSharedHandle ) argument
/external/pdfium/third_party/freetype/include/freetype/internal/
H A Dtttypes.h128 /* Length :: The table length (in bytes). */
135 FT_ULong Length; /* table length */ member in struct:TT_TableRec_
/external/swiftshader/third_party/LLVM/lib/Target/CBackend/
H A DCBackend.cpp1627 static void PrintEscapedString(const char *Str, unsigned Length, argument
1629 for (unsigned i = 0; i != Length; ++i) {
/external/syslinux/gpxe/src/include/gpxe/efi/Uefi/
H A DUefiSpec.h1011 @param Length Number of bytes to copy from Source to Destination.
1019 IN UINTN Length
1487 UINT64 Length; member in struct:__anon22274
/external/v8/src/parsing/
H A Dparser.h123 int Length() const { function in class:v8::internal::ParseData
/external/v8/src/s390/
H A Dconstants-s390.h1958 // Length can be determined by the first nibble.
2320 inline int Length() const { return Bits<SixByteInstr, int>(39, 32); } function in class:v8::internal::SSInstruction
/external/v8/tools/
H A Dgrokdump.py1339 def Length(self): member in class:DescriptorArray
1383 length = self.Length()
1409 def Length(self): member in class:TransitionArray
1416 length = self.Length()
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp1811 unsigned Length = End.second - Begin.second; local
1813 OS << " \"remove\": " << Length << ",\n"; local

Completed in 923 milliseconds

1234567891011