Home
last modified time | relevance | path

Searched refs:offsetValue (Results 1 – 9 of 9) sorted by relevance

/external/fonttools/Lib/fontTools/ttLib/tables/
DV_D_M_X_.py86 for offsetIndex, offsetValue in enumerate(_offsets):
89 if currOffset == offsetValue:
DE_B_L_C_.py483 dataList += [struct.pack(dataFormat, offsetValue) for offsetValue in offsetArray]
/external/lottie/lottie/src/main/java/com/airbnb/lottie/utils/
DUtils.java110 Path path, float startValue, float endValue, float offsetValue) { in applyTrimPathIfNeeded() argument
128 float offset = offsetValue * length; in applyTrimPathIfNeeded()
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/
DTimestamps.java269 String offsetValue = value.substring(timezoneOffsetPosition + 1); in parse() local
270 long offset = parseTimezoneOffset(offsetValue); in parse()
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetSCSU.java699 private boolean isInOffsetWindowOrDirect(int offsetValue, int a){ in isInOffsetWindowOrDirect() argument
700 …return (a & UConverterConstants.UNSIGNED_INT_MASK)<=(offsetValue & UConverterConstants.UNSIGNED_IN… in isInOffsetWindowOrDirect()
701 …((a & UConverterConstants.UNSIGNED_INT_MASK)>=(offsetValue & UConverterConstants.UNSIGNED_INT_MASK… in isInOffsetWindowOrDirect()
/external/swiftshader/src/Pipeline/
DSpirvShaderImage.cpp310 auto offsetValue = Operand(this, state, offsetId); in EmitImageSampleUnconditional() local
311 instruction.offset = offsetValue.componentCount; in EmitImageSampleUnconditional()
313 for(uint32_t j = 0; j < offsetValue.componentCount; j++, i++) in EmitImageSampleUnconditional()
315 in[i] = As<SIMD::Float>(offsetValue.Int(j)); // Integer values, but transfered as float. in EmitImageSampleUnconditional()
/external/clang/lib/CodeGen/
DCGObjCGNU.cpp2334 llvm::Constant *offsetValue = llvm::ConstantExpr::getGetElementPtr( in GenerateClass() local
2340 offset->setInitializer(offsetValue); in GenerateClass()
2347 offset = new llvm::GlobalVariable(TheModule, offsetValue->getType(), in GenerateClass()
2348 false, llvm::GlobalValue::ExternalLinkage, offsetValue, Name); in GenerateClass()
/external/llvm-project/clang/lib/CodeGen/
DCGObjCGNU.cpp3562 llvm::Constant *offsetValue = llvm::ConstantExpr::getGetElementPtr( in GenerateClass() local
3568 offset->setInitializer(offsetValue); in GenerateClass()
3575 new llvm::GlobalVariable(TheModule, offsetValue->getType(), in GenerateClass()
3576 false, llvm::GlobalValue::ExternalLinkage, offsetValue, Name); in GenerateClass()
/external/angle/src/compiler/translator/
DParseContext.cpp6627 int offsetValue = values[i].getIConst(); in checkSingleTextureOffset() local
6628 if (offsetValue > maxOffsetValue || offsetValue < minOffsetValue) in checkSingleTextureOffset()
6631 tokenStream << offsetValue; in checkSingleTextureOffset()