HomeSort by relevance Sort by last modified time
    Searched defs:hd (Results 1 - 25 of 32) sorted by null

1 2

  /external/curl/tests/libtest/
lib541.c 39 int hd; local
58 hd = fstat(fileno(hd_src), &file_info);
59 if(hd == -1) {
lib505.c 42 int hd; local
66 hd = fstat(fileno(hd_src), &file_info);
67 if(hd == -1) {
lib525.c 37 int hd; local
66 hd = fstat(fileno(hd_src), &file_info);
67 if(hd == -1) {
lib582.c 230 int hd; local
255 hd = fstat(fileno(hd_src), &file_info);
256 if(hd == -1) {
  /external/curl/docs/examples/
anyauthput.c 124 int hd; local
137 hd = open(file, O_RDONLY);
138 fstat(hd, &file_info);
150 curl_easy_setopt(curl, CURLOPT_READDATA, (void*)&hd);
156 curl_easy_setopt(curl, CURLOPT_IOCTLDATA, (void*)&hd);
188 close(hd); /* close the local file */
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btShapeHull.cpp 63 HullDesc hd; local
64 hd.mFlags = QF_TRIANGLES;
65 hd.mVcount = static_cast<unsigned int>(numSampleDirections);
68 hd.mVertices = &supportPoints[0];
69 hd.mVertexStride = sizeof(btVector3);
71 hd.mVertices = &supportPoints[0];
72 hd.mVertexStride = sizeof (btVector3);
77 if (hl.CreateConvexHull (hd, hr) == QE_FAIL)
  /external/clang/test/Sema/
attr-flag-enum.c 37 hd = ~0x2, // no-warning enumerator in enum:flag4
  /external/fio/engines/
libhdfs.c 40 static int fio_hdfsio_setup_fs_params(struct hdfsio_data *hd)
43 hdfsSetWorkingDirectory(hd->fs, "/.perftest");
44 hd->fp = hdfsOpenFile(hd->fs, ".fcount", O_RDONLY, 0, 0, 0);
45 if (hd->fp) {
46 hdfsRead(hd->fs, hd->fp, &(hd->fscount), sizeof(hd->fscount));
47 hdfsCloseFile(hd->fs, hd->fp)
60 struct hdfsio_data *hd; local
132 struct hdfsio_data *hd; local
153 struct hdfsio_data *hd; local
165 struct hdfsio_data *hd; local
175 struct hdfsio_data *hd; local
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/
storage_manager.c 48 struct data_header_t hd[NUM_STORAGE_BOXES]; /**< Header info for each entity */ member in struct:data_storage_t
76 if (key == ds.hd[kk].key) {
85 ds.hd[ds.num].key = key;
86 ds.hd[ds.num].size = size;
106 * Finds key in ds.hd[] array and returns location
113 if (key == ds.hd[kk].key) {
128 struct data_header_t *hd; local
138 hd = (struct data_header_t *)data;
139 if (hd->key != DEFAULT_KEY)
141 len = MIN(hd->size, len)
180 struct data_header_t *hd; local
    [all...]
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/
storage_manager.c 48 struct data_header_t hd[NUM_STORAGE_BOXES]; /**< Header info for each entity */ member in struct:data_storage_t
76 if (key == ds.hd[kk].key) {
85 ds.hd[ds.num].key = key;
86 ds.hd[ds.num].size = size;
106 * Finds key in ds.hd[] array and returns location
113 if (key == ds.hd[kk].key) {
128 struct data_header_t *hd; local
138 hd = (struct data_header_t *)data;
139 if (hd->key != DEFAULT_KEY)
141 len = MIN(hd->size, len)
180 struct data_header_t *hd; local
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/shapebuilders/
ConeShapeBuilder.java 43 final float hd = depth * 0.5f; local
57 curr1.position.set(MathUtils.cos(angle) * hw, 0f, MathUtils.sin(angle) * hd);
CylinderShapeBuilder.java 42 final float hd = depth * 0.5f; local
59 curr1.position.set(MathUtils.cos(angle) * hw, 0f, MathUtils.sin(angle) * hd);
SphereShapeBuilder.java 53 final float hd = depth * 0.5f; local
84 curr1.position.set(MathUtils.cos(angleU) * hw * t, h, MathUtils.sin(angleU) * hd * t).mul(transform);
BoxShapeBuilder.java 114 final float hd = depth * 0.5f; local
115 final float x0 = x - hw, y0 = y - hh, z0 = z - hd, x1 = x + hw, y1 = y + hh, z1 = z + hd;
  /external/wpa_supplicant_8/src/crypto/
crypto_gnutls.c 17 gcry_md_hd_t hd; local
21 if (gcry_md_open(&hd, GCRY_MD_MD4, 0) != GPG_ERR_NO_ERROR)
24 gcry_md_write(hd, addr[i], len[i]);
25 p = gcry_md_read(hd, GCRY_MD_MD4);
28 gcry_md_close(hd);
35 gcry_cipher_hd_t hd; local
48 gcry_cipher_open(&hd, GCRY_CIPHER_DES, GCRY_CIPHER_MODE_ECB, 0);
49 gcry_err_code(gcry_cipher_setkey(hd, pkey, 8));
50 gcry_cipher_encrypt(hd, cypher, 8, clear, 8);
51 gcry_cipher_close(hd);
57 gcry_md_hd_t hd; local
75 gcry_md_hd_t hd; local
93 gcry_cipher_hd_t hd; local
112 gcry_cipher_hd_t hd = ctx; local
119 gcry_cipher_hd_t hd = ctx; local
126 gcry_cipher_hd_t hd; local
142 gcry_cipher_hd_t hd = ctx; local
149 gcry_cipher_hd_t hd = ctx; local
    [all...]
  /external/clang/test/CXX/special/class.copy/
implicit-move.cpp 64 HasDestructor hd; local
65 static_assert(!noexcept(hd = HasDestructor()), "");
  /external/drm_hwcomposer/
hwcomposer.cpp 638 hwc_drm_display_t *hd = &ctx->displays[display]; local
639 return hd->vsync_worker.VSyncControl(enabled);
700 hwc_drm_display_t *hd = &ctx->displays[display]; local
701 hd->config_ids.clear();
716 size_t idx = hd->config_ids.size();
719 hd->config_ids.push_back(mode.id());
722 *num_configs = hd->config_ids.size();
785 hwc_drm_display_t *hd = &ctx->displays[display]; local
786 for (size_t i = 0; i < hd->config_ids.size(); ++i) {
787 if (hd->config_ids[i] == mode.id()
796 hwc_drm_display_t *hd = &ctx->displays[display]; local
864 hwc_drm_display_t *hd = &ctx->displays[display]; local
    [all...]
  /external/opencv3/modules/video/src/
ecc.cpp 376 const int hd = dst.rows; local
399 Mat imageFloat = Mat(hd, wd, CV_32F);// to store the (smoothed) input image
407 preMask = Mat::ones(hd, wd, CV_8U);
428 Mat gradientX = Mat::zeros(hd, wd, CV_32FC1);
429 Mat gradientY = Mat::zeros(hd, wd, CV_32FC1);
  /libcore/luni/src/main/java/java/util/concurrent/locks/
StampedLock.java 1019 WNode hd = new WNode(WMODE, null); local
1143 WNode hd = new WNode(WMODE, null); local
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
srconv.c 355 struct IT_hd hd; local
357 hd.spare1 = 0;
359 hd.mt = MTYPE_ABS_LM;
361 hd.mt = MTYPE_OMS_OR_LMS;
363 hd.cd = DATE;
365 hd.nu = p->nsources; /* Always one unit */
366 hd.code = 0; /* Always ASCII */
367 hd.ver = "0200"; /* Version 2.00 */
372 hd.au = 8;
373 hd.si = 0
    [all...]
  /external/selinux/libsemanage/src/
semanage_store.c 1419 int fc = -1, hd = -1, retval = -1; local
    [all...]
  /external/blktrace/
blktrace.c 1134 struct tracer_devpath_head *hd; local
1136 for (cpu = 0, hd = dpp->heads; cpu < ncpus; cpu++, hd++) {
1137 if (hd->prev)
1138 free(hd->prev);
1140 pthread_mutex_destroy(&hd->mutex);
1155 struct tracer_devpath_head *hd; local
1159 for (cpu = 0, hd = dpp->heads; cpu < ncpus; cpu++, hd++) {
1160 INIT_LIST_HEAD(&hd->head)
1173 struct tracer_devpath_head *hd = &dpp->heads[cpu]; local
1396 struct tracer_devpath_head *hd = dpp->heads; local
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 1485 TreeNode<K,V> hd = null, tl = null; local
2650 TreeNode<K,V> hd = null, tl = null; local
2672 Node<K,V> hd = null, tl = null; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
mce.h 614 ULONGLONG hd:1; member in struct:_ERROR_PROCESSOR_STATE_PARAMETER::__anon41956
  /external/libgdx/gdx/jni/gdx2d/
stb_image.h 1489 int hd,ha; member in struct:__anon15000::__anon15001
    [all...]

Completed in 1378 milliseconds

1 2