/external/selinux/policycoreutils/setsebool/ |
D | setsebool.c | 224 char *name, *value_ptr; in setbool() local 235 value_ptr = strchr(list[i], '='); in setbool() 236 if (value_ptr == 0) { in setbool() 242 *value_ptr = 0; in setbool() 243 value_ptr++; in setbool() 244 if (strcmp(value_ptr, "1") == 0 || in setbool() 245 strcasecmp(value_ptr, "true") == 0 || in setbool() 246 strcasecmp(value_ptr, "on") == 0) in setbool() 248 else if (strcmp(value_ptr, "0") == 0 || in setbool() 249 strcasecmp(value_ptr, "false") == 0 || in setbool() [all …]
|
/external/vulkan-validation-layers/libs/glm/gtc/ |
D | type_ptr.inl | 39 GLM_FUNC_QUALIFIER T const * value_ptr function 50 GLM_FUNC_QUALIFIER T * value_ptr function 61 GLM_FUNC_QUALIFIER T const * value_ptr function 72 GLM_FUNC_QUALIFIER T * value_ptr function 83 GLM_FUNC_QUALIFIER T const * value_ptr function 94 GLM_FUNC_QUALIFIER T * value_ptr function 105 GLM_FUNC_QUALIFIER T const * value_ptr function 116 GLM_FUNC_QUALIFIER T * value_ptr function 127 GLM_FUNC_QUALIFIER T const * value_ptr function 138 GLM_FUNC_QUALIFIER T * value_ptr function [all …]
|
D | type_ptr.hpp | 90 GLM_FUNC_DECL typename genType::value_type const * value_ptr(genType const & vec);
|
/external/piex/src/tiff_directory/ |
D | tiff_directory.cc | 83 RangeCheckedBytePtr value_ptr(&directory_entry->value[0], in Get() local 91 my_value[c] = Get16u(value_ptr + c * 2, is_big_endian, &err); in Get() 93 my_value[c] = Get32u(value_ptr + c * 4, is_big_endian, &err); in Get() 122 RangeCheckedBytePtr value_ptr(&directory_entry->value[0], in Get() local 131 my_value[c].numerator = Get16u(value_ptr + c * 2, is_big_endian, &err); in Get() 136 my_value[c].numerator = Get32u(value_ptr + c * 4, is_big_endian, &err); in Get() 141 my_value[c].numerator = Get32u(value_ptr + c * 8, is_big_endian, &err); in Get() 143 Get32u(value_ptr + c * 8 + 4, is_big_endian, &err); in Get() 177 RangeCheckedBytePtr value_ptr(&directory_entry->value[0], in Get() local 186 my_value[c].numerator = Get16s(value_ptr + c * 2, is_big_endian, &err); in Get() [all …]
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_exit/ |
D | 1-1.c | 44 int *value_ptr; in main() local 47 value_ptr = 0; in main() 61 if (pthread_join(new_th, (void *)&value_ptr) != 0) { in main() 68 if ((long)value_ptr != RETURN_CODE) { in main()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_join/ |
D | 2-1.c | 48 void *value_ptr; in main() local 50 value_ptr = 0; in main() 63 if (pthread_join(new_th, &value_ptr) != 0) { in main() 73 if (value_ptr != RETURN_CODE) { in main()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_key_create/ |
D | 1-2.c | 48 void *value_ptr; in main() local 68 if (pthread_join(new_th, &value_ptr) != 0) { in main() 73 if (value_ptr == (void *)PTS_FAIL) { in main()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cleanup_push/ |
D | 1-2.c | 81 void *value_ptr; /* hold return value of thread from pthread_join */ in main() local 108 if (pthread_join(new_th, &value_ptr) != 0) { in main() 114 if ((long)value_ptr == PTS_UNRESOLVED) { in main()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | DataExtractor.cpp | 38 for (T *value_ptr = dst, *end = dst + count; value_ptr != end; in getUs() local 39 ++value_ptr, offset += sizeof(*dst)) in getUs() 40 *value_ptr = getU<T>(offset_ptr, de, isLittleEndian, Data); in getUs()
|
/external/llvm/lib/Support/ |
D | DataExtractor.cpp | 38 for (T *value_ptr = dst, *end = dst + count; value_ptr != end; in getUs() local 39 ++value_ptr, offset += sizeof(*dst)) in getUs() 40 *value_ptr = getU<T>(offset_ptr, de, isLittleEndian, Data); in getUs()
|
/external/libese/apps/boot/ |
D | ese_boot_tool.cpp | 115 char *value_ptr = &value[0]; in collect_device_data() local 118 value_ptr = getenv(strrchr(*key, '.') + 1); in collect_device_data() 119 if (value_ptr == NULL) { in collect_device_data() 124 } else if (!get_property_helper(*key, value_ptr)) { in collect_device_data() 127 len = static_cast<uint8_t>(strlen(value_ptr)); in collect_device_data() 129 device_data->append(value_ptr); in collect_device_data()
|
/external/libvpx/libvpx/vpx_util/ |
D | vpx_thread.h | 94 static INLINE int pthread_join(pthread_t thread, void **value_ptr) { in pthread_join() argument 95 (void)value_ptr; in pthread_join() 252 static INLINE int pthread_join(pthread_t thread, void **value_ptr) { 253 (void)value_ptr;
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_pthread_wrappers.h | 56 inline void PTHREAD_JOIN(pthread_t thread, void **value_ptr) { in PTHREAD_JOIN() argument 57 ASSERT_EQ(0, value_ptr) << "Nonzero value_ptr is not supported yet."; in PTHREAD_JOIN()
|
/external/python/cpython3/Objects/ |
D | dictobject.c | 1777 PyObject **value_ptr = &mp->ma_values[i]; in _PyDict_Next() local 1778 while (i < n && *value_ptr == NULL) { in _PyDict_Next() 1779 value_ptr++; in _PyDict_Next() 1785 value = *value_ptr; in _PyDict_Next() 2181 PyObject **value_ptr; in dict_keys() local 2198 value_ptr = mp->ma_values; in dict_keys() 2202 value_ptr = &ep[0].me_value; in dict_keys() 2206 if (*value_ptr != NULL) { in dict_keys() 2212 value_ptr = (PyObject **)(((char *)value_ptr) + offset); in dict_keys() 2225 PyObject **value_ptr; in dict_values() local [all …]
|
/external/oj-libjdwp/src/share/javavm/export/ |
D | jvmti.h | 1111 jobject* value_ptr); 1118 jint* value_ptr); 1125 jlong* value_ptr); 1132 jfloat* value_ptr); 1139 jdouble* value_ptr); 1673 char** value_ptr); 1782 jobject* value_ptr); 2037 jobject* value_ptr) { in GetLocalObject() 2038 return functions->GetLocalObject(this, thread, depth, slot, value_ptr); in GetLocalObject() 2043 jobject* value_ptr) { in GetLocalInstance() [all …]
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_lock/ |
D | 1-1.c | 103 void *value_ptr; in main() local 139 if (pthread_join(child_thread, &value_ptr) != 0) { in main()
|
/external/vulkan-validation-layers/demos/smoke/ |
D | Smoke.cpp | 619 memcpy(params.light_pos, glm::value_ptr(obj.light_pos), sizeof(obj.light_pos)); in draw_object() 620 memcpy(params.light_color, glm::value_ptr(obj.light_color), sizeof(obj.light_color)); in draw_object() 621 memcpy(params.model, glm::value_ptr(obj.model), sizeof(obj.model)); in draw_object() 622 …memcpy(params.view_projection, glm::value_ptr(camera_.view_projection), sizeof(camera_.view_projec… in draw_object() 627 memcpy(params->light_pos, glm::value_ptr(obj.light_pos), sizeof(obj.light_pos)); in draw_object() 628 memcpy(params->light_color, glm::value_ptr(obj.light_color), sizeof(obj.light_color)); in draw_object() 629 memcpy(params->model, glm::value_ptr(obj.model), sizeof(obj.model)); in draw_object() 630 …memcpy(params->view_projection, glm::value_ptr(camera_.view_projection), sizeof(camera_.view_proje… in draw_object()
|
/external/libese/libese-hw/nxp/pn80t/ |
D | common.c | 219 const uint32_t *const value_ptr = (uint32_t *)(tag_ptr + 2); in nxp_pn80t_send_cooldown() local 220 uint32_t cooldown = ese_be32toh(*value_ptr); in nxp_pn80t_send_cooldown()
|
/external/tensorflow/tensorflow/compiler/xla/ |
D | reference_util.cc | 113 [&](tensorflow::gtl::ArraySlice<int64> indices, float* value_ptr) { in ConvArray3DGeneralDimensionsDilated() argument 115 *value_ptr = lhs.operator()(indices[0], indices[1], indices[2]); in ConvArray3DGeneralDimensionsDilated() 119 [&](tensorflow::gtl::ArraySlice<int64> indices, float* value_ptr) { in ConvArray3DGeneralDimensionsDilated() argument 121 *value_ptr = rhs.operator()(indices[0], indices[1], indices[2]); in ConvArray3DGeneralDimensionsDilated() 135 [&](tensorflow::gtl::ArraySlice<int64> indices, float* value_ptr) { in ConvArray3DGeneralDimensionsDilated() argument 137 convr3->operator()(indices[0], indices[1], indices[2]) = *value_ptr; in ConvArray3DGeneralDimensionsDilated()
|
/external/webp/src/utils/ |
D | thread_utils.c | 98 static int pthread_join(pthread_t thread, void** value_ptr) { in pthread_join() argument 99 (void)value_ptr; in pthread_join()
|
/external/vulkan-validation-layers/libs/glm/detail/ |
D | dummy.cpp | 95 glUniformMatrix4fv(LocationMVP, 1, GL_FALSE, glm::value_ptr(MVP)); in func()
|
/external/kernel-headers/original/uapi/sound/ |
D | asound.h | 931 long *value_ptr; /* obsoleted */ member 935 long long *value_ptr; /* obsoleted */ member
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | private-memory-r600.ll | 104 %value_ptr = getelementptr inbounds [2 x i32], [2 x i32]* %prv_array, i32 0, i32 0 105 %value = load i32, i32* %value_ptr
|
D | amdgpu.private-memory.ll | 220 %value_ptr = getelementptr inbounds [2 x i32], [2 x i32]* %prv_array, i32 0, i32 0 221 %value = load i32, i32* %value_ptr
|
/external/compiler-rt/lib/tsan/tests/rtl/ |
D | tsan_test_util_posix.cc | 62 extern "C" int __interceptor_pthread_join(pthread_t thread, void **value_ptr);
|