/hardware/st/secure_element/ese-spi-driver/utils-lib/ |
D | DataMgmt.cc | 26 static TpduRecvBuff_List_t *head = NULL, *current = NULL; variable 70 current = NULL; in DataMgmt_GetData() 105 current = newNode; in DataMgmt_StoreDataInList() 107 current->pNext = newNode; in DataMgmt_StoreDataInList() 108 current = newNode; in DataMgmt_StoreDataInList() 150 TpduRecvBuff_List_t *current, *next; in DataMgmt_DeletList() local 151 current = head; in DataMgmt_DeletList() 157 while (current != NULL) { in DataMgmt_DeletList() 158 next = current->pNext; in DataMgmt_DeletList() 159 free(current->tData.data); in DataMgmt_DeletList() [all …]
|
/hardware/ril/libril/ |
D | RilSapSocket.cpp | 86 RilSapSocketList *current = head; in printList() local 88 while(NULL != current) { in printList() 89 RLOGD("SocketName:%s",current->socket->name); in printList() 90 RLOGD("Socket id:%d",current->socket->id); in printList() 91 current = current->next; in printList() 97 RilSapSocketList *current = head; in getSocketById() local 102 while(NULL != current) { in getSocketById() 103 if(socketId == current->socket->id) { in getSocketById() 104 sap_socket = current->socket; in getSocketById() 107 current = current->next; in getSocketById() [all …]
|
/hardware/nxp/secure_element/pn8x/libese-spi/p73/lib/ |
D | phNxpEseDataMgr.cpp | 25 static phNxpEse_sCoreRecvBuff_List_t *head = NULL, *current = NULL; variable 69 current = NULL; in phNxpEse_GetData() 99 current = newNode; in phNxpEse_StoreDatainList() 101 current->pNext = newNode; in phNxpEse_StoreDatainList() 102 current = newNode; in phNxpEse_StoreDatainList() 145 phNxpEse_sCoreRecvBuff_List_t *current, *next; in phNxpEse_DeletList() local 146 current = head; in phNxpEse_DeletList() 152 while (current != NULL) { in phNxpEse_DeletList() 153 next = current->pNext; in phNxpEse_DeletList() 154 phNxpEse_free(current); in phNxpEse_DeletList() [all …]
|
/hardware/google/gfxstream/host/tests/ |
D | GLSnapshotTesting.cpp | 72 GLboolean current; in compareGlobalGlBoolean() local 73 gl->glGetBooleanv(name, ¤t); in compareGlobalGlBoolean() 75 return compareValue<GLboolean>(expected, current, in compareGlobalGlBoolean() 83 GLint current; in compareGlobalGlInt() local 84 gl->glGetIntegerv(name, ¤t); in compareGlobalGlInt() 86 return compareValue<GLint>(expected, current, in compareGlobalGlInt() 95 GLint current; in compareGlobalGlInt_i() local 96 gl->glGetIntegeri_v(name, index, ¤t); in compareGlobalGlInt_i() 98 return compareValue<GLint>(expected, current, in compareGlobalGlInt_i() 107 GLfloat current; in compareGlobalGlFloat() local [all …]
|
D | GLSnapshotFramebuffers_unittest.cpp | 58 GlFramebufferAttachment current = {}; in changedStateCheck() local 63 (GLint*)¤t.type); in changedStateCheck() 66 if (current.type != GL_NONE) { in changedStateCheck() 70 (GLint*)¤t.name); in changedStateCheck() 71 if (current.type == GL_TEXTURE) { in changedStateCheck() 75 (GLint*)¤t.textureLevel); in changedStateCheck() 79 (GLint*)¤t.textureCubeMapFace); in changedStateCheck() 83 EXPECT_EQ(expected.type, current.type); in changedStateCheck() 84 EXPECT_EQ(expected.name, current.name); in changedStateCheck() 85 EXPECT_EQ(expected.textureLevel, current.textureLevel); in changedStateCheck() [all …]
|
/hardware/interfaces/health/utils/libhealthtest/include/health-test/ |
D | TestUtils.h | 16 inline AssertionResult IsBatteryCurrentSignCorrect(const BatteryStatusType& status, int32_t current, in IsBatteryCurrentSignCorrect() argument 25 if (current == 0 && acceptZeroCurrentAsUnknown) { in IsBatteryCurrentSignCorrect() 32 if (current != 0) { in IsBatteryCurrentSignCorrect() 36 << "BatteryStatus is UNKNOWN but current is not 0. Actual: " << current; in IsBatteryCurrentSignCorrect() 40 if (current <= 0) { in IsBatteryCurrentSignCorrect() 43 << current; in IsBatteryCurrentSignCorrect() 47 if (current > 0) { in IsBatteryCurrentSignCorrect() 49 << " but current is positive. Actual: " << current; in IsBatteryCurrentSignCorrect() 53 if (current >= 0) { in IsBatteryCurrentSignCorrect() 55 << " but current is not negative. Actual: " << current; in IsBatteryCurrentSignCorrect() [all …]
|
/hardware/nxp/secure_element/snxxx/libese-spi/p73/lib/ |
D | phNxpEseDataMgr.cpp | 24 static phNxpEse_sCoreRecvBuff_List_t *head = NULL, *current = NULL; variable 53 current = NULL; in phNxpEse_GetData() 109 current = newNode; in phNxpEse_StoreDatainList() 111 current->pNext = newNode; in phNxpEse_StoreDatainList() 112 current = newNode; in phNxpEse_StoreDatainList() 155 phNxpEse_sCoreRecvBuff_List_t *current, *next; in phNxpEse_DeletList() local 156 current = head; in phNxpEse_DeletList() 162 while (current != NULL) { in phNxpEse_DeletList() 163 next = current->pNext; in phNxpEse_DeletList() 164 phNxpEse_free(current); in phNxpEse_DeletList() [all …]
|
/hardware/invensense/6515/libsensors_iio/software/simple_apps/mpu_iio/ |
D | iio_utils.h | 35 char *current; in iioutils_break_up_name() local 38 current = strdup(full_name); in iioutils_break_up_name() 39 working = strtok(current, "_\0"); in iioutils_break_up_name() 52 free(current); in iioutils_break_up_name() 285 struct iio_channel_info *current; in build_channel_array() local 336 current = &(*ci_array)[count++]; in build_channel_array() 351 fscanf(sysfsfp, "%u", ¤t->enabled); in build_channel_array() 354 if (!current->enabled) { in build_channel_array() 360 current->scale = 1.0; in build_channel_array() 361 current->offset = 0; in build_channel_array() [all …]
|
/hardware/invensense/6515/libsensors_iio/software/simple_apps/devnode_parser/ |
D | iio_utils.h | 35 char *current; in iioutils_break_up_name() local 38 current = strdup(full_name); in iioutils_break_up_name() 39 working = strtok(current, "_\0"); in iioutils_break_up_name() 52 free(current); in iioutils_break_up_name() 285 struct iio_channel_info *current; in build_channel_array() local 336 current = &(*ci_array)[count++]; in build_channel_array() 351 fscanf(sysfsfp, "%u", ¤t->enabled); in build_channel_array() 354 if (!current->enabled) { in build_channel_array() 360 current->scale = 1.0; in build_channel_array() 361 current->offset = 0; in build_channel_array() [all …]
|
/hardware/invensense/6515/libsensors_iio/software/simple_apps/stress_iio/ |
D | iio_utils.h | 33 char *current; in iioutils_break_up_name() local 36 current = strdup(full_name); in iioutils_break_up_name() 37 working = strtok(current, "_\0"); in iioutils_break_up_name() 50 free(current); in iioutils_break_up_name() 284 struct iio_channel_info *current; in build_channel_array() local 335 current = &(*ci_array)[count++]; in build_channel_array() 350 fscanf(sysfsfp, "%u", ¤t->enabled); in build_channel_array() 353 if (!current->enabled) { in build_channel_array() 359 current->scale = 1.0; in build_channel_array() 360 current->offset = 0; in build_channel_array() [all …]
|
/hardware/google/gfxstream/host/ |
D | RingStream.cpp | 151 auto current = dst + count; in readRaw() local 160 type1Read(ringAvailable, dst, &count, ¤t, ptrEnd); in readRaw() 163 type2Read(ringAvailable, &count, ¤t, ptrEnd); in readRaw() 177 &count, ¤t, ptrEnd); in readRaw() 238 size_t* count, char** current, const char* ptrEnd) { in type1Read() argument 252 if (*current + xfersPtr[i].size > ptrEnd) { in type1Read() 254 if (begin == *current && i == 0) { in type1Read() 266 memcpy(*current, src, xfersPtr[i].size); in type1Read() 270 *current += xfersPtr[i].size; in type1Read() 281 size_t* count, char** current,const char* ptrEnd) { in type2Read() argument [all …]
|
D | RingStream.h | 72 …void type1Read(uint32_t available, char* begin, size_t* count, char** current, const char* ptrEnd); 73 void type2Read(uint32_t available, size_t* count, char** current, const char* ptrEnd); 74 void type3Read(uint32_t available, size_t* count, char** current, const char* ptrEnd);
|
/hardware/google/gfxstream/guest/mesa/src/util/ |
D | blob.c | 105 blob->current = blob->data + ALIGN(blob->current - blob->data, alignment); in blob_reader_align() 255 blob->current = data; in blob_reader_init() 269 if (blob->current <= blob->end && blob->end - blob->current >= size) in ensure_can_read() 285 ret = blob->current; in blob_read_bytes() 287 blob->current += size; in blob_read_bytes() 308 blob->current += size; in blob_skip_bytes() 336 if (blob->current >= blob->end) { in BLOB_READ_TYPE() 344 nul = memchr(blob->current, 0, blob->end - blob->current); in BLOB_READ_TYPE() 351 size = nul - blob->current + 1; in BLOB_READ_TYPE() 355 ret = (char *) blob->current; in BLOB_READ_TYPE() [all …]
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/commonvalidity/ |
D | draw_common.adoc | 9 The current render pass must: be <<renderpass-compatibility,compatible>> 14 The subpass index of the current render pass must: be equal to the 25 input attachment in the current subpass 36 Memory backing image subresources used as attachments in the current 127 If any previously recorded command in the current subpass accessed an 132 If the current render pass instance uses a depth/stencil attachment with 136 If the current render pass instance uses a depth/stencil attachment with 143 flink:vkCmdSetViewport must: have been called in the current command 148 flink:vkCmdSetScissor must: have been called in the current command 153 flink:vkCmdSetLineWidth must: have been called in the current command [all …]
|
D | draw_mesh_limits_common.adoc | 9 If the current pipeline bound to ename:VK_PIPELINE_BIND_POINT_GRAPHICS 14 If the current pipeline bound to ename:VK_PIPELINE_BIND_POINT_GRAPHICS 19 If the current pipeline bound to ename:VK_PIPELINE_BIND_POINT_GRAPHICS 24 If the current pipeline bound to ename:VK_PIPELINE_BIND_POINT_GRAPHICS 30 If the current pipeline bound to ename:VK_PIPELINE_BIND_POINT_GRAPHICS 35 If the current pipeline bound to ename:VK_PIPELINE_BIND_POINT_GRAPHICS 40 If the current pipeline bound to ename:VK_PIPELINE_BIND_POINT_GRAPHICS 45 If the current pipeline bound to ename:VK_PIPELINE_BIND_POINT_GRAPHICS
|
/hardware/google/graphics/common/libhwjpeg/ |
D | AppMarkerWriter.cpp | 278 char *CAppMarkerWriter::WriteAPP11(char *current, size_t dummy, size_t align) { in WriteAPP11() argument 281 if ((dummy == 0) && (align == 1)) return current; in WriteAPP11() 283 if (!m_pExif && !m_pExtra) return current; in WriteAPP11() 285 uint16_t len = PTR_TO_ULONG(current + APPMARKLEN) & (align - 1); in WriteAPP11() 291 *current++ = 0xFF; in WriteAPP11() 292 *current++ = 0xEB; in WriteAPP11() 293 WriteDataInBig(current, len); in WriteAPP11() 295 return current + len; in WriteAPP11() 298 char *CAppMarkerWriter::WriteAPPX(char *current, bool just_reserve) { in WriteAPPX() argument 299 if (!m_pExtra) return current; in WriteAPPX() [all …]
|
/hardware/qcom/audio/hal/voice_extn/ |
D | voice_extn.c | 148 if(session->state.current == call_state){ in get_session_id_with_state() 172 __func__, session->state.current, session->state.new, session->vsid); in update_calls() 177 switch(session->state.current) in update_calls() 186 session->state.current = session->state.new; in update_calls() 192 session->state.current = session->state.new; in update_calls() 201 session->state.current = session->state.new; in update_calls() 207 __func__, session->state.current, session->vsid); in update_calls() 213 switch(session->state.current) in update_calls() 224 session->state.current = session->state.new; in update_calls() 230 __func__, session->state.current, session->vsid); in update_calls() [all …]
|
/hardware/google/gfxstream/guest/mesa/bin/ |
D | gen_release_notes_test.py | 44 def test_next_version(current: str, is_point: bool, expected: str) -> None: 45 assert calculate_next_version(current, is_point) == expected 54 def test_previous_version(current: str, is_point: bool, expected: str) -> None: 55 assert calculate_previous_version(current, is_point) == expected
|
/hardware/google/gfxstream/guest/OpenglCodecCommon/ |
D | StateTrackingSupport.h | 51 uint64_t* current = mStorage.get(index); in set() local 56 *current = *current | flag; in set() 58 *current = *current & (~flag); in set() 65 const uint64_t* current = mStorage.get_const(index); in get() local 67 if (!current) return initialIsTrue; in get() 70 return (flag & (*current)) != 0; in get()
|
/hardware/interfaces/broadcastradio/1.1/default/ |
D | Tuner.cpp | 202 auto current = mCurrentProgram; in scan() local 203 auto found = lower_bound(list.begin(), list.end(), VirtualProgram({current})); in scan() 206 if (utils::tunesTo(current, found->selector)) found++; in scan() 254 auto current = utils::getId(mCurrentProgram, IdentifierType::AMFM_FREQUENCY, 0); in step() local 257 current += mAmfmConfig.spacings[0]; in step() 259 current -= mAmfmConfig.spacings[0]; in step() 262 if (current > mAmfmConfig.upperLimit) current = mAmfmConfig.lowerLimit; in step() 263 if (current < mAmfmConfig.lowerLimit) current = mAmfmConfig.upperLimit; in step() 265 tuneInternalLocked(utils::make_selector(mAmfmConfig.type, current)); in step()
|
/hardware/interfaces/tv/tuner/1.0/ |
D | ITimeFilter.hal | 51 * Get the current time in the time filter. 53 * It is used by the client to inquiry current time in the time filter. 59 * @return timeStamp current time stamp in the time filter. 64 * Get the time from the beginning of current data source. 67 * of current data source. 73 * @return timeStamp time stamp from the beginning of current data source.
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/VK_EXT_swapchain_maintenance1/ |
D | SwapchainPresentModeInfo.adoc | 21 the presentation modes used for the current and subsequent presentation 28 The current image being queued for presentation and subsequent images will 47 vertical blanking period will follow the new mode for current and 53 there are no outstanding present operations in this mode, and current 62 In this case, the current present operation will replace the pending 71 the current and subsequent updates are applied according to the new
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/ |
D | VK_KHR_get_display_properties2.adoc | 42 The only current input is a slink:VkPhysicalDevice. 45 The only current input is a slink:VkPhysicalDevice. 48 The only current inputs are a slink:VkPhysicalDevice and a
|
D | VK_EXT_shader_subgroup_ballot.adoc | 37 * code:SubgroupEqMaskKHR, containing the subgroup mask of the current 40 greater than or equal to the current invocation, 42 greater than the current invocation, 44 less than or equal to the current invocation, 46 less than the current invocation,
|
/hardware/interfaces/health/2.0/ |
D | IHealth.hal | 77 * Get instantaneous battery current in microamperes(µA). 79 * Positive values indicate net current entering the battery from a charge 80 * source, negative values indicate net current discharging from the 87 * @return value instantaneous battery current, or 0 if not 93 * Get average battery current in microamperes(µA). 95 * Positive values indicate net current entering the battery from a charge 96 * source, negative values indicate net current discharging from the 104 * @return value average battery current, or 0 if not successful.
|