| /Zephyr-latest/subsys/bluetooth/controller/util/ | 
| D | dbuf.c | 19 	uint8_t first, last;  in dbuf_alloc()  local 21 	first = hdr->first;  in dbuf_alloc() 23 	if (first == last) {  in dbuf_alloc() 32 		/* LLL has not consumed the first PDU. Revert back the `last` so  in dbuf_alloc() 33 		 * that LLL still consumes the first PDU while the caller of  in dbuf_alloc() 37 		 * 1. LLL runs before `pdu->last` is reverted, then `pdu->first`  in dbuf_alloc() 40 		 * 2. LLL runs after `pdu->last` is reverted, then `pdu->first`  in dbuf_alloc() 44 		hdr->last = first;  in dbuf_alloc() 46 		first_latest = hdr->first;  in dbuf_alloc() 47 		if (first_latest != first) {  in dbuf_alloc() [all …] 
 | 
| D | mfifo.h | 8  * Memory FIFO permitting enqueue at tail (last) and dequeue from head (first). 54 			uint8_t f; /* First. Read index */ \ 60  * @details API 1 and 2. An MFIFO is empty if first == last 80 static inline bool mfifo_enqueue_idx_get(uint8_t count, uint8_t first,  in mfifo_enqueue_idx_get()  argument 91 	 * first == last, but we just advanced a copy of the write-index before  in mfifo_enqueue_idx_get() 92 	 * and may have wrapped. So if first == last the queue is full and we  in mfifo_enqueue_idx_get() 95 	if (last == first) {  in mfifo_enqueue_idx_get() 144 					uint8_t count, uint8_t first,  in mfifo_enqueue_get()  argument 150 	if (!mfifo_enqueue_idx_get(count, first, last, &idx)) {  in mfifo_enqueue_get() 208  *   Empty if first == last [all …] 
 | 
| /Zephyr-latest/tests/bsim/bluetooth/mesh/tests_scripts/provision/ | 
| D | pb_remote_client_server_same_dev.sh | 11 # 2. The first device (prov_device_pb_remote_client_server_same_dev) execute 13 # 3. The first device (prov_device_pb_remote_client_server_same_dev) execute 15 # 4. The first device (prov_device_pb_remote_client_server_same_dev) execute 17 # 5. The first device (prov_device_pb_remote_client_server_same_dev) execute 19 # 6. The first device (prov_device_pb_remote_client_server_same_dev) execute 21 # 7. The first device (prov_device_pb_remote_client_server_same_dev) execute
  | 
| /Zephyr-latest/tests/bsim/bluetooth/host/security/id_addr_update/central/src/ | 
| D | central.c | 28 	/* Connect to the first identity of the peripheral. */  in central() 29 	LOG_INF("conn first");  in central() 34 	/* Subscribe to battery notifications and wait on the first one. */  in central() 35 	LOG_INF("subscribe first");  in central() 49 	/* Wait for notification from the first connection after identity address resolution. */  in central() 53 	/* Disconnect the first identity of the peripheral. */  in central() 54 	LOG_INF("discon id first");  in central()
  | 
| /Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/lll/ | 
| D | lll_adv_pdu.h | 53 	return (void *)lll->adv_data.pdu[lll->adv_data.first];  in lll_adv_data_curr_get() 75 	uint8_t first;  in lll_adv_pdu_latest_peek()  local 77 	first = pdu->first;  in lll_adv_pdu_latest_peek() 78 	if (first != pdu->last) {  in lll_adv_pdu_latest_peek() 79 		first += 1U;  in lll_adv_pdu_latest_peek() 80 		if (first == DOUBLE_BUFFER_SIZE) {  in lll_adv_pdu_latest_peek() 81 			first = 0U;  in lll_adv_pdu_latest_peek() 85 	return (void *)pdu->pdu[first];  in lll_adv_pdu_latest_peek() 126 	return (void *)lll->data.pdu[lll->data.first];  in lll_adv_aux_data_curr_get() 200 	return (void *)lll->data.pdu[lll->data.first];  in lll_adv_sync_data_curr_get() [all …] 
 | 
| D | lll_df.c | 39  * Radio always configures three antenna patterns. First pattern is set implicitly in 134 	uint8_t first, last;  in lll_df_sync_cfg_alloc()  local 139 	first = df_cfg->first;  in lll_df_sync_cfg_alloc() 141 	if (first == last) {  in lll_df_sync_cfg_alloc() 150 		/* LLL has not consumed the first PDU. Revert back the `last` so  in lll_df_sync_cfg_alloc() 151 		 * that LLL still consumes the first PDU while the caller of  in lll_df_sync_cfg_alloc() 155 		 * 1. LLL runs before `pdu->last` is reverted, then `pdu->first`  in lll_df_sync_cfg_alloc() 158 		 * 2. LLL runs after `pdu->last` is reverted, then `pdu->first`  in lll_df_sync_cfg_alloc() 162 		df_cfg->last = first;  in lll_df_sync_cfg_alloc() 164 		first_latest = df_cfg->first;  in lll_df_sync_cfg_alloc() [all …] 
 | 
| D | lll_adv_types.h | 8  * The first and last members are used to make modification to AD data to be 12  * by the member first, such that the buffer is the latest committed by 16 	uint8_t volatile first;  member
  | 
| /Zephyr-latest/tests/lib/cmsis_dsp/filtering/src/ | 
| D | misc_q15.c | 136 	size_t first, size_t in1_length, size_t in2_length, const q15_t *ref,  in test_arm_conv_partial_q15()  argument 144 	output = calloc(first + ref_length, sizeof(q15_t));  in test_arm_conv_partial_q15() 150 			output, first, ref_length);  in test_arm_conv_partial_q15() 155 	memcpy(temp, &output[first], ref_length * sizeof(q15_t));  in test_arm_conv_partial_q15() 173 	size_t first, size_t in1_length, size_t in2_length, const q15_t *ref,  in test_arm_conv_partial_fast_q15()  argument 181 	output = calloc(first + ref_length, sizeof(q15_t));  in test_arm_conv_partial_fast_q15() 187 			output, first, ref_length);  in test_arm_conv_partial_fast_q15() 192 	memcpy(temp, &output[first], ref_length * sizeof(q15_t));  in test_arm_conv_partial_fast_q15() 210 	size_t first, size_t in1_length, size_t in2_length, const q15_t *ref,  in test_arm_conv_partial_opt_q15()  argument 219 	output = calloc(first + ref_length, sizeof(q15_t));  in test_arm_conv_partial_opt_q15() [all …] 
 | 
| /Zephyr-latest/include/zephyr/bluetooth/ | 
| D | crypto.h | 47  *  @param key 128 bit LS byte first key for the encryption of the plaintext 48  *  @param plaintext 128 bit LS byte first plaintext data block to be encrypted 49  *  @param enc_data 128 bit LS byte first encrypted data block 62  *  @param key 128 bit MS byte first key for the encryption of the plaintext 63  *  @param plaintext 128 bit MS byte first plaintext data block to be encrypted 64  *  @param enc_data 128 bit MS byte first encrypted data block 79  *  @param key       128 bit MS byte first key 80  *  @param nonce     13 byte MS byte first nonce 104  *  @param key       128 bit MS byte first key 105  *  @param nonce     13 byte MS byte first nonce
  | 
| /Zephyr-latest/tests/modules/thrift/ThriftTest/src/ | 
| D | server.hpp | 100 		bool first = true;  in testMap()  local 104 			if (first) {  in testMap() 105 				first = false;  in testMap() 110 			printf("%d => %d", m_iter->first, m_iter->second);  in testMap() 121 		bool first = true;  in testStringMap()  local 125 			if (first) {  in testStringMap() 126 				first = false;  in testStringMap() 130 			printf("%s => %s", (m_iter->first).c_str(), (m_iter->second).c_str());  in testStringMap() 140 		bool first = true;  in testSet()  local 144 			if (first) {  in testSet() [all …] 
 | 
| /Zephyr-latest/subsys/bluetooth/controller/ll_sw/openisa/lll/ | 
| D | lll_adv_types.h | 8  * The first and last members are used to make modification to AD data to be 12  * by the member first, such that the buffer is the latest committed by 16 	uint8_t volatile first;  member
  | 
| /Zephyr-latest/drivers/entropy/ | 
| D | entropy_nrf5.c | 44  * Due to the first byte in a stream of bytes being more costly on 46  * amortize the cost of the first byte. 58  * of the first byte on nRF52. 125 	uint32_t first, available;  in rng_pool_get()  local 130 	first = rngp->first_alloc;  in rng_pool_get() 133 	 * The other_read_in_progress is non-zero if rngp->first_read != first,  in rng_pool_get() 137 	other_read_in_progress = (rngp->first_read ^ first);  in rng_pool_get() 139 	available = (last - first) & mask;  in rng_pool_get() 148 	rngp->first_alloc = (first + len) & mask;  in rng_pool_get() 152 		*dst++ = rngp->buffer[first];  in rng_pool_get() [all …] 
 | 
| /Zephyr-latest/dts/bindings/display/ | 
| D | solomon,ssd1322.yaml | 11     description: First visible column number. 17       COM pin used as first row, mapped to the line set by start-line. 34   remap-row-first: 36     description: Set scan direction to vertical first (swap rows/columns).
  | 
| /Zephyr-latest/samples/net/mdns_responder/src/ | 
| D | vlan.c | 16 	struct net_if *first;  member 28 	if (!user_data->first) {  in iface_cb() 29 		user_data->first = iface;  in iface_cb() 124 	 * create IP address for this test. But first the VLAN needs to be  in init_vlan() 127 	ret = setup_iface(iface, user_data.first,  in init_vlan() 146 	net_if_up(user_data.first);  in init_vlan()
  | 
| /Zephyr-latest/tests/bluetooth/controller/mock_ctrl/include/lll/ | 
| D | lll_adv_types.h | 8  * The first and last members are used to make modification to AD data to be 12  * by the member first, such that the buffer is the latest committed by 16 	uint8_t volatile first;  member
  | 
| /Zephyr-latest/boards/st/b_g474e_dpow1/ | 
| D | board.cmake | 3 # keep first 6 # keep first
  | 
| /Zephyr-latest/boards/st/nucleo_c031c6/ | 
| D | board.cmake | 3 # keep first 6 # keep first
  | 
| /Zephyr-latest/boards/st/stm32g081b_eval/ | 
| D | board.cmake | 3 # keep first 6 # keep first
  | 
| /Zephyr-latest/boards/st/stm32g071b_disco/ | 
| D | board.cmake | 3 # keep first 6 # keep first
  | 
| /Zephyr-latest/.github/workflows/ | 
| D | greet_first_time_contributor.yml | 1 name: Greet first time contributor 16 …- uses: zephyrproject-rtos/action-first-interaction@7e6446f8439d8b4399169880c36a3a12b5747699 # v1.… 21             Hi @${{github.event.issue.user.login}}! We appreciate you submitting your first issue 30             first pull request to the Zephyr project! 48             Congratulations on getting your very first Zephyr pull request merged . This is a
  | 
| /Zephyr-latest/samples/net/sockets/echo_client/src/ | 
| D | vlan.c | 16 	struct net_if *first;  member 28 	if (!ud->first) {  in iface_cb() 29 		ud->first = iface;  in iface_cb() 103 	ret = setup_iface(iface, ud.first,  in init_vlan() 120 	net_if_up(ud.first);  in init_vlan()
  | 
| /Zephyr-latest/boards/st/nucleo_wba55cg/ | 
| D | board.cmake | 1 # keep first 4 # keep first
  | 
| /Zephyr-latest/boards/st/nucleo_wba52cg/ | 
| D | board.cmake | 1 # keep first 4 # keep first
  | 
| /Zephyr-latest/include/zephyr/sys/ | 
| D | math_extras.h | 36  * @param a First operand. 45  * @param a First operand. 55  * @param a First operand. 64  * @param a First operand. 83  * @param a First operand. 92  * @param a First operand. 101  * @param a First operand. 110  * @param a First operand.
  | 
| /Zephyr-latest/boards/st/nucleo_c071rb/ | 
| D | board.cmake | 3 # keep first 6 # keep first
  |