Searched refs:m_code (Results 1 – 4 of 4) sorted by relevance
97 m_code = (code != null ? code : EMPTY_BYTE_ARRAY); in CodeAttribute_info()98 m_codeSize = m_code.length; in CodeAttribute_info()110 return m_code; in getCode()171 … _clone.m_code = (m_codeSize == 0 ? EMPTY_BYTE_ARRAY : (byte []) m_code.clone ()); // does not trim in clone()189 out.write (m_code, 0, m_codeSize); // TODO: THIS IS WRONG in writeInClassFormat()198 m_code = code; in setCode()219 m_code = new byte [(int) code_length]; in CodeAttribute_info()220 bytes.readFully (m_code); in CodeAttribute_info()252 private byte [] m_code; // never null [valid content extent is m_codeSize] field in CodeAttribute_info
1635 out_source.m_parts[i].m_length = static_cast<glw::GLint>(out_source.m_parts[i].m_code.length()); in initShaderSource()1637 …out_source.m_parts[i].m_code.append("This should be ignored by compiler, as source length is provi… in initShaderSource()1770 if (true == compute_shader.m_parts[0].m_code.empty()) in testCompute()2054 if (true == compute_shader.m_parts[0].m_code.empty()) in testCompute()2661 source.m_parts[0].m_code = shader_template_part_0; in prepareComputShaderSource()2662 source.m_parts[1].m_code = shader_template_part_1; in prepareComputShaderSource()2664 replaceAllCaseTokens(source.m_parts[0].m_code); in prepareComputShaderSource()2665 replaceAllCaseTokens(source.m_parts[1].m_code); in prepareComputShaderSource()2669 source.m_parts[0].m_code = shader_template_part_0; in prepareComputShaderSource()2670 source.m_parts[0].m_code.append(shader_template_part_1); in prepareComputShaderSource()[all …]
221 std::string m_code; member
182 …TestStatus (qpTestResult code, const std::string& description) : m_code(code), m_description(desc… in TestStatus()184 bool isComplete (void) const { return m_code != QP_TEST_RESULT_LAST; } in isComplete()185 qpTestResult getCode (void) const { DE_ASSERT(isComplete()); return m_code; } in getCode()193 qpTestResult m_code; member in tcu::TestStatus