/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/ |
D | QrCode.java | 274 return getBit(modules[i >>> 5], i) != 0; in getModule() 296 setModule(8, i, getBit(bits, i)); in drawFormatBits() 297 setModule(8, 7, getBit(bits, 6)); in drawFormatBits() 298 setModule(8, 8, getBit(bits, 7)); in drawFormatBits() 299 setModule(7, 8, getBit(bits, 8)); in drawFormatBits() 301 setModule(14 - i, 8, getBit(bits, i)); in drawFormatBits() 305 setModule(size - 1 - i, 8, getBit(bits, i)); in drawFormatBits() 307 setModule(8, size - 15 + i, getBit(bits, i)); in drawFormatBits() 369 int bit = getBit(allCodewords[i >>> 3], ~i & 7); in drawCodewords() 427 int c = getBit(modules[index >>> 5], index); in getPenaltyScore() [all …]
|
D | QrTemplate.java | 129 int bit = QrCode.getBit(bits, i); in drawVersion() 219 return QrCode.getBit(grid[i >>> 5], i); in getModule()
|
D | BitBuffer.java | 54 public int getBit(int index) { in getBit() method in BitBuffer
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuAstcUtil.cpp | 49 inline deUint32 getBit (deUint32 src, int ndx) in getBit() function 69 return getBit(src, ndx) != 0; in isBitSet() 215 deUint32 getBit (int ndx) const in getBit() function in tcu::astc::__anon511ca3230111::Block128 249 return getBit(ndx) != 0; in isBitSet() 357 const deUint32 r0 = getBit(blockModeData, 4); in getASTCBlockMode() 358 const deUint32 r1 = getBit(blockModeData, 2); in getASTCBlockMode() 359 const deUint32 r2 = getBit(blockModeData, 3); in getASTCBlockMode() 384 const deUint32 r0 = getBit(blockModeData, 4); in getASTCBlockMode() 385 const deUint32 r1 = getBit(blockModeData, 0); in getASTCBlockMode() 386 const deUint32 r2 = getBit(blockModeData, 1); in getASTCBlockMode() [all …]
|
D | tcuCompressedTexture.cpp | 426 inline deUint32 getBit (deUint64 src, int bit) in getBit() function 475 const int diffBit = (int)getBit(src, 33); in decompressETC1Block() 476 const int flipBit = (int)getBit(src, 32); in decompressETC1Block() 532 const deUint32 modifierNdx = (getBit(src, 16+pixelNdx) << 1) | getBit(src, pixelNdx); in decompressETC1Block() 555 const int diffOpaqueBit = (int)getBit(src, 33); in decompressETC2Block() 591 const int flipBit = (int)getBit(src, 32); in decompressETC2Block() 627 const deUint32 modifierNdx = (getBit(src, 16+pixelNdx) << 1) | getBit(src, pixelNdx); in decompressETC2Block() 676 const deUint32 distNdx = (getBits(src, 34, 35) << 1) | getBit(src, 32); in decompressETC2Block() 697 const deUint8 G1b = (deUint8)getBit(src, 52); in decompressETC2Block() 698 const deUint8 B1a = (deUint8)getBit(src, 51); in decompressETC2Block() [all …]
|
/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/ |
D | QrCode.java | 194 dataCodewords[i >>> 3] |= bb.getBit(i) << (7 - (i & 7)); in encodeSegments() 352 setFunctionModule(8, i, getBit(bits, i)); in drawFormatBits() 353 setFunctionModule(8, 7, getBit(bits, 6)); in drawFormatBits() 354 setFunctionModule(8, 8, getBit(bits, 7)); in drawFormatBits() 355 setFunctionModule(7, 8, getBit(bits, 8)); in drawFormatBits() 357 setFunctionModule(14 - i, 8, getBit(bits, i)); in drawFormatBits() 361 setFunctionModule(size - 1 - i, 8, getBit(bits, i)); in drawFormatBits() 363 setFunctionModule(8, size - 15 + i, getBit(bits, i)); in drawFormatBits() 383 boolean bit = getBit(bits, i); in drawVersion() 485 modules[y][x] = getBit(data[i >>> 3], 7 - (i & 7)); in drawCodewords() [all …]
|
D | BitBuffer.java | 73 public int getBit(int index) { in getBit() method in BitBuffer 95 data.set(bitLength, QrCode.getBit(val, i)); in appendBits()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TableGen/ |
D | Record.h | 416 virtual Init *getBit(unsigned Bit) const = 0; 473 Init *getBit(unsigned Bit) const override { in getBit() function 502 Init *getBit(unsigned Bit) const override { in getBit() function 542 if (!getBit(i)->isComplete()) return false; in isComplete() 548 if (getBit(i)->isComplete()) return false; in allInComplete() 557 Init *getBit(unsigned Bit) const override { in getBit() function 588 Init *getBit(unsigned Bit) const override { in getBit() function 619 Init *getBit(unsigned Bit) const override { in getBit() function 654 Init *getBit(unsigned Bit) const override { in getBit() function 720 Init *getBit(unsigned Bit) const override { in getBit() function [all …]
|
/third_party/qrcodegen/typescript-javascript/ |
D | qrcodegen.ts | 285 this.setFunctionModule(8, i, getBit(bits, i)); 286 this.setFunctionModule(8, 7, getBit(bits, 6)); 287 this.setFunctionModule(8, 8, getBit(bits, 7)); 288 this.setFunctionModule(7, 8, getBit(bits, 8)); 290 this.setFunctionModule(14 - i, 8, getBit(bits, i)); 294 this.setFunctionModule(this.size - 1 - i, 8, getBit(bits, i)); 296 this.setFunctionModule(8, this.size - 15 + i, getBit(bits, i)); 316 const color: boolean = getBit(bits, i); 417 this.modules[y][x] = getBit(data[i >>> 3], 7 - (i & 7)); 716 function getBit(x: int, i: int): boolean { function
|
/third_party/qrcodegen/cpp/ |
D | qrcodegen.cpp | 427 setFunctionModule(8, i, getBit(bits, i)); in drawFormatBits() 428 setFunctionModule(8, 7, getBit(bits, 6)); in drawFormatBits() 429 setFunctionModule(8, 8, getBit(bits, 7)); in drawFormatBits() 430 setFunctionModule(7, 8, getBit(bits, 8)); in drawFormatBits() 432 setFunctionModule(14 - i, 8, getBit(bits, i)); in drawFormatBits() 436 setFunctionModule(size - 1 - i, 8, getBit(bits, i)); in drawFormatBits() 438 setFunctionModule(8, size - 15 + i, getBit(bits, i)); in drawFormatBits() 456 bool bit = getBit(bits, i); in drawVersion() 551 modules.at(y).at(x) = getBit(data.at(i >> 3), 7 - static_cast<int>(i & 7)); in drawCodewords() 780 bool QrCode::getBit(long x, int i) { in getBit() function in qrcodegen::QrCode
|
D | qrcodegen.hpp | 482 private: static bool getBit(long x, int i);
|
/third_party/qrcodegen/c/ |
D | qrcodegen.c | 82 static bool getBit(int x, int i); 529 setModuleBounded(qrcode, 8, i, getBit(bits, i)); in drawFormatBits() 530 setModuleBounded(qrcode, 8, 7, getBit(bits, 6)); in drawFormatBits() 531 setModuleBounded(qrcode, 8, 8, getBit(bits, 7)); in drawFormatBits() 532 setModuleBounded(qrcode, 7, 8, getBit(bits, 8)); in drawFormatBits() 534 setModuleBounded(qrcode, 14 - i, 8, getBit(bits, i)); in drawFormatBits() 539 setModuleBounded(qrcode, qrsize - 1 - i, 8, getBit(bits, i)); in drawFormatBits() 541 setModuleBounded(qrcode, 8, qrsize - 15 + i, getBit(bits, i)); in drawFormatBits() 590 bool dark = getBit(data[i >> 3], 7 - (i & 7)); in drawCodewords() 774 return getBit(qrcode[(index >> 3) + 1], index & 7); in getModuleBounded() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
D | Record.cpp | 368 return getBit(0); in convertInitializerTo() 381 if (auto *Bit = dyn_cast<BitInit>(getBit(i))) in convertInitializerTo() 398 NewBits[i] = getBit(Bits[i]); in convertInitializerBitRange() 405 if (!getBit(i)->isConcrete()) in isConcrete() 415 if (Init *Bit = getBit(e-i-1)) in getAsString() 433 Init *CurBit = getBit(i); in resolveReferences() 442 NewBit = CachedBitVarResolved->getBit(CurBitVar->getBitNum()); in resolveReferences() 445 NewBit = CurBit->resolveReferences(R)->getBit(0); in resolveReferences() 680 Init *OpInit::getBit(unsigned Bit) const { in getBit() function in OpInit 1357 Init *FoldOpInit::getBit(unsigned Bit) const { in getBit() function in FoldOpInit [all …]
|
D | JSONBackend.cpp | 56 array.push_back(translateInit(*Bits->getBit(i))); in translateInit()
|
D | TGParser.cpp | 74 Init *Bit = BV->getBit(i); in checkBitsConcrete() 201 NewBits[Bit] = BI->getBit(i); in SetValue() 206 NewBits[i] = CurVal->getBit(i); in SetValue() 1951 NewBits.push_back(BI->getBit((e - i) - 1)); in ParseSimpleValue() 1958 NewBits.push_back(VI->getBit((e - i) - 1)); in ParseSimpleValue()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/ |
D | vktMemoryExternalMemoryHostTests.cpp | 52 inline deUint32 getBit (deUint32 src, int ndx) in getBit() function 59 return getBit(src, ndx) != 0; in isBitSet()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/ |
D | vktMemoryExternalMemoryHostTests.cpp | 52 inline deUint32 getBit (deUint32 src, int ndx) in getBit() function 59 return getBit(src, ndx) != 0; in isBitSet()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/conditional_rendering/ |
D | vktConditionalDrawAndClearTests.cpp | 267 inline deUint32 getBit(deUint32 src, int ndx) in getBit() function 274 return getBit(src, ndx) != 0; in isBitSet()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/conditional_rendering/ |
D | vktConditionalDrawAndClearTests.cpp | 267 inline deUint32 getBit(deUint32 src, int ndx) in getBit() function 274 return getBit(src, ndx) != 0; in isBitSet()
|
/third_party/node/deps/icu-small/source/i18n/unicode/ |
D | measunit.h | 1200 static MeasureUnit getBit();
|
/third_party/icu/icu4c/source/i18n/unicode/ |
D | measunit.h | 1182 static MeasureUnit getBit();
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
D | measunit.h | 1182 static MeasureUnit getBit();
|
/third_party/icu/icu4c/source/i18n/ |
D | measunit.cpp | 832 MeasureUnit MeasureUnit::getBit() { in getBit() function in MeasureUnit
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | measunit.cpp | 832 MeasureUnit MeasureUnit::getBit() { in getBit() function in MeasureUnit
|
/third_party/node/deps/icu-small/source/i18n/ |
D | measunit.cpp | 842 MeasureUnit MeasureUnit::getBit() { in getBit() function in MeasureUnit
|