Home
last modified time | relevance | path

Searched refs:tmpB (Results 1 – 11 of 11) sorted by relevance

/external/llvm-project/mlir/test/Dialect/Linalg/
Dpromote.mlir54 // CHECK: %[[tmpB:.*]] = alloc() : memref<48xi8>
55 // ALLOCA: %[[tmpB:.*]] = alloca() : memref<48xi8>
56 // CHECK: %[[fullB:.*]] = std.view %[[tmpB]][{{.*}}][{{.*}}] : memref<48xi8> to memre…
77 // CHECK: dealloc %[[tmpB]] : memref<48xi8>
80 // ALLOCA-NOT: dealloc %[[tmpB]] : memref<48xi8>
/external/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dlpc_masking_model.c711 int32_t tmp, tmpB, tmpCorr; in WebRtcIsacfix_GetLpcCoef() local
746 tmpB=WEBRTC_SPL_MUL_16_32_RSFT15(gamma, corrlo2QQ[n]); in WebRtcIsacfix_GetLpcCoef()
747 corrlo2QQ[n] = tmp + tmpB; in WebRtcIsacfix_GetLpcCoef()
761 int32_t tmp, tmpB, tmpCorr; in WebRtcIsacfix_GetLpcCoef() local
802 tmpB=WEBRTC_SPL_MUL_16_32_RSFT15(gamma, tmpCorr); in WebRtcIsacfix_GetLpcCoef()
803 corrhiQQ[n] = tmp + tmpB; in WebRtcIsacfix_GetLpcCoef()
/external/pdfium/third_party/bigint/
DBigInteger.cc291 BigInteger tmpB(b); in divideWithRemainder() local
292 divideWithRemainder(tmpB, q); in divideWithRemainder()
DBigUnsigned.cc398 BigUnsigned tmpB(b); in divideWithRemainder() local
399 divideWithRemainder(tmpB, q); in divideWithRemainder()
/external/boringssl/src/crypto/pem/
Dpem_lib.c604 BUF_MEM *dataB, *tmpB; in PEM_read_bio() local
721 tmpB = headerB; in PEM_read_bio()
723 dataB = tmpB; in PEM_read_bio()
/external/rust/crates/quiche/deps/boringssl/src/crypto/pem/
Dpem_lib.c604 BUF_MEM *dataB, *tmpB; in PEM_read_bio() local
721 tmpB = headerB; in PEM_read_bio()
723 dataB = tmpB; in PEM_read_bio()
/external/scapy/scapy/
Dutils6.py767 tmpB = inet_pton(socket.AF_INET6, b)
769 mbits = matching_bits(orb(tmpA[i]), orb(tmpB[i]))
/external/skqp/src/core/
DSkRegion.cpp1118 RunType tmpB[kRectRegionRuns]; in Oper() local
1122 const RunType* b_runs = rgnb->getRuns(tmpB, &b_intervals); in Oper()
/external/skia/src/core/
DSkRegion.cpp1116 RunType tmpB[kRectRegionRuns]; in Oper() local
1120 const RunType* b_runs = rgnb->getRuns(tmpB, &b_intervals); in Oper()
/external/skqp/src/gpu/
DSkGpuDevice.cpp954 SkBitmap tmpB; in drawTiledBitmap() local
955 if (bitmap.extractSubset(&tmpB, iTileR)) { in drawTiledBitmap()
960 this->drawBitmapTile(tmpB, in drawTiledBitmap()
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DFastMath.java2478 …double tmpB = (((prod2A & 0xfffL) << 40) + (prod2B >>> 24)) / TWO_POWER_52 / TWO_POWER_52; // Low … in reducePayneHanek() local
2480 double sumA = tmpA + tmpB; in reducePayneHanek()
2481 double sumB = -(sumA - tmpA - tmpB); in reducePayneHanek()