/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ |
D | SerializationConfig.java | 462 int newMask = _generatorFeaturesToChange | feature.getMask(); in with() local 463 return ((_generatorFeatures == newSet) && (_generatorFeaturesToChange == newMask)) ? this : in with() 465 newSet, newMask, in with() 478 int newMask = _generatorFeaturesToChange; in withFeatures() local 482 newMask |= mask; in withFeatures() 484 return ((_generatorFeatures == newSet) && (_generatorFeaturesToChange == newMask)) ? this : in withFeatures() 486 newSet, newMask, in withFeatures() 499 int newMask = _generatorFeaturesToChange | feature.getMask(); in without() local 500 return ((_generatorFeatures == newSet) && (_generatorFeaturesToChange == newMask)) ? this : in without() 502 newSet, newMask, in without() [all …]
|
D | DeserializationConfig.java | 460 int newMask = _parserFeaturesToChange | feature.getMask(); in with() local 461 return ((_parserFeatures == newSet) && (_parserFeaturesToChange == newMask)) ? this : in with() 463 newSet, newMask, in with() 476 int newMask = _parserFeaturesToChange; in withFeatures() local 480 newMask |= mask; in withFeatures() 482 return ((_parserFeatures == newSet) && (_parserFeaturesToChange == newMask)) ? this : in withFeatures() 484 newSet, newMask, in withFeatures() 497 int newMask = _parserFeaturesToChange | feature.getMask(); in without() local 498 return ((_parserFeatures == newSet) && (_parserFeaturesToChange == newMask)) ? this : in without() 500 newSet, newMask, in without() [all …]
|
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/util/ |
D | JacksonFeatureSet.java | 62 int newMask = _enabled | feature.getMask(); in with() local 63 return (newMask == _enabled) ? this : new JacksonFeatureSet<F>(newMask); in with() 76 int newMask = _enabled & ~feature.getMask(); in without() local 77 return (newMask == _enabled) ? this : new JacksonFeatureSet<F>(newMask); in without()
|
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/base/ |
D | GeneratorBase.java | 197 public JsonGenerator setFeatureMask(int newMask) { in setFeatureMask() argument 198 int changed = newMask ^ _features; in setFeatureMask() 199 _features = newMask; in setFeatureMask() 201 _checkStdFeatureChanges(newMask, changed); in setFeatureMask()
|
D | ParserBase.java | 287 public JsonParser setFeatureMask(int newMask) { in setFeatureMask() argument 288 int changes = (_features ^ newMask); in setFeatureMask() 290 _features = newMask; in setFeatureMask() 291 _checkStdFeatureChanges(newMask, changes); in setFeatureMask()
|
/external/guava/android/guava/src/com/google/common/collect/ |
D | CompactHashSet.java | 385 int newMask = newCapacity - 1; in resizeTable() local 389 CompactHashing.tableSet(newTable, targetHash & newMask, targetEntryIndex + 1); in resizeTable() 405 int newTableIndex = hash & newMask; in resizeTable() 408 entries[entryIndex] = CompactHashing.maskCombine(hash, newNext, newMask); in resizeTable() 415 setHashTableMask(newMask); in resizeTable() 416 return newMask; in resizeTable()
|
D | CompactHashMap.java | 434 int newMask = newCapacity - 1; in resizeTable() local 438 CompactHashing.tableSet(newTable, targetHash & newMask, targetEntryIndex + 1); in resizeTable() 464 int newTableIndex = hash & newMask; in resizeTable() 467 entries[entryIndex] = CompactHashing.maskCombine(hash, newNext, newMask); in resizeTable() 474 setHashTableMask(newMask); in resizeTable() 475 return newMask; in resizeTable()
|
D | MapMakerInternalMap.java | 1559 int newMask = newTable.length() - 1; in expand() local 1567 int headIndex = head.getHash() & newMask; in expand() 1579 int newIndex = e.getHash() & newMask; in expand() 1590 int newIndex = e.getHash() & newMask; in expand()
|
/external/guava/guava/src/com/google/common/collect/ |
D | CompactHashSet.java | 389 int newMask = newCapacity - 1; in resizeTable() local 393 CompactHashing.tableSet(newTable, targetHash & newMask, targetEntryIndex + 1); in resizeTable() 409 int newTableIndex = hash & newMask; in resizeTable() 412 entries[entryIndex] = CompactHashing.maskCombine(hash, newNext, newMask); in resizeTable() 419 setHashTableMask(newMask); in resizeTable() 420 return newMask; in resizeTable()
|
D | CompactHashMap.java | 438 int newMask = newCapacity - 1; in resizeTable() local 442 CompactHashing.tableSet(newTable, targetHash & newMask, targetEntryIndex + 1); in resizeTable() 468 int newTableIndex = hash & newMask; in resizeTable() 471 entries[entryIndex] = CompactHashing.maskCombine(hash, newNext, newMask); in resizeTable() 478 setHashTableMask(newMask); in resizeTable() 479 return newMask; in resizeTable()
|
D | MapMakerInternalMap.java | 1554 int newMask = newTable.length() - 1; in expand() local 1562 int headIndex = head.getHash() & newMask; in expand() 1574 int newIndex = e.getHash() & newMask; in expand() 1585 int newIndex = e.getHash() & newMask; in expand()
|
/external/mesa3d/src/gallium/frontends/hgl/ |
D | hgl.c | 159 unsigned stAttachmentMask, newMask; in hgl_st_framebuffer_validate() local 177 newMask = stAttachmentMask & ~buffer->mask; in hgl_st_framebuffer_validate() 182 if (resized || newMask) { in hgl_st_framebuffer_validate()
|
/external/mesa3d/src/mesa/swrast/ |
D | s_stencil.c | 277 const GLubyte newMask[], in compute_pass_fail_masks() argument 282 assert(newMask[i] == 0 || newMask[i] == 1); in compute_pass_fail_masks() 283 passMask[i] = origMask[i] & newMask[i]; in compute_pass_fail_masks() 284 failMask[i] = origMask[i] & (newMask[i] ^ 1); in compute_pass_fail_masks()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
D | OpenIntToDoubleHashMap.java | 446 final int newMask = newLength - 1; in growTable() local 450 final int index = findInsertionIndex(newKeys, newStates, key, newMask); in growTable() 457 mask = newMask; in growTable()
|
D | OpenIntToFieldHashMap.java | 458 final int newMask = newLength - 1; in growTable() local 462 final int index = findInsertionIndex(newKeys, newStates, key, newMask); in growTable() 469 mask = newMask; in growTable()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | SIModeRegister.cpp | 59 Status mergeUnknown(unsigned newMask) { in mergeUnknown() 60 return Status(Mask & ~newMask, Mode & ~newMask); in mergeUnknown()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineVectorOps.cpp | 1186 SmallVector<int, 16> newMask; in visitShuffleVectorInst() local 1247 newMask.push_back(eltMask); in visitShuffleVectorInst() 1252 if (isSplat || newMask == LHSMask || newMask == RHSMask || newMask == Mask) { in visitShuffleVectorInst() 1254 for (unsigned i = 0, e = newMask.size(); i != e; ++i) { in visitShuffleVectorInst() 1255 if (newMask[i] < 0) { in visitShuffleVectorInst() 1258 Elts.push_back(ConstantInt::get(Int32Ty, newMask[i])); in visitShuffleVectorInst() 1269 recognizeIdentityMask(newMask, isLHSID, isRHSID); in visitShuffleVectorInst()
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | i830_state.c | 476 GLuint newMask; in i830PolygonStipple() local 506 newMask = (((p[0] & 0xf) << 0) | in i830PolygonStipple() 511 if (newMask == 0xffff || newMask == 0x0) { in i830PolygonStipple() 518 i830->state.Stipple[I830_STPREG_ST1] |= newMask; in i830PolygonStipple()
|
D | i915_state.c | 442 GLuint newMask; in i915PolygonStipple() local 472 newMask = (((p[0] & 0xf) << 0) | in i915PolygonStipple() 477 if (newMask == 0xffff || newMask == 0x0) { in i915PolygonStipple() 484 i915->state.Stipple[I915_STPREG_ST1] |= newMask; in i915PolygonStipple()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineVectorOps.cpp | 2160 SmallVector<int, 16> newMask; in visitShuffleVectorInst() local 2221 newMask.push_back(eltMask); in visitShuffleVectorInst() 2226 if (isSplat || newMask == LHSMask || newMask == RHSMask || newMask == Mask) { in visitShuffleVectorInst() 2228 for (unsigned i = 0, e = newMask.size(); i != e; ++i) { in visitShuffleVectorInst() 2229 if (newMask[i] < 0) { in visitShuffleVectorInst() 2232 Elts.push_back(ConstantInt::get(Int32Ty, newMask[i])); in visitShuffleVectorInst()
|
/external/openthread/src/core/mac/ |
D | mac.cpp | 457 ChannelMask newMask = aMask; in SetSupportedChannelMask() local 459 newMask.Intersect(ChannelMask(Get<Radio>().GetSupportedChannelMask())); in SetSupportedChannelMask() 460 …IgnoreError(Get<Notifier>().Update(mSupportedChannelMask, newMask, kEventSupportedChannelMaskChang… in SetSupportedChannelMask()
|
/external/openthread/src/ncp/ |
D | ncp_base.cpp | 1605 uint32_t newMask = 0; in HandlePropertySet() local 1608 SuccessOrExit(error = DecodeChannelMask(newMask)); in HandlePropertySet() 1609 mScanChannelMask = newMask; in HandlePropertySet()
|
/external/dng_sdk/source/ |
D | dng_negative.cpp | 5059 AutoPtr<dng_image> newMask (host.Make_dng_image (fStage3Image->Bounds (), in ResizeTransparencyToMatchStage3() local 5066 *newMask); in ResizeTransparencyToMatchStage3() 5068 fTransparencyMask.Reset (newMask.Release ()); in ResizeTransparencyToMatchStage3()
|
/external/guava/android/guava/src/com/google/common/cache/ |
D | LocalCache.java | 2788 int newMask = newTable.length() - 1; in expand() local 2796 int headIndex = head.getHash() & newMask; in expand() 2808 int newIndex = e.getHash() & newMask; in expand() 2819 int newIndex = e.getHash() & newMask; in expand()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 1532 APInt newMask = APInt::getLowBitsSet(maskWidth, width); in SimplifySetCC() local 1534 if ((newMask & Mask) == Mask) { in SimplifySetCC() 1543 newMask = newMask << width; in SimplifySetCC()
|