Home
last modified time | relevance | path

Searched refs:addA (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Renderer/
DETC_Decoder.cpp62 const bgra8& addA(int alpha) in addA() function
446 if((x + 0) < w) color[0] = subblockColors0[getIndex(0, j)].addA(alphaValues[j][0]); in decodeIndividualOrDifferentialBlock()
447 if((x + 1) < w) color[1] = subblockColors0[getIndex(1, j)].addA(alphaValues[j][1]); in decodeIndividualOrDifferentialBlock()
448 if((x + 2) < w) color[2] = subblockColors0[getIndex(2, j)].addA(alphaValues[j][2]); in decodeIndividualOrDifferentialBlock()
449 if((x + 3) < w) color[3] = subblockColors0[getIndex(3, j)].addA(alphaValues[j][3]); in decodeIndividualOrDifferentialBlock()
456 if((x + 0) < w) color[0] = subblockColors1[getIndex(0, j)].addA(alphaValues[j][0]); in decodeIndividualOrDifferentialBlock()
457 if((x + 1) < w) color[1] = subblockColors1[getIndex(1, j)].addA(alphaValues[j][1]); in decodeIndividualOrDifferentialBlock()
458 if((x + 2) < w) color[2] = subblockColors1[getIndex(2, j)].addA(alphaValues[j][2]); in decodeIndividualOrDifferentialBlock()
459 if((x + 3) < w) color[3] = subblockColors1[getIndex(3, j)].addA(alphaValues[j][3]); in decodeIndividualOrDifferentialBlock()
468 if((x + 0) < w) color[0] = subblockColors0[getIndex(0, j)].addA(alphaValues[j][0]); in decodeIndividualOrDifferentialBlock()
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Device/
DETC_Decoder.cpp61 const bgra8 &addA(unsigned char alpha) in addA() function
443 if((x + 0) < w) color[0] = subblockColors0[getIndex(0, j)].addA(alphaValues[j][0]); in decodeIndividualOrDifferentialBlock()
444 if((x + 1) < w) color[1] = subblockColors0[getIndex(1, j)].addA(alphaValues[j][1]); in decodeIndividualOrDifferentialBlock()
445 if((x + 2) < w) color[2] = subblockColors0[getIndex(2, j)].addA(alphaValues[j][2]); in decodeIndividualOrDifferentialBlock()
446 if((x + 3) < w) color[3] = subblockColors0[getIndex(3, j)].addA(alphaValues[j][3]); in decodeIndividualOrDifferentialBlock()
453 if((x + 0) < w) color[0] = subblockColors1[getIndex(0, j)].addA(alphaValues[j][0]); in decodeIndividualOrDifferentialBlock()
454 if((x + 1) < w) color[1] = subblockColors1[getIndex(1, j)].addA(alphaValues[j][1]); in decodeIndividualOrDifferentialBlock()
455 if((x + 2) < w) color[2] = subblockColors1[getIndex(2, j)].addA(alphaValues[j][2]); in decodeIndividualOrDifferentialBlock()
456 if((x + 3) < w) color[3] = subblockColors1[getIndex(3, j)].addA(alphaValues[j][3]); in decodeIndividualOrDifferentialBlock()
465 if((x + 0) < w) color[0] = subblockColors0[getIndex(0, j)].addA(alphaValues[j][0]); in decodeIndividualOrDifferentialBlock()
[all …]
/third_party/flatbuffers/tests/MyGame/Example/
DArrayTable.java23 …public static void addA(FlatBufferBuilder builder, int aOffset) { builder.addStruct(0, aOffset, 0)… in addA() method in ArrayTable
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
DIntDiffer.java33 public void addA(int aStr) { in addA() method in IntDiffer
DDemo.java847 differ.addA(ca); in showDifference()
/third_party/flatbuffers/tests/
DJavaTest.java569 ArrayTable.addA(builder, arrayOffset); in TestFixedLengthArrays()