Lines Matching defs:literal
1359 unsigned literal;
1360 static_assert(sizeof(literal) == sizeof(floatValue), "sizeof(unsigned) != sizeof(float)");
1361 memcpy(&literal, &floatValue, sizeof(literal));
1362 literals.push_back(literal);
1364 unsigned literal = constant->getConstArray()[0].getIConst();
1365 literals.push_back(literal);
1367 unsigned literal = constant->getConstArray()[0].getUConst();
1368 literals.push_back(literal);
1370 unsigned literal = constant->getConstArray()[0].getBConst();
1371 literals.push_back(literal);
1374 unsigned literal = 0;
1375 char* literalPtr = reinterpret_cast<char*>(&literal);
1383 literals.push_back(literal);
1384 literalPtr = reinterpret_cast<char*>(&literal);
1389 // Partial literal is padded with 0
1393 literals.push_back(literal);
2655 // Will be translated to a literal value, make a placeholder here
2682 // Translate the constant to a literal value
3643 // Will be translated to a literal value, make a placeholder here
3749 // Translate the constant to a literal value
4074 return; // Translated to a literal value, skip further processing
4559 unsigned literal;
4560 static_assert(sizeof(literal) == sizeof(floatValue), "sizeof(unsigned) != sizeof(float)");
4561 memcpy(&literal, &floatValue, sizeof(literal));
4562 operands.push_back({false, literal});
4564 unsigned literal = constant->getConstArray()[0].getIConst();
4565 operands.push_back({false, literal});
4567 unsigned literal = constant->getConstArray()[0].getUConst();
4568 operands.push_back({false, literal});
4570 unsigned literal = constant->getConstArray()[0].getBConst();
4571 operands.push_back({false, literal});
4574 unsigned literal = 0;
4575 char* literalPtr = reinterpret_cast<char*>(&literal);
4583 operands.push_back({false, literal});
4584 literalPtr = reinterpret_cast<char*>(&literal);
4589 // Partial literal is padded with 0
4593 operands.push_back({false, literal});