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

1 2 3 4

  /external/eigen/doc/snippets/
HessenbergDecomposition_compute.cpp 2 HessenbergDecomposition<MatrixXcf> hd(4);
3 hd.compute(A);
4 cout << "The matrix H in the decomposition of A is:" << endl << hd.matrixH() << endl;
5 hd.compute(2*A); // re-use hd to compute and store decomposition of 2A
6 cout << "The matrix H in the decomposition of 2A is:" << endl << hd.matrixH() << endl;
  /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/fio/
helper_thread.c 72 struct helper_data *hd = data; local
77 sk_out_assign(hd->sk_out);
83 fio_mutex_up(hd->startup_mutex);
86 while (!ret && !hd->exit) {
95 pthread_mutex_lock(&hd->lock);
96 pthread_cond_timedwait(&hd->cond, &hd->lock, &ts);
100 if (hd->reset) {
104 hd->reset = 0;
107 pthread_mutex_unlock(&hd->lock)
157 struct helper_data *hd; local
    [all...]
  /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);
58 gcry_md_hd_t hd; local
76 gcry_md_hd_t hd; local
94 gcry_cipher_hd_t hd; local
113 gcry_cipher_hd_t hd = ctx; local
121 gcry_cipher_hd_t hd = ctx; local
128 gcry_cipher_hd_t hd; local
144 gcry_cipher_hd_t hd = ctx; local
152 gcry_cipher_hd_t hd = ctx; local
    [all...]
  /external/fio/engines/
libhdfs.c 126 struct hdfsio_data *hd = td->io_ops_data; local
134 if (f_id == hd->curr_file_id) {
139 if (hd->curr_file_id != -1) {
140 if ( hdfsCloseFile(hd->fs, hd->fp) == -1) {
144 hd->curr_file_id = -1;
157 hd->fp = hdfsOpenFile(hd->fs, fname, open_flags, 0, 0,
159 if(hd->fp == NULL) {
163 hd->curr_file_id = f_id
170 struct hdfsio_data *hd = td->io_ops_data; local
230 struct hdfsio_data *hd = td->io_ops_data; local
245 struct hdfsio_data *hd = td->io_ops_data; local
311 struct hdfsio_data *hd; local
353 struct hdfsio_data *hd = td->io_ops_data; local
388 struct hdfsio_data *hd = td->io_ops_data; local
    [all...]
  /external/curl/docs/examples/
anyauthput.c 100 int hd; local
113 hd = open(file, O_RDONLY);
114 fstat(hd, &file_info);
126 curl_easy_setopt(curl, CURLOPT_READDATA, (void *)&hd);
132 curl_easy_setopt(curl, CURLOPT_IOCTLDATA, (void *)&hd);
164 close(hd); /* close the local file */
  /external/curl/tests/libtest/
lib541.c 39 int hd; local
56 hd = fstat(fileno(hd_src), &file_info);
57 if(hd == -1) {
lib505.c 42 int hd; local
64 hd = fstat(fileno(hd_src), &file_info);
65 if(hd == -1) {
lib525.c 37 int hd; local
64 hd = fstat(fileno(hd_src), &file_info);
65 if(hd == -1) {
lib582.c 230 int hd; local
253 hd = fstat(fileno(hd_src), &file_info);
254 if(hd == -1) {
  /external/protobuf/ruby/ext/google/protobuf_c/
encode_decode.c 69 submsg_handlerdata_t *hd = ALLOC(submsg_handlerdata_t); local
70 hd->ofs = ofs;
71 hd->md = upb_fielddef_msgsubdef(f);
72 upb_handlers_addcleanup(h, hd, free);
73 return hd;
87 oneof_handlerdata_t *hd = ALLOC(oneof_handlerdata_t); local
88 hd->ofs = ofs;
89 hd->case_ofs = case_ofs;
96 hd->oneof_case_num = upb_fielddef_number(f);
98 hd->md = upb_fielddef_msgsubdef(f)
302 map_handlerdata_t* hd = ALLOC(map_handlerdata_t); local
484 map_handlerdata_t* hd = new_map_handlerdata(offset, map_msgdef, desc); local
499 map_handlerdata_t* hd = new_map_handlerdata(0, msgdef, desc); local
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/drivers/ufs/
ufs.c 175 utrd_header_t *hd; local
196 hd = (utrd_header_t *)utrd->header;
197 hd->ucdba = utrd->upiu & UINT32_MAX;
198 hd->ucdbau = (utrd->upiu >> 32) & UINT32_MAX;
200 hd->rul = utrd->size_resp_upiu >> 2;
201 hd->ruo = utrd->size_upiu >> 2;
211 utrd_header_t *hd; local
224 hd = (utrd_header_t *)utrd->header;
227 hd->i = 1;
228 hd->ct = CT_UFS_STORAGE
314 utrd_header_t *hd; local
370 utrd_header_t *hd; local
414 utrd_header_t *hd; local
442 utrd_header_t *hd; local
    [all...]
  /external/ltp/tools/pounder21/test_scripts/
get_hw_info 81 fdisk -l /dev/sd[a-z] /dev/hd[a-z]
  /external/drm_hwcomposer/
hwcomposer.cpp 489 hwc_drm_display_t *hd = &ctx->displays[display]; local
490 hd->vsync_worker.VSyncControl(enabled);
554 hwc_drm_display_t *hd = &ctx->displays[display]; local
555 hd->config_ids.clear();
570 size_t idx = hd->config_ids.size();
573 hd->config_ids.push_back(mode.id());
576 *num_configs = hd->config_ids.size();
639 hwc_drm_display_t *hd = &ctx->displays[display]; local
640 for (size_t i = 0; i < hd->config_ids.size(); ++i) {
641 if (hd->config_ids[i] == mode.id()
650 hwc_drm_display_t *hd = &ctx->displays[display]; local
718 hwc_drm_display_t *hd = &ctx->displays[display]; local
    [all...]
  /external/parameter-framework/upstream/tools/coverage/
aplog2coverage.sh 63 ARGS="$(getopt --options "hd:o:e:p:f" \
  /toolchain/binutils/binutils-2.27/binutils/
srconv.c 356 struct IT_hd hd; local
358 hd.spare1 = 0;
360 hd.mt = MTYPE_ABS_LM;
362 hd.mt = MTYPE_OMS_OR_LMS;
364 hd.cd = DATE;
366 hd.nu = p->nsources; /* Always one unit */
367 hd.code = 0; /* Always ASCII */
368 hd.ver = "0200"; /* Version 2.00 */
373 hd.au = 8;
374 hd.si = 0
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-powerpc/
aix52.exp 86 {{objdump -h aix-core-sec-1.hd}}
91 {{objdump -h aix-core-sec-2.hd}}
96 {{objdump -h aix-core-sec-3.hd}}
206 {{nm {} aix-weak-1-rel.nd} {objdump -h aix-weak-1-rel.hd}}
211 {{nm {} aix-weak-1-dso.nd} {objdump -h aix-weak-1-dso.hd}
217 {{nm {} aix-weak-1-gcdso.nd} {objdump -h aix-weak-1-gcdso.hd}
  /external/autotest/contrib/
modelviz.py 181 opts, args = getopt.getopt(sys.argv[1:], "hd",
  /external/clang/test/Sema/
attr-flag-enum.c 37 hd = ~0x2, // no-warning enumerator in enum:flag4
  /libcore/ojluni/src/test/java/time/test/java/time/chrono/
TestUmmAlQuraChronology.java 115 public void Test_UmmAlQuraVsISODates(HijrahDate hd, LocalDate ld) {
116 assertEquals(hd.toEpochDay(), ld.toEpochDay(), "Umm alQura date and ISO date should have same epochDay");
252 HijrahDate hd = HijrahChronology.INSTANCE.dateYearDay(1434, i); local
253 int doy = hd.get(DAY_OF_YEAR);
260 HijrahDate hd = HijrahChronology.INSTANCE.dateYearDay(1434, 1); local
261 for (int i = 1; i <= hd.lengthOfYear(); i++) {
262 HijrahDate hd2 = hd.with(DAY_OF_YEAR, i);
270 HijrahDate hd = HijrahChronology.INSTANCE.dateYearDay(1435, 1); local
271 HijrahDate hd2 = hd.with(DAY_OF_YEAR, 0);
276 HijrahDate hd = HijrahChronology.INSTANCE.dateYearDay(1435, 1) local
459 HijrahDate hd = HijrahChronology.INSTANCE.date(year, month, day); local
    [all...]
  /external/libvpx/libvpx/test/
add_noise_test.cc 59 const double hd = stddev6(s[i] - 99, s[i + 1] - 99, s[i + 2] - 99, local
65 EXPECT_NE(hd, 0);
  /external/protobuf/php/ext/google/protobuf/
message.c 88 static void *stringsink_start(void *_sink, const void *hd, size_t size_hint) {
94 static size_t stringsink_string(void *_sink, const void *hd, const char *ptr,
99 UPB_UNUSED(hd);
upb.h 5679 const void *hd; local
5691 const void *hd; local
5703 const void *hd; local
5716 const void *hd; local
5731 const void *hd; local
5744 const void *hd; local
5759 const void *hd; local
5772 const void *hd; local
5790 const void *hd; 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...]

Completed in 1495 milliseconds

1 2 3 4