HomeSort by relevance Sort by last modified time
    Searched refs:space_id (Results 1 - 2 of 2) sorted by null

  /external/opencv3/modules/flann/include/opencv2/flann/
hdf5.h 97 hid_t space_id = H5Screate_simple(2, dimsf, NULL); local
102 dataset_id = H5Dcreate2(file_id, name.c_str(), get_hdf5_type<T>(), space_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
104 dataset_id = H5Dcreate(file_id, name.c_str(), get_hdf5_type<T>(), space_id, H5P_DEFAULT);
116 status = H5Dwrite(dataset_id, get_hdf5_type<T>(), memspace_id, space_id, H5P_DEFAULT, dataset.data );
120 H5Sclose(space_id);
142 hid_t space_id = H5Dget_space(dataset_id); local
145 H5Sget_simple_extent_dims(space_id, dims_out, NULL);
152 H5Sclose(space_id);
193 hid_t space_id = H5Dget_space(dataset_id); local
195 H5Sget_simple_extent_dims(space_id, dims, NULL)
    [all...]
  /external/v8/src/heap/
mark-compact.cc 462 const int space_id = FIRST_SPACE + ((i + offset) % num_spaces); variable
463 DCHECK_GE(space_id, FIRST_SPACE);
464 DCHECK_LE(space_id, LAST_PAGED_SPACE);
465 sweeper_->ParallelSweepSpace(static_cast<AllocationSpace>(space_id), 0);
    [all...]

Completed in 3410 milliseconds