Searched defs:FieldValue (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp178 llvm::APInt FieldValue = CI->getValue(); local
180 // Promote the size of FieldValue if necessary
184 if (FieldSize > FieldValue.getBitWidth())
185 FieldValue = FieldValue.zext(FieldSize);
187 // Truncate the size of FieldValue to the bit field size.
188 if (FieldSize < FieldValue.getBitWidth())
189 FieldValue = FieldValue.trunc(FieldSize);
200 BitsInPreviousByte >= FieldValue
507 const APValue &FieldValue = local
[all...]

Completed in 61 milliseconds