Displaying 9 results from an estimated 9 matches for "dobul".
Did you mean:
dobel
2019 Jan 22
1
About xapian serialization on float/double variables
...ubling you this time. It can be witnessed that xapian will store Document values with serialization approach when given value types meet float/double.
Such an approach is deployed on sort_key related fields as well, where the xapian requires KeyMaker::operator() must return an serialized float/dobule variable. Then heap sort comes and ranks the vector<MSetItem> items (multimatch.cc MultiMatch::get_mset()) by comparing serialized sort_keys (std::string) straightforwardly according to <IEEE-754 doubles>. Subsequently sort_keys will be unserialized when user needs to read its real flo...
2002 Jul 20
3
Vorbis 1.0 spec notes, part 1
...left" -> "shifted right" (right?)
- step 4: "if ( [mantissa] is nonzero )" -> "if ( [sign] is nonzero )"
- question: What are the tolerances on this function? Is it acceptable
for me to cast mantissa to double, multiply it by the double returned
from pow(2,(dobule)(exponent-788)), and cast the result to float?
* lookup1_values
- given:
return_value ^ codebook_dimensions = codebook_entries
-> is this correct: ? (I'm out of school so my algebra is slacking...)
-> return_value = log(codebook_entires) / log(codebook_dimensions)
-> where return_va...
2013 Mar 11
4
[PATCH] tcm_vhost: Wait for pending requests in vhost_scsi_flush()
...unsigned long)iov->iov_base & PAGE_MASK)) >> PAGE_SHIFT;
}
+static struct vhost_scsi_inflight *tcm_vhost_alloc_inflight(struct vhost_scsi *vs)
+{
+ struct vhost_scsi_inflight *inflight;
+
+ inflight = kzalloc(sizeof(*inflight), GFP_KERNEL);
+ if (!inflight) {
+ /* Otherwize, we get dobule free of the previous inflight */
+ vs->vs_inflight = NULL;
+ return NULL;
+ }
+ atomic_set(&inflight->count, 0);
+ init_waitqueue_head(&inflight->wait);
+ vs->vs_inflight = inflight;
+
+ return inflight;
+}
+
+static void tcm_vhost_dec_inflight(struct vhost_scsi_inflight *inf...
2013 Mar 11
4
[PATCH] tcm_vhost: Wait for pending requests in vhost_scsi_flush()
...unsigned long)iov->iov_base & PAGE_MASK)) >> PAGE_SHIFT;
}
+static struct vhost_scsi_inflight *tcm_vhost_alloc_inflight(struct vhost_scsi *vs)
+{
+ struct vhost_scsi_inflight *inflight;
+
+ inflight = kzalloc(sizeof(*inflight), GFP_KERNEL);
+ if (!inflight) {
+ /* Otherwize, we get dobule free of the previous inflight */
+ vs->vs_inflight = NULL;
+ return NULL;
+ }
+ atomic_set(&inflight->count, 0);
+ init_waitqueue_head(&inflight->wait);
+ vs->vs_inflight = inflight;
+
+ return inflight;
+}
+
+static void tcm_vhost_dec_inflight(struct vhost_scsi_inflight *inf...
2016 May 04
9
[PATCH 0/8] python: PEP 8 fixes
Hi,
this series cleans up the Python sources, either static or generated,
including also tests, to make them PEP 8 compliant; see
https://www.python.org/dev/peps/pep-0008/ and tools like pep8.
Almost all the issues reported by pep8 are fixed, reducing the issues
from 3818 to 7.
The changes should have no effect on the actual code, while it will
help Python users with consistency with other
2016 May 31
7
[PATCH v7 00/12] Support non-lru page migration
...n support
zram: use __GFP_MOVABLE for memory allocation
* From v6
* rebase on mmotm-2016-05-27-15-19
* clean up zsmalloc - Sergey
* clean up non-lru page migration - Vlastimil
* From v5
* rebase on next-20160520
* move utility functions to compaction.c and export - Sergey
* zsmalloc dobule free fix - Sergey
* add additional Reviewed-by for zsmalloc - Sergey
* From v4
* rebase on mmotm-2016-05-05-17-19
* fix huge object migration - Chulmin
* !CONFIG_COMPACTION support for zsmalloc
* From v3
* rebase on mmotm-2016-04-06-20-40
* fix swap_info deadlock - Chulmin
* race w...
2016 May 31
7
[PATCH v7 00/12] Support non-lru page migration
...n support
zram: use __GFP_MOVABLE for memory allocation
* From v6
* rebase on mmotm-2016-05-27-15-19
* clean up zsmalloc - Sergey
* clean up non-lru page migration - Vlastimil
* From v5
* rebase on next-20160520
* move utility functions to compaction.c and export - Sergey
* zsmalloc dobule free fix - Sergey
* add additional Reviewed-by for zsmalloc - Sergey
* From v4
* rebase on mmotm-2016-05-05-17-19
* fix huge object migration - Chulmin
* !CONFIG_COMPACTION support for zsmalloc
* From v3
* rebase on mmotm-2016-04-06-20-40
* fix swap_info deadlock - Chulmin
* race w...
2016 May 20
5
[PATCH v6 00/12] Support non-lru page migration
...eparate free_zspage from putback_zspage
zsmalloc: use freeobj for index
5. zsmalloc page migration
zsmalloc: page migration support
zram: use __GFP_MOVABLE for memory allocation
* From v5
* rebase on next-20160520
* move utility functions to compaction.c and export - Sergey
* zsmalloc dobule free fix - Sergey
* add additional Reviewed-by for zsmalloc - Sergey
* From v4
* rebase on mmotm-2016-05-05-17-19
* fix huge object migration - Chulmin
* !CONFIG_COMPACTION support for zsmalloc
* From v3
* rebase on mmotm-2016-04-06-20-40
* fix swap_info deadlock - Chulmin
* race w...
2016 May 20
5
[PATCH v6 00/12] Support non-lru page migration
...eparate free_zspage from putback_zspage
zsmalloc: use freeobj for index
5. zsmalloc page migration
zsmalloc: page migration support
zram: use __GFP_MOVABLE for memory allocation
* From v5
* rebase on next-20160520
* move utility functions to compaction.c and export - Sergey
* zsmalloc dobule free fix - Sergey
* add additional Reviewed-by for zsmalloc - Sergey
* From v4
* rebase on mmotm-2016-05-05-17-19
* fix huge object migration - Chulmin
* !CONFIG_COMPACTION support for zsmalloc
* From v3
* rebase on mmotm-2016-04-06-20-40
* fix swap_info deadlock - Chulmin
* race w...