Home
last modified time | relevance | path

Searched refs:master (Results 101 - 125 of 127) sorted by relevance

123456

/third_party/python/Lib/test/
H A Dtest_zipimport.py689 old_master, doctest.master = doctest.master, None
696 doctest.master = old_master
/third_party/mesa3d/include/drm-uapi/
H A Di915_drm.h2253 * engine by specifying bonding pairs, for any given master engine we will
2256 * To execute a request in parallel on the master engine and a sibling requires
2262 struct i915_engine_class_instance master; member
2275 struct i915_engine_class_instance master; \
/third_party/python/Lib/
H A Dturtle.py337 def __init__(self, master, width=500, height=350,
339 TK.Frame.__init__(self, master, width=width, height=height)
344 self._canvas = TK.Canvas(master, width=width, height=height,
346 self.hscroll = TK.Scrollbar(master, command=self._canvas.xview,
348 self.vscroll = TK.Scrollbar(master, command=self._canvas.yview)
471 img = TK.PhotoImage(width=1, height=1, master=self.cv)
479 return TK.PhotoImage(file=filename, master=self.cv)
/third_party/alsa-lib/src/pcm/
H A Dpcm_hw.c907 static int snd_pcm_hw_link_slaves(snd_pcm_t *pcm, snd_pcm_t *master) in snd_pcm_hw_link_slaves() argument
909 if (master->type != SND_PCM_TYPE_HW) { in snd_pcm_hw_link_slaves()
910 SYSMSG("Invalid type for SNDRV_PCM_IOCTL_LINK (%i)", master->type); in snd_pcm_hw_link_slaves()
913 return hw_link(master, pcm); in snd_pcm_hw_link_slaves()
H A Dpcm_multi.c121 /* finally overwrite with master's pfds */ in snd_pcm_multi_poll_descriptors()
318 * slave #0 = trigger master
535 * we need to trigger the master.
735 * including the first one has to be relinked to the given master.
737 static int snd_pcm_multi_link_slaves(snd_pcm_t *pcm, snd_pcm_t *master) in snd_pcm_multi_link_slaves() argument
746 err = snd_pcm_link(master, multi->slaves[i].pcm); in snd_pcm_multi_link_slaves()
751 multi->slaves[i].linked = master; in snd_pcm_multi_link_slaves()
756 /* linking to a multi as a master is easy - simply link to the first
1180 [master INT] # Define the master slav
[all...]
H A Dpcm.c7915 rbptr->master = NULL; /* I'm master */ in snd_pcm_set_ptr()
7958 pcm_rbptr->master = slave_rbptr->master ? slave_rbptr->master : slave; in snd_pcm_link_ptr()
7984 pcm_rbptr->master = NULL; in snd_pcm_unlink_ptr()
H A Dpcm_local.h114 snd_pcm_t *master; member
174 int (*link_slaves)(snd_pcm_t *pcm, snd_pcm_t *master);
/third_party/mbedtls/library/
H A Dssl_tls.c418 const unsigned char master[48],
3426 + sizeof(session->master) in ssl_tls12_session_save()
3434 memcpy(p, session->master, 48); in ssl_tls12_session_save()
3583 memcpy(session->master, p, 48); in ssl_tls12_session_load()
4198 * opaque master[48]; // fixed length in the standard
5342 ssl->session->master, in ssl_context_load()
6994 * Compute master secret if needed
7001 * [out] master
7009 unsigned char *master, in ssl_compute_master()
7015 * "The master secre in ssl_compute_master()
7008 ssl_compute_master(mbedtls_ssl_handshake_params *handshake, unsigned char *master, const mbedtls_ssl_context *ssl) ssl_compute_master() argument
8789 ssl_tls12_populate_transform(mbedtls_ssl_transform *transform, int ciphersuite, const unsigned char master[48], int encrypt_then_mac, ssl_tls_prf_t tls_prf, const unsigned char randbytes[64], mbedtls_ssl_protocol_version tls_version, unsigned endpoint, const mbedtls_ssl_context *ssl) ssl_tls12_populate_transform() argument
[all...]
/third_party/json/
H A DMakefile261 curl https://raw.githubusercontent.com/nemequ/hedley/master/hedley.h -o include/nlohmann/thirdparty/hedley/hedley.hpp
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_squeezer.py330 self.assertEqual(expandingbutton.master, text_widget)
H A Dtest_sidebar.py26 self.text_frame = self.text.master
/third_party/python/PCbuild/
H A Dprepare_libffi.bat21 echo Based on https://github.com/libffi/libffi/blob/master/.appveyor.yml
/third_party/python/Lib/tkinter/test/test_ttk/
H A Dtest_widgets.py157 image = tkinter.PhotoImage(master=self.root, name='image1')
158 image2 = tkinter.PhotoImage(master=self.root, name='image2')
1551 commands = self.tv.master._tclCommands
1553 self.assertEqual(commands, self.tv.master._tclCommands)
/third_party/elfutils/tests/
H A Drun-dwarf-getmacros.sh705 file /home/petr/proj/elfutils/master/elfutils/x.c
/third_party/python/Lib/tkinter/test/
H A Dwidget_tests.py166 image = tkinter.PhotoImage(master=self.root, name='image1')
/third_party/ffmpeg/libavfilter/
H A Dvf_lut3d.c1519 AVFrame *master, *second, *out; in update_apply_clut() local
1522 ret = ff_framesync_dualinput_get(fs, &master, &second); in update_apply_clut()
1526 return ff_filter_frame(ctx->outputs[0], master); in update_apply_clut()
1536 out = apply_lut(inlink, master); in update_apply_clut()
/third_party/openssl/crypto/bn/asm/
H A Dbn-c64xplus.asm222 ;; was rather to learn to master nested SPLOOPs...
/third_party/mbedtls/tests/src/test_helpers/
H A Dssl_helpers.c1690 memset(session->master, 17, sizeof(session->master)); in mbedtls_test_ssl_tls12_populate_session()
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H A Ddaemon.c162 * Trace up to and return master daemon. If the supplied daemon
163 * is a master, then return the daemon itself.
166 * @return master daemon handle
171 while (NULL != daemon->master) in MHD_get_master()
172 daemon = daemon->master; in MHD_get_master()
4171 d->master = daemon; in MHD_start_daemon_va()
4498 /* clean up master threads */ in MHD_stop_daemon()
/third_party/libabigail/tools/
H A Dfedabipkgdiff652 https://pagure.io/koji/blob/master/f/hub/kojihub.py#_7835
/third_party/mbedtls/include/mbedtls/
H A Dssl.h1255 unsigned char MBEDTLS_PRIVATE(master)[48]; /*!< the master secret */
1439 uint8_t MBEDTLS_PRIVATE(extended_ms); /*!< negotiate extended master secret? */
1931 /** Callback to export key block and master secret */
3177 * If a valid entry is found, it should fill the master of
4188 * \brief Manage support for mki(master key id) value
/third_party/cups-filters/utils/
H A Dcups-browsed.c6013 !q->slave_of) /* Find the master of the queues with this name, in join_cluster_if_needed()
6274 /* If we hit a slave and not the master, switch to the master */ in on_job_state()
7616 /* Make q the master of the cluster and p a slave of q. This way in remove_printer_entry()
7648 remote_printer_t *p, *q, *r, *s, *master; in update_cups_queues() local
7694 /* Create dummy entry to point slaves at when their master is about to in update_cups_queues()
7942 master = p->slave_of; in update_cups_queues()
7943 if (master->queue_name) { in update_cups_queues()
7945 master->status = STATUS_TO_BE_CREATED; in update_cups_queues()
7946 master in update_cups_queues()
[all...]
/third_party/python/Lib/idlelib/
H A Dpyshell.py1627 icons = [PhotoImage(master=root, file=iconfile)
H A Deditor.py1319 "-displayof", text.master,
1734 # error if close master window first - timer event, after script
/third_party/python/Lib/tkinter/test/test_tkinter/
H A Dtest_widgets.py299 image = tkinter.PhotoImage(master=self.root, name='image1')

Completed in 81 milliseconds

123456