Home
last modified time | relevance | path

Searched refs:prior (Results 1 – 25 of 2068) sorted by relevance

12345678910>>...83

/external/rust/crates/grpcio-sys/grpc/src/core/lib/gprpp/
Dref_counted.h73 const Value prior = value_.FetchAdd(n, MemoryOrder::RELAXED);
76 prior, prior + n);
84 const Value prior = value_.FetchAdd(n, MemoryOrder::RELAXED);
87 trace_, this, location.file(), location.line(), prior, prior + n,
101 const Value prior = value_.FetchAdd(1, MemoryOrder::RELAXED); in RefNonZero() local
104 prior, prior + 1); in RefNonZero()
106 assert(prior > 0); in RefNonZero()
113 const Value prior = value_.FetchAdd(1, MemoryOrder::RELAXED); in RefNonZero() local
116 trace_, this, location.file(), location.line(), prior, prior + 1, in RefNonZero()
119 assert(prior > 0); in RefNonZero()
[all …]
/external/skia/docs/examples/
DPath_IsCubicDegenerate.cpp9 SkScalar prior, length = 0, degenerate = 0; in draw() local
11 prior = points[0].fX; in draw()
14 degenerate = prior; in draw()
17 length = prior; in draw()
20 } while (prior != points[0].fX); in draw()
/external/skia/src/core/
DSkClipStack.cpp508 void SkClipStack::Element::updateBoundAndGenID(const Element* prior) { in updateBoundAndGenID() argument
521 if (kReplace_SkClipOp == fOp || (kIntersect_SkClipOp == fOp && nullptr == prior) || in updateBoundAndGenID()
522 (kIntersect_SkClipOp == fOp && prior->fIsIntersectionOfRects && in updateBoundAndGenID()
523 prior->rectRectIntersectAllowed(this->getDeviceSpaceRect(), fDoAA))) { in updateBoundAndGenID()
558 if (nullptr == prior) { in updateBoundAndGenID()
563 prevFinite = prior->fFiniteBound; in updateBoundAndGenID()
564 prevType = prior->fFiniteBoundType; in updateBoundAndGenID()
797 Element* prior = (Element*) iter.prev(); in pushElement() local
799 if (prior) { in pushElement()
800 if (prior->canBeIntersectedInPlace(fSaveCount, element.getOp())) { in pushElement()
[all …]
/external/skqp/src/core/
DSkClipStack.cpp473 void SkClipStack::Element::updateBoundAndGenID(const Element* prior) { in updateBoundAndGenID() argument
486 if (kReplace_SkClipOp == fOp || (kIntersect_SkClipOp == fOp && nullptr == prior) || in updateBoundAndGenID()
487 (kIntersect_SkClipOp == fOp && prior->fIsIntersectionOfRects && in updateBoundAndGenID()
488 prior->rectRectIntersectAllowed(this->getDeviceSpaceRect(), fDoAA))) { in updateBoundAndGenID()
515 if (nullptr == prior) { in updateBoundAndGenID()
520 prevFinite = prior->fFiniteBound; in updateBoundAndGenID()
521 prevType = prior->fFiniteBoundType; in updateBoundAndGenID()
783 Element* prior = (Element*) iter.prev(); in pushElement() local
785 if (prior) { in pushElement()
786 if (prior->canBeIntersectedInPlace(fSaveCount, element.getOp())) { in pushElement()
[all …]
/external/mesa3d/docs/relnotes/
D13.0.5.rst80 - i965: automake: include builddir prior to srcdir
81 - i915: automake: include builddir prior to srcdir
82 - egl: automake: include builddir prior to srcdir
83 - clover: automake: include builddir prior to srcdir
84 - st/dri: automake: include builddir prior to srcdir
85 - d3dadapter9: automake: include builddir prior to srcdir
86 - glx: automake: include builddir prior to srcdir
87 - glx/apple: automake: include builddir prior to srcdir
88 - glx/windows: automake: include builddir prior to srcdir
89 - loader: automake: include builddir prior to srcdir
[all …]
/external/grpc-grpc/src/core/lib/gpr/
Dsync.cc92 gpr_atm prior = gpr_atm_no_barrier_fetch_add(&r->count, 1); in gpr_ref_non_zero() local
93 assert(prior > 0); in gpr_ref_non_zero()
104 gpr_atm prior = gpr_atm_full_fetch_add(&r->count, -1); in gpr_unref() local
105 GPR_ASSERT(prior > 0); in gpr_unref()
106 return prior == 1; in gpr_unref()
/external/rust/crates/grpcio-sys/grpc/src/core/lib/gpr/
Dsync.cc92 gpr_atm prior = gpr_atm_no_barrier_fetch_add(&r->count, 1); in gpr_ref_non_zero() local
93 assert(prior > 0); in gpr_ref_non_zero()
104 gpr_atm prior = gpr_atm_full_fetch_add(&r->count, -1); in gpr_unref() local
105 GPR_ASSERT(prior > 0); in gpr_unref()
106 return prior == 1; in gpr_unref()
/external/minigbm/
Ddrv.c439 struct mapping *prior = (struct mapping *)drv_array_at_idx(bo->drv->mappings, i); in drv_bo_map() local
440 if (prior->vma->handle != bo->handles[plane].u32 || in drv_bo_map()
441 prior->vma->map_flags != map_flags) in drv_bo_map()
444 if (rect->x != prior->rect.x || rect->y != prior->rect.y || in drv_bo_map()
445 rect->width != prior->rect.width || rect->height != prior->rect.height) in drv_bo_map()
448 prior->refcount++; in drv_bo_map()
449 *map_data = prior; in drv_bo_map()
454 struct mapping *prior = (struct mapping *)drv_array_at_idx(bo->drv->mappings, i); in drv_bo_map() local
455 if (prior->vma->handle != bo->handles[plane].u32 || in drv_bo_map()
456 prior->vma->map_flags != map_flags) in drv_bo_map()
[all …]
/external/tensorflow/tensorflow/compiler/xla/
Dutil.cc92 Status AddStatus(Status prior, absl::string_view context) { in AddStatus() argument
93 CHECK(!prior.ok()); in AddStatus()
94 return Status{prior.code(), in AddStatus()
95 absl::StrCat(context, ": ", prior.error_message())}; in AddStatus()
98 Status AppendStatus(Status prior, absl::string_view context) { in AppendStatus() argument
99 CHECK(!prior.ok()); in AppendStatus()
100 return Status{prior.code(), in AppendStatus()
101 absl::StrCat(prior.error_message(), ": ", context)}; in AppendStatus()
/external/skqp/src/pathops/
DSkOpEdgeBuilder.cpp306 int prior = index; in walk() local
307 while (prior > 0 && !splits[prior - 1].fCanAdd) { in walk()
308 --prior; in walk()
310 if (prior < index) { in walk()
311 split->fT[0] = splits[prior].fT[0]; in walk()
312 split->fPts[0] = splits[prior].fPts[0]; in walk()
323 if (prior < index || next > index) { in walk()
DSkOpSegment.cpp291 SkOpSpan* prior = &fHead; in calcAngles() local
296 priorAngle->set(spanBase, prior); in calcAngles()
308 prior = span; in calcAngles()
434 SkOpAngle* prior = angle; in computeSum() local
437 SkASSERT(prior->next() == angle); in computeSum()
439 if (prior->unorderable() || angle->unorderable() || next->unorderable()) { in computeSum()
460 SkOpAngle* prior = firstAngle; in computeSum() local
462 angle = prior; in computeSum()
463 prior = angle->previous(); in computeSum()
464 SkASSERT(prior->next() == angle); in computeSum()
[all …]
DSkOpContour.h137 const SkOpSegment* prior = nullptr; in debugValidate() local
140 SkASSERT(segment->prev() == prior); in debugValidate()
141 prior = segment; in debugValidate()
143 SkASSERT(prior == fTail); in debugValidate()
/external/skia/src/pathops/
DSkOpEdgeBuilder.cpp300 int prior = index; in walk() local
301 while (prior > 0 && !splits[prior - 1].fCanAdd) { in walk()
302 --prior; in walk()
304 if (prior < index) { in walk()
305 split->fT[0] = splits[prior].fT[0]; in walk()
306 split->fPts[0] = splits[prior].fPts[0]; in walk()
317 if (prior < index || next > index) { in walk()
DSkOpSegment.cpp291 SkOpSpan* prior = &fHead; in calcAngles() local
296 priorAngle->set(spanBase, prior); in calcAngles()
308 prior = span; in calcAngles()
434 SkOpAngle* prior = angle; in computeSum() local
437 SkASSERT(prior->next() == angle); in computeSum()
439 if (prior->unorderable() || angle->unorderable() || next->unorderable()) { in computeSum()
460 SkOpAngle* prior = firstAngle; in computeSum() local
462 angle = prior; in computeSum()
463 prior = angle->previous(); in computeSum()
464 SkASSERT(prior->next() == angle); in computeSum()
[all …]
DSkOpContour.h136 const SkOpSegment* prior = nullptr; in debugValidate() local
139 SkASSERT(segment->prev() == prior); in debugValidate()
140 prior = segment; in debugValidate()
142 SkASSERT(prior == fTail); in debugValidate()
/external/curl/docs/cmdline-opts/
Dhttp2-prior-knowledge.d1 Long: http2-prior-knowledge
11 Upgrade. It requires prior knowledge that the server supports HTTP/2 straight
/external/skqp/tools/bookmaker/
DmdOut.cpp736 const Definition* prior = nullptr; in buildRefFromFile() local
737 this->markTypeOut(topicDef, &prior); in buildRefFromFile()
868 const Definition* prior = nullptr; in childrenOut() local
880 this->markTypeOut(child, &prior); in childrenOut()
1124 static bool writeTableEnd(MarkType markType, Definition* def, const Definition** prior) { in writeTableEnd() argument
1125 return markType != def->fMarkType && *prior && markType == (*prior)->fMarkType; in writeTableEnd()
1134 const Definition* prior = last; in addCodeBlock() local
1136 if (prior) { in addCodeBlock()
1137 priorTerminator = prior->fTerminator ? prior->fTerminator : prior->fContentEnd; in addCodeBlock()
1198 if (Bracket::kParen == member->fBracket && prior) { in addCodeBlock()
[all …]
/external/speex/libspeexdsp/
Dpreprocess.c211 spx_word16_t *prior; /**< A-priori SNR */ member
454 st->prior = (spx_word16_t*)speex_alloc((N+M)*sizeof(spx_word16_t)); in speex_preprocess_state_init()
488 st->prior[i]=SHL16(1, SNR_SHIFT); in speex_preprocess_state_init()
541 speex_free(st->prior); in speex_preprocess_state_destroy()
803 …st->prior[i] = EXTRACT16(PSHR32(ADD32(MULT16_16(gamma,MAX16(0,st->post[i])), MULT16_16(Q15_ONE-gam… in speex_preprocess_run()
804 st->prior[i]=MIN16(st->prior[i], QCONST16(100.f,SNR_SHIFT)); in speex_preprocess_run()
810 …SHR32(ADD32(MULT16_16(QCONST16(.7f,15),st->zeta[0]), MULT16_16(QCONST16(.3f,15),st->prior[0])),15); in speex_preprocess_run()
812 …32(ADD32(ADD32(MULT16_16(QCONST16(.7f,15),st->zeta[i]), MULT16_16(QCONST16(.15f,15),st->prior[i])), in speex_preprocess_run()
813 … MULT16_16(QCONST16(.075f,15),st->prior[i-1])), MULT16_16(QCONST16(.075f,15),st->prior[i+1])),15); in speex_preprocess_run()
815 …SHR32(ADD32(MULT16_16(QCONST16(.7f,15),st->zeta[i]), MULT16_16(QCONST16(.3f,15),st->prior[i])),15); in speex_preprocess_run()
[all …]
/external/autotest/client/cros/enterprise/
Denterprise_policy_utils.py55 prior = _get_pol_from_api(autotest_ext)
60 if curr != prior:
/external/libcap/goapps/web/
DREADME2 prior to 1.15):
15 Go compilers prior to go1.11.13 are not expected to work. Report more
/external/compiler-rt/lib/asan/
Dasan_activation_flags.inc14 # error "Define ASAN_ACTIVATION_FLAG prior to including this file!"
18 # error "Define COMMON_ACTIVATION_FLAG prior to including this file!"
/external/rust/crates/grpcio-sys/grpc/src/core/lib/transport/
Dmetadata.h244 const intptr_t prior = refcnt_.FetchAdd(1, MemoryOrder::RELAXED); in Ref() local
245 GPR_ASSERT(prior > 0); in Ref()
259 const intptr_t prior = refcnt_.FetchSub(1, MemoryOrder::ACQ_REL); in Unref() local
260 GPR_DEBUG_ASSERT(prior > 0); in Unref()
261 return prior == 1; in Unref()
/external/rust/crates/tokio/src/time/driver/
Dentry.rs247 let mut prior = self.state.load(Ordering::Relaxed); in extend_expiration() localVariable
249 if new_timestamp < prior || prior >= STATE_MIN_VALUE { in extend_expiration()
254 prior, in extend_expiration()
263 prior = true_prior; in extend_expiration()
/external/llvm-project/compiler-rt/lib/asan/
Dasan_activation_flags.inc13 # error "Define ASAN_ACTIVATION_FLAG prior to including this file!"
17 # error "Define COMMON_ACTIVATION_FLAG prior to including this file!"
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_BoostedTreesCenterBias.pbtxt40 …summary: "Calculates the prior from the training data (the bias) and fills in the first node with …

12345678910>>...83