/third_party/openssl/providers/implementations/digests/ |
D | blake2_impl.h | 25 uint32_t w; in load32() local 29 uint32_t w = ((uint32_t)src[0]) in load32() local 42 uint64_t w; in load64() local 46 uint64_t w = ((uint64_t)src[0]) in load64() local 58 static ossl_inline void store32(uint8_t *dst, uint32_t w) in store32() 73 static ossl_inline void store64(uint8_t *dst, uint64_t w) in store64() 90 uint64_t w = ((uint64_t)src[0]) in load48() local 99 static ossl_inline void store48(uint8_t *dst, uint64_t w) in store48() 110 static ossl_inline uint32_t rotr32(const uint32_t w, const unsigned int c) in rotr32() 115 static ossl_inline uint64_t rotr64(const uint64_t w, const unsigned int c) in rotr64()
|
/third_party/FreeBSD/sys/dev/usb/ |
D | usb_endian.h | 45 #define UGETB(w) \ argument 48 #define UGETW(w) \ argument 52 #define UGETDW(w) \ argument 58 #define UGETQW(w) \ argument 68 #define USETB(w,v) do { \ argument 72 #define USETW(w,v) do { \ argument 77 #define USETDW(w,v) do { \ argument 84 #define USETQW(w,v) do { \ argument 95 #define USETW2(w,b1,b0) do { \ argument 100 #define USETW4(w,b3,b2,b1,b0) do { \ argument [all …]
|
/third_party/mesa3d/src/util/ |
D | u_worklist.c | 33 u_worklist_init(u_worklist *w, unsigned num_entries, void *mem_ctx) in u_worklist_init() 44 u_worklist_fini(u_worklist *w) in u_worklist_fini() 51 u_worklist_push_head_index(u_worklist *w, unsigned *index) in u_worklist_push_head_index() 71 u_worklist_peek_head_index(const u_worklist *w) in u_worklist_peek_head_index() 79 u_worklist_pop_head_index(u_worklist *w) in u_worklist_pop_head_index() 93 u_worklist_push_tail_index(u_worklist *w, unsigned *index) in u_worklist_push_tail_index() 110 u_worklist_peek_tail_index(const u_worklist *w) in u_worklist_peek_tail_index() 120 u_worklist_pop_tail_index(u_worklist *w) in u_worklist_pop_tail_index()
|
D | u_worklist.h | 72 u_worklist_is_empty(const u_worklist *w) in u_worklist_is_empty() 89 #define u_worklist_push_tail(w, block, index) \ argument 92 #define u_worklist_push_head(w, block, index) \ argument 95 #define u_worklist_pop_head(w, entry_t, index) \ argument 98 #define u_worklist_pop_tail(w, entry_t, index) \ argument 101 #define u_worklist_peek_head(w, entry_t, index) \ argument 104 #define u_worklist_peek_tail(w, entry_t, index) \ argument
|
/third_party/python/Modules/_blake2/impl/ |
D | blake2-impl.h | 32 uint32_t w; in load32() local 48 uint64_t w; in load64() local 65 static inline void store32( void *dst, uint32_t w ) in store32() 78 static inline void store64( void *dst, uint64_t w ) in store64() 98 uint64_t w = *p++; in load48() local 107 static inline void store48( void *dst, uint64_t w ) in store48() 118 static inline uint32_t rotl32( const uint32_t w, const unsigned c ) in rotl32() 123 static inline uint64_t rotl64( const uint64_t w, const unsigned c ) in rotl64() 128 static inline uint32_t rotr32( const uint32_t w, const unsigned c ) in rotr32() 133 static inline uint64_t rotr64( const uint64_t w, const unsigned c ) in rotr64()
|
/third_party/json/test/src/ |
D | unit-wstring.cpp | 62 std::wstring w = L"[12.2,\"Ⴥaäö\"]"; variable 72 std::wstring w = L"\"\xDBFF"; variable 82 std::u16string w = u"[12.2,\"Ⴥaäö\"]"; variable 92 std::u16string w = u"\"\xDBFF"; variable 102 std::u32string w = U"[12.2,\"Ⴥaäö\"]"; variable 112 std::u32string w = U"\"\x110000"; variable
|
/third_party/pulseaudio/src/pulsecore/ |
D | x11wrap.c | 68 static void work(pa_x11_wrapper *w) { in work() 93 pa_x11_wrapper *w = userdata; in display_io_event() local 106 pa_x11_wrapper *w = userdata; in defer_event() local 120 pa_x11_wrapper *w = userdata; in internal_io_event() local 134 static pa_x11_internal* x11_internal_add(pa_x11_wrapper *w, int fd) { in x11_internal_add() 148 static void x11_internal_remove(pa_x11_wrapper *w, pa_x11_internal *i) { in x11_internal_remove() 158 pa_x11_wrapper *w = (pa_x11_wrapper*) userdata; in x11_watch() local 171 pa_x11_wrapper*w; in x11_wrapper_new() local 198 static void x11_wrapper_free(pa_x11_wrapper*w) { in x11_wrapper_free() 220 pa_x11_wrapper *w; in pa_x11_wrapper_get() local [all …]
|
/third_party/libuv/src/ |
D | threadpool.c | 47 static void uv__cancelled(struct uv__work* w) { in uv__cancelled() 64 struct uv__work* w; in worker() local 270 struct uv__work* w, in uv__work_submit() 272 void (*work)(struct uv__work* w), in uv__work_submit() 273 void (*done)(struct uv__work* w, int status)) { in uv__work_submit() 283 static int uv__work_cancel(uv_loop_t* loop, uv_req_t* req, struct uv__work* w) { in uv__work_cancel() 323 struct uv__work* w; in uv__work_done() local 356 static void uv__queue_work(struct uv__work* w) { in uv__queue_work() 363 static void uv__queue_done(struct uv__work* w, int err) { in uv__queue_done() 379 struct uv__work* w = (struct uv__work *)data; in uv__ffrt_work() local [all …]
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_worklist.h | 43 #define nir_block_worklist_init(w, num_blocks, mem_ctx) \ argument 46 #define nir_block_worklist_fini(w) u_worklist_fini(w) argument 48 #define nir_block_worklist_is_empty(w) u_worklist_is_empty(w) argument 50 #define nir_block_worklist_push_head(w, block) \ argument 53 #define nir_block_worklist_peek_head(w) \ argument 56 #define nir_block_worklist_pop_head(w) \ argument 59 #define nir_block_worklist_push_tail(w, block) \ argument 62 #define nir_block_worklist_peek_tail(w) \ argument 65 #define nir_block_worklist_pop_tail(w) \ argument
|
/third_party/ffmpeg/libavcodec/mips/ |
D | hevcdsp_mmi.c | 26 #define PUT_HEVC_QPEL_H(w, x_step, src_step, dst_step) \ argument 123 #define PUT_HEVC_QPEL_HV(w, x_step, src_step, dst_step) \ argument 317 #define PUT_HEVC_QPEL_BI_H(w, x_step, src_step, src2_step, dst_step) \ argument 449 #define PUT_HEVC_QPEL_BI_HV(w, x_step, src_step, src2_step, dst_step) \ argument 678 #define PUT_HEVC_EPEL_BI_HV(w, x_step, src_step, src2_step, dst_step) \ argument 864 #define PUT_HEVC_PEL_BI_PIXELS(w, x_step, src_step, dst_step, src2_step) \ argument 975 #define PUT_HEVC_QPEL_UNI_HV(w, x_step, src_step, dst_step, tmp_step) \ argument
|
/third_party/ffmpeg/libavcodec/ |
D | wmv2dec.c | 33 static int parse_mb_skip(Wmv2Context *w) in parse_mb_skip() 98 static int decode_ext_header(Wmv2Context *w) in decode_ext_header() 138 Wmv2Context *const w = (Wmv2Context *) s; in ff_wmv2_decode_picture_header() local 173 Wmv2Context *const w = (Wmv2Context *) s; in ff_wmv2_decode_secondary_picture_header() local 281 static inline void wmv2_decode_motion(Wmv2Context *w, int *mx_ptr, int *my_ptr) in wmv2_decode_motion() 293 static int16_t *wmv2_pred_motion(Wmv2Context *w, int *px, int *py) in wmv2_pred_motion() 338 static inline int wmv2_decode_inter_block(Wmv2Context *w, int16_t *block, in wmv2_decode_inter_block() 380 Wmv2Context *const w = (Wmv2Context *) s; in ff_wmv2_decode_mb() local 495 Wmv2Context *const w = avctx->priv_data; in wmv2_decode_init() local 510 Wmv2Context *w = avctx->priv_data; in wmv2_decode_end() local
|
D | intrax8.c | 93 static void x8_reset_vlc_tables(IntraX8Context *w) in x8_reset_vlc_tables() 100 static inline void x8_select_ac_table(IntraX8Context *const w, int mode) in x8_select_ac_table() 115 static inline int x8_get_orient_vlc(IntraX8Context *w) in x8_get_orient_vlc() 172 static void x8_get_ac_rlf(IntraX8Context *const w, const int mode, in x8_get_ac_rlf() 252 static int x8_get_dc_rlf(IntraX8Context *const w, const int mode, in x8_get_dc_rlf() 288 static int x8_setup_spatial_predictor(IntraX8Context *const w, const int chroma) in x8_setup_spatial_predictor() 346 static void x8_update_predictions(IntraX8Context *const w, const int orient, in x8_update_predictions() 356 static void x8_get_prediction_chroma(IntraX8Context *const w) in x8_get_prediction_chroma() 372 static void x8_get_prediction(IntraX8Context *const w) in x8_get_prediction() 441 static void x8_ac_compensation(IntraX8Context *const w, const int direction, in x8_ac_compensation() [all …]
|
D | wmv2enc.c | 29 static int encode_ext_header(Wmv2Context *w) in encode_ext_header() 57 Wmv2Context *const w = avctx->priv_data; in wmv2_encode_init() local 76 Wmv2Context *const w = (Wmv2Context *) s; in ff_wmv2_encode_picture_header() local 150 Wmv2Context *const w = (Wmv2Context *) s; in ff_wmv2_encode_mb() local
|
/third_party/node/test/parallel/ |
D | test-stream-writable-writable.js | 8 const w = new Writable({ constant 17 const w = new Writable({ constant 29 const w = new Writable({ constant 42 const w = new Writable({ constant
|
D | test-worker-track-unmanaged-fds.js | 21 const w = new Worker(`${preamble} constant 32 const w = new Worker(`${preamble} constant 42 const w = new Worker(`${preamble} constant 59 const w = new Worker(`${preamble} constant
|
/third_party/openssl/crypto/bn/ |
D | bn_word.c | 13 BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w) in BN_mod_word() 61 BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w) in BN_div_word() 98 int BN_add_word(BIGNUM *a, BN_ULONG w) in BN_add_word() 134 int BN_sub_word(BIGNUM *a, BN_ULONG w) in BN_sub_word() 181 int BN_mul_word(BIGNUM *a, BN_ULONG w) in BN_mul_word()
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
D | u_tile.c | 51 uint x, uint y, uint w, uint h, in pipe_get_tile_raw() 70 uint x, uint y, uint w, uint h, in pipe_put_tile_raw() 102 unsigned w, unsigned h, in z16_get_tile_rgba() 131 unsigned w, unsigned h, in z32_get_tile_rgba() 158 unsigned w, unsigned h, in s8z24_get_tile_rgba() 185 unsigned w, unsigned h, in z24s8_get_tile_rgba() 211 unsigned w, unsigned h, in s8x24_get_tile_rgba() 238 unsigned w, unsigned h, in x24s8_get_tile_rgba() 262 unsigned w, unsigned h, in s8_get_tile_rgba() 287 unsigned w, unsigned h, in z32f_get_tile_rgba() [all …]
|
/third_party/libinput/tools/ |
D | libinput-debug-gui.c | 218 struct window *w = data; in wayland_registry_global() local 243 wayland_lock_pointer(struct window *w) in wayland_lock_pointer() 289 wayland_unlock_pointer(struct window *w) in wayland_unlock_pointer() 304 x_lock_pointer(struct window *w) in x_lock_pointer() 331 x_unlock_pointer(struct window *w) in x_unlock_pointer() 348 window_lock_pointer(struct window *w) in window_lock_pointer() 366 window_unlock_pointer(struct window *w) in window_unlock_pointer() 397 draw_evdev_rel(struct window *w, cairo_t *cr) in draw_evdev_rel() 439 draw_evdev_abs(struct window *w, cairo_t *cr) in draw_evdev_abs() 519 draw_gestures(struct window *w, cairo_t *cr) in draw_gestures() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | orderMattersForSignatureGroupIdentity.js | 22 var w: A; variable 23 var w: C; variable 31 var w; variable 32 var w; variable
|
D | typeArgumentInferenceWithObjectLiteral.js | 60 var v1 = f1({ w: function (x) { return x; }, r: function () { return 0; } }, 0); method 61 var v1 = f1({ w: function (x) { return x; }, r: function () { return 0; } }, E1.X); method 62 var v1 = f1({ w: function (x) { return x; }, r: function () { return E1.X; } }, 0); method 64 var v2 = f1({ w: function (x) { return x; }, r: function () { return E1.X; } }, E1.X); method 65 var v3 = f1({ w: function (x) { return x; }, r: function () { return E1.X; } }, E2.X); // Error method
|
D | duplicateIdentifierInCatchBlock.js | 7 function w() { } function 9 var w; variable 29 var w; variable
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/ |
D | extended_min_max.inl | 43 T const & w 55 typename C<T>::T const & w 67 C<T> const & w 110 T const & w 122 typename C<T>::T const & w 134 C<T> const & w
|
/third_party/pulseaudio/src/modules/ |
D | reserve-wrap.c | 205 static void reserve_monitor_wrapper_free(pa_reserve_monitor_wrapper *w) { in reserve_monitor_wrapper_free() 228 pa_reserve_monitor_wrapper *w; in change_cb() local 248 pa_reserve_monitor_wrapper *w; in pa_reserve_monitor_wrapper_get() local 315 void pa_reserve_monitor_wrapper_unref(pa_reserve_monitor_wrapper *w) { in pa_reserve_monitor_wrapper_unref() 325 pa_hook* pa_reserve_monitor_wrapper_hook(pa_reserve_monitor_wrapper *w) { in pa_reserve_monitor_wrapper_hook() 332 bool pa_reserve_monitor_wrapper_busy(pa_reserve_monitor_wrapper *w) { in pa_reserve_monitor_wrapper_busy()
|
/third_party/skia/third_party/externals/swiftshader/tests/SystemBenchmarks/ |
D | LRUCacheBenchmarks.cpp | 46 for(size_t w = 0; w < a.words.size(); w++) in operator ==() local 58 for(size_t w = 0; w < key.words.size(); w++) in operator ()() local 141 for(size_t w = 0; w < key.words.size(); w++) in BENCHMARK_DEFINE_F() local 161 for(size_t w = 0; w < key.words.size(); w++) in BENCHMARK_DEFINE_F() local 173 for(size_t w = 0; w < key.words.size(); w++) in BENCHMARK_DEFINE_F() local 191 for(size_t w = 0; w < key.words.size(); w++) in BENCHMARK_DEFINE_F() local 203 for(size_t w = 0; w < key.words.size(); w++) in BENCHMARK_DEFINE_F() local
|
/third_party/python/Modules/_decimal/libmpdec/ |
D | basearith.c | 51 _mpd_baseadd(mpd_uint_t *w, const mpd_uint_t *u, const mpd_uint_t *v, in _mpd_baseadd() 85 _mpd_baseaddto(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n) in _mpd_baseaddto() 112 _mpd_shortadd(mpd_uint_t *w, mpd_size_t m, mpd_uint_t v) in _mpd_shortadd() 161 _mpd_basesub(mpd_uint_t *w, const mpd_uint_t *u, const mpd_uint_t *v, in _mpd_basesub() 193 _mpd_basesubfrom(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n) in _mpd_basesubfrom() 217 _mpd_shortmul(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n, mpd_uint_t v) in _mpd_shortmul() 242 _mpd_basemul(mpd_uint_t *w, const mpd_uint_t *u, const mpd_uint_t *v, in _mpd_basemul() 272 _mpd_shortdiv(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n, mpd_uint_t v) in _mpd_shortdiv() 563 _mpd_shortadd_b(mpd_uint_t *w, mpd_size_t m, mpd_uint_t v, mpd_uint_t b) in _mpd_shortadd_b() 588 _mpd_shortmul_c(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n, mpd_uint_t v) in _mpd_shortmul_c() [all …]
|