Home
last modified time | relevance | path

Searched refs:_new (Results 1 – 25 of 38) sorted by relevance

12

/third_party/mesa3d/src/util/
Du_atomic.h75 #define p_atomic_cmpxchg(v, old, _new) \ argument
76 __sync_val_compare_and_swap((v), (old), (_new))
99 #define p_atomic_cmpxchg(_v, _old, _new) (*(_v) == (_old) ? (*(_v) = (_new), (_old)) : *(_v)) argument
162 #define p_atomic_cmpxchg(_v, _old, _new) (\ argument
163 …sizeof *(_v) == sizeof(char) ? _InterlockedCompareExchange8 ((char *) (_v), (char) (_new), …
164 …sizeof *(_v) == sizeof(short) ? _InterlockedCompareExchange16((short *) (_v), (short) (_new), …
165 …sizeof *(_v) == sizeof(long) ? _InterlockedCompareExchange ((long *) (_v), (long) (_new), …
166 …sizeof *(_v) == sizeof(__int64) ? InterlockedCompareExchange64 ((__int64 *)(_v), (__int64)(_new), …
230 #define p_atomic_cmpxchg(v, old, _new) (__typeof(*v))( \ argument
231 …sizeof(*v) == sizeof(uint8_t) ? atomic_cas_8 ((uint8_t *)(v), (uint8_t )(old), (uint8_t )(_new))…
[all …]
/third_party/libwebsockets/lib/core/
Dlogs.c327 lws_log_use_cx_file(struct lws_log_cx *cx, int _new) in lws_log_use_cx_file() argument
331 if (_new > 0 && cx->refcount == 1) { in lws_log_use_cx_file()
344 if (_new <= 0 && cx->refcount == 0 && fd >= 0) { in lws_log_use_cx_file()
507 lwsl_refcount_cx(lws_log_cx_t *cx, int _new) in lwsl_refcount_cx() argument
512 if (_new > 0) in lwsl_refcount_cx()
520 cx->refcount_cb(cx, _new); in lwsl_refcount_cx()
/third_party/gstreamer/gstplugins_base/tests/examples/fft/
Dfftrange.c39 ctx = gst_fft_ ##_t_ ##_new (num_samples, FALSE); \
82 ctx = gst_fft_ ##_t_ ##_new (num_samples, FALSE); \
/third_party/openssl/crypto/asn1/
Dtasn_typ.c19 sname *sname##_new(void) \
/third_party/typescript/tests/baselines/reference/
DjsDeclarationsFunctionKeywordPropExhaustive.js218 const _new: number; constant
219 export { _new as new };
/third_party/libwebsockets/include/libwebsockets/
Dlws-logs.h74 typedef void (*lws_log_use_cx_t)(struct lws_log_cx *cx, int _new);
148 lws_log_use_cx_file(struct lws_log_cx *cx, int _new);
784 lwsl_refcount_cx(lws_log_cx_t *cx, int _new);
/third_party/icu/tools/cldr/cldr-to-icu/src/main/resources/
Dldml2icu_supplemental.txt216 //supplementalData/languageMatching/languageMatches[@type="(%B)_new"]/paradigmLocales[@locales="(%A…
217 //supplementalData/languageMatching/languageMatches[@type="(%B)_new"]/matchVariable[@id="\$(%A)"][@…
219 //supplementalData/languageMatching/languageMatches[@type="(%B)_new"]/languageMatch[@desired="(%A)"…
220 //supplementalData/languageMatching/languageMatches[@type="(%B)_new"]/languageMatch[@desired="(%A)"…
/third_party/gstreamer/gstplugins_base/ext/gl/
Dgltestsrc.c630 G_PASTE(G_PASTE(_src_unicolor_,name),_new) (GstGLTestSrc * test) \
638 G_PASTE(G_PASTE(_src_unicolor_,name),_new), \
798 G_PASTE(G_PASTE(_src_checkers,spacing),_new) (GstGLTestSrc * test) \
806 G_PASTE(G_PASTE(_src_checkers,spacing),_new), \
/third_party/node/deps/acorn/acorn/dist/
Dacorn.d.ts147 _new: TokenType
Dacorn.js232 _new: kw("new", {beforeExpr: true, startsExpr: true}), property
2592 case types._new:
Dacorn.mjs226 _new: kw("new", {beforeExpr: true, startsExpr: true}), property
2586 case types._new:
/third_party/openssl/include/openssl/
Dsafestack.h35 static ossl_unused ossl_inline STACK_OF(t1) *sk_##t1##_new(sk_##t1##_compfunc compare) \
Dlhash.h123 …static ossl_unused ossl_inline LHASH_OF(type) *lh_##type##_new(unsigned long (*hfn)(const type *),…
Dasn1t.h811 pre stname *fname##_new(void) \
821 stname *fname##_new(void) \
Dasn1.h248 type *name##_new(void); \
/third_party/python/Lib/
Dast.py538 def _new(cls, *args, **kwargs): function
552 __new__ = _new
556 __new__ = _new
560 __new__ = _new
563 __new__ = _new
/third_party/gstreamer/gstreamer/tests/check/generic/
Dsinks.c33 GstState _old, _new, _pending; in pop_state_change_message() local
39 gst_message_parse_state_changed (message, &_old, &_new, &_pending); in pop_state_change_message()
44 fail_unless (new == _new, "Unexpected new state"); in pop_state_change_message()
/third_party/gstreamer/gstplugins_good/tests/check/elements/
Dmpg123audiodec.c126 ctx = gst_fft_##ffttag2##_new (num_samples, FALSE); \
/third_party/gstreamer/gstplugins_base/tests/check/elements/
Daudioresample.c1118 inctx = gst_fft_##ffttag2##_new (insamples, FALSE); \
1119 outctx = gst_fft_##ffttag2##_new (outsamples, FALSE); \
/third_party/gstreamer/gstreamer/docs/random/
Dporting-to-1.0.txt455 access to the buffer data with _map() and then use the _new() functions.
458 removed, get access to the buffer data and then use the _new() functions.
/third_party/libwebsockets/READMEs/
DREADME.logging.md197 typedef void (*lws_log_use_cx_t)(struct lws_log_cx *cx, int _new);
/third_party/python/Doc/extending/
Dnewtypes.rst3 .. _new-types-topics:
/third_party/python/Doc/whatsnew/
D2.6.rst328 .. _new-26-context-managers:
428 .. _new-module-contextlib:
1749 .. _new-26-interpreter:
D3.3.rst1090 .. _new-decimal:
1189 .. _new-email:
D3.10.rst707 .. _new-feat-related-type-hints:

12