/third_party/python/Lib/test/ |
H A D | test_ordered_dict.py | 71 od = OrderedDict() 72 od.update(dict(pairs)) 73 self.assertEqual(sorted(od.items()), pairs) # dict input 74 od = OrderedDict() 75 od.update(**dict(pairs)) 76 self.assertEqual(sorted(od.items()), pairs) # kwds input 77 od = OrderedDict() 78 od.update(pairs) 79 self.assertEqual(list(od.items()), pairs) # pairs input 80 od 663 od = OrderedDict() global() variable in OrderedDictTests.test_reference_loop.A [all...] |
/third_party/backends/backend/ |
H A D | test.c | 355 SANE_Option_Descriptor *od; in init_options() local 360 od = &test_device->opt[opt_num_opts]; in init_options() 361 od->name = ""; in init_options() 362 od->title = SANE_TITLE_NUM_OPTIONS; in init_options() 363 od->desc = SANE_DESC_NUM_OPTIONS; in init_options() 364 od->type = SANE_TYPE_INT; in init_options() 365 od->unit = SANE_UNIT_NONE; in init_options() 366 od->size = sizeof (SANE_Word); in init_options() 367 od->cap = SANE_CAP_SOFT_DETECT; in init_options() 368 od in init_options() 1581 SANE_Option_Descriptor *od; print_options() local [all...] |
H A D | canon_lide70.c | 320 SANE_Option_Descriptor *od; in init_options() local 325 od = &chndl->opt[opt_num_opts]; in init_options() 326 od->name = ""; in init_options() 327 od->title = SANE_TITLE_NUM_OPTIONS; in init_options() 328 od->desc = SANE_DESC_NUM_OPTIONS; in init_options() 329 od->type = SANE_TYPE_INT; in init_options() 330 od->unit = SANE_UNIT_NONE; in init_options() 331 od->size = sizeof (SANE_Word); in init_options() 332 od->cap = SANE_CAP_SOFT_DETECT; in init_options() 333 od in init_options() 548 SANE_Option_Descriptor *od; print_options() local [all...] |
H A D | lexmark.c | 121 SANE_Option_Descriptor *od; in init_options() local 126 od = &(dev->opt[OPT_NUM_OPTS]); in init_options() 127 od->name = SANE_NAME_NUM_OPTIONS; in init_options() 128 od->title = SANE_TITLE_NUM_OPTIONS; in init_options() 129 od->desc = SANE_DESC_NUM_OPTIONS; in init_options() 130 od->type = SANE_TYPE_INT; in init_options() 131 od->unit = SANE_UNIT_NONE; in init_options() 132 od->size = sizeof (SANE_Word); in init_options() 133 od->cap = SANE_CAP_SOFT_DETECT; in init_options() 134 od in init_options() [all...] |
H A D | ricoh2.c | 227 SANE_Option_Descriptor *od; in init_options() local 232 od = &(dev->opt[OPT_NUM_OPTS]); in init_options() 233 od->name = SANE_NAME_NUM_OPTIONS; in init_options() 234 od->title = SANE_TITLE_NUM_OPTIONS; in init_options() 235 od->desc = SANE_DESC_NUM_OPTIONS; in init_options() 236 od->type = SANE_TYPE_INT; in init_options() 237 od->unit = SANE_UNIT_NONE; in init_options() 238 od->size = sizeof (SANE_Word); in init_options() 239 od->cap = SANE_CAP_SOFT_DETECT; in init_options() 240 od in init_options() [all...] |
/third_party/python/Objects/ |
H A D | odictobject.c | 76 * _odictnode_VALUE(od, node) 82 * _odict_FIRST(od) 83 * _odict_LAST(od) 84 * _odict_EMPTY(od) 85 * _odict_FOREACH(od, node) - used in place of `for (node=...)` 89 * _odict_add_head(od, node) 90 * _odict_add_tail(od, node) 91 * _odict_add_new_node(od, key, hash) 95 * _odict_clear_node(od, node, key, hash) 96 * _odict_clear_nodes(od, clear_eac 530 _odict_get_index_raw(PyODictObject *od, PyObject *key, Py_hash_t hash) _odict_get_index_raw() argument 550 _odict_resize(PyODictObject *od) _odict_resize() argument 586 _odict_get_index(PyODictObject *od, PyObject *key, Py_hash_t hash) _odict_get_index() argument 606 _odict_find_node_hash(PyODictObject *od, PyObject *key, Py_hash_t hash) _odict_find_node_hash() argument 620 _odict_find_node(PyODictObject *od, PyObject *key) _odict_find_node() argument 638 _odict_add_head(PyODictObject *od, _ODictNode *node) _odict_add_head() argument 651 _odict_add_tail(PyODictObject *od, _ODictNode *node) _odict_add_tail() argument 665 _odict_add_new_node(PyODictObject *od, PyObject *key, Py_hash_t hash) _odict_add_new_node() argument 709 _odict_remove_node(PyODictObject *od, _ODictNode *node) _odict_remove_node() argument 743 _odict_clear_node(PyODictObject *od, _ODictNode *node, PyObject *key, Py_hash_t hash) _odict_clear_node() argument 775 _odict_clear_nodes(PyODictObject *od) _odict_clear_nodes() argument 836 odict_mp_ass_sub(PyODictObject *od, PyObject *v, PyObject *w) odict_mp_ass_sub() argument 933 odict_sizeof(PyODictObject *od, PyObject *Py_UNUSED(ignored)) odict_sizeof() argument 948 odict_reduce(register PyODictObject *od, PyObject *Py_UNUSED(ignored)) odict_reduce() argument 1038 _odict_popkey_hash(PyObject *od, PyObject *key, PyObject *failobj, Py_hash_t hash) _odict_popkey_hash() argument 1169 odict_clear(register PyODictObject *od, PyObject *Py_UNUSED(ignored)) odict_clear() argument 1185 odict_copy(register PyODictObject *od, PyObject *Py_UNUSED(ignored)) odict_copy() argument 1245 odict_reversed(PyODictObject *od, PyObject *Py_UNUSED(ignored)) odict_reversed() argument 1448 odict_traverse(PyODictObject *od, visitproc visit, void *arg) odict_traverse() argument 1462 odict_tp_clear(PyODictObject *od) odict_tp_clear() argument 1510 odict_iter(PyODictObject *od) odict_iter() argument 1597 _PyODict_SetItem_KnownHash(PyObject *od, PyObject *key, PyObject *value, Py_hash_t hash) _PyODict_SetItem_KnownHash() argument 1615 PyODict_SetItem(PyObject *od, PyObject *key, PyObject *value) PyODict_SetItem() argument 1624 PyODict_DelItem(PyObject *od, PyObject *key) PyODict_DelItem() argument 1852 odictiter_new(PyODictObject *od, int kind) odictiter_new() argument 1948 odictkeys_new(PyObject *od, PyObject *Py_UNUSED(ignored)) odictkeys_new() argument 2015 odictitems_new(PyObject *od, PyObject *Py_UNUSED(ignored)) odictitems_new() argument 2082 odictvalues_new(PyObject *od, PyObject *Py_UNUSED(ignored)) odictvalues_new() argument [all...] |
/third_party/python/Include/cpython/ |
H A D | odictobject.h | 26 PyAPI_FUNC(int) PyODict_SetItem(PyObject *od, PyObject *key, PyObject *item); 27 PyAPI_FUNC(int) PyODict_DelItem(PyObject *od, PyObject *key); 30 #define PyODict_GetItem(od, key) PyDict_GetItem(_PyObject_CAST(od), key) 31 #define PyODict_GetItemWithError(od, key) \ 32 PyDict_GetItemWithError(_PyObject_CAST(od), key) 33 #define PyODict_Contains(od, key) PyDict_Contains(_PyObject_CAST(od), key) 34 #define PyODict_Size(od) PyDict_Size(_PyObject_CAST(od)) [all...] |
/third_party/ffmpeg/libavcodec/arm/ |
H A D | rdft_neon.S | 79 vmul.f32 q10, q0, q9 @ ev.re, ev.im, od.im, od.re 83 vmul.f32 q11, q0, q9 @ ev.re, ev.im, od.im, od.re 84 veor d7, d21, d16 @ -od.im, od.re 85 vrev64.32 d3, d21 @ od.re, od.im 87 veor d2, d3, d16 @ -od.re, od [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | rdft.c | 39 FFTComplex ev, od, odsum; in rdft_calc_c() local 62 od.im = k2*(data[i2 ]-data[i1 ]); \ in rdft_calc_c() 64 od.re = k2*(data[i1+1]+data[i2+1]); \ in rdft_calc_c() 66 odsum.re = od.re*tcos[i] sign0 od.im*tsin[i]; \ in rdft_calc_c() 67 odsum.im = od.im*tcos[i] sign1 od.re*tsin[i]; \ in rdft_calc_c()
|
/third_party/node/deps/npm/node_modules/read-package-json-fast/lib/ |
H A D | index.js | 84 const od = data.optionalDependencies 86 if (od && typeof od === 'object') { 87 for (const name of Object.keys(od)) {
|
/third_party/python/Lib/test/test_json/ |
H A D | test_unicode.py | 88 od = self.loads(s, object_pairs_hook = OrderedDict) 89 self.assertEqual(od, OrderedDict(p)) 90 self.assertEqual(type(od), OrderedDict)
|
H A D | test_decode.py | 32 od = self.loads(s, object_pairs_hook=OrderedDict) 33 self.assertEqual(od, OrderedDict(p)) 34 self.assertEqual(type(od), OrderedDict)
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
H A D | LocaleDistance.java | 179 Data od = (Data)other; in equals() 180 return Arrays.equals(trie, od.trie) && in equals() 181 Arrays.equals(regionToPartitionsIndex, od.regionToPartitionsIndex) && in equals() 182 Arrays.equals(partitionArrays, od.partitionArrays) && in equals() 183 paradigmLSRs.equals(od.paradigmLSRs) && in equals() 184 Arrays.equals(distances, od.distances); in equals()
|
H A D | XLikelySubtags.java | 101 Data od = (Data)other; in equals() 103 languageAliases.equals(od.languageAliases) && in equals() 104 regionAliases.equals(od.regionAliases) && in equals() 105 Arrays.equals(trie, od.trie) && in equals() 106 Arrays.equals(lsrs, od.lsrs); in equals()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/ |
H A D | LocaleDistance.java | 184 Data od = (Data)other; in equals() 185 return Arrays.equals(trie, od.trie) && in equals() 186 Arrays.equals(regionToPartitionsIndex, od.regionToPartitionsIndex) && in equals() 187 Arrays.equals(partitionArrays, od.partitionArrays) && in equals() 188 paradigmLSRs.equals(od.paradigmLSRs) && in equals() 189 Arrays.equals(distances, od.distances); in equals()
|
H A D | XLikelySubtags.java | 108 Data od = (Data)other; in equals() 110 languageAliases.equals(od.languageAliases) && in equals() 111 regionAliases.equals(od.regionAliases) && in equals() 112 Arrays.equals(trie, od.trie) && in equals() 113 Arrays.equals(lsrs, od.lsrs); in equals()
|
/third_party/skia/third_party/externals/libpng/contrib/tools/ |
H A D | makesRGB.c | 214 png_byte delta = png_sRGB_delta[ibase >> 7], trydelta = delta, od=delta; in main() local 291 if (base != ob || delta != od) in main() 294 ibase>>7, ob, od, base, delta, eco, ecbase); in main() 297 printf("/* table[%u]={%u,%u} %u errors */\n", ibase>>7, ob, od, in main()
|
/third_party/node/test/parallel/ |
H A D | test-stream3-pause-then-read.js | 85 r.on('data', function od(c) { 89 r.removeListener('data', od);
|
/third_party/pulseaudio/src/modules/alsa/ |
H A D | module-alsa-card.c | 207 struct profile_data *nd, *od; in card_set_profile() local 218 od = PA_CARD_PROFILE_DATA(c->active_profile); in card_set_profile() 220 if (od->profile && od->profile->output_mappings) in card_set_profile() 221 PA_IDXSET_FOREACH(am, od->profile->output_mappings, idx) { in card_set_profile() 235 if (od->profile && od->profile->input_mappings) in card_set_profile() 236 PA_IDXSET_FOREACH(am, od->profile->input_mappings, idx) { in card_set_profile() 253 od->profile ? od in card_set_profile() [all...] |
/third_party/ltp/testcases/network/virt/ |
H A D | virt_lib.sh | 262 tst_require_cmds "od" 263 local b1=$(($(od -An -d -N1 /dev/urandom) % 254 + 1)) 264 local b2=$(($(od -An -d -N1 /dev/urandom) % 254 + 1)) 265 local b3=$(($(od -An -d -N1 /dev/urandom) % 254 + 1))
|
/third_party/ltp/tools/sparse/sparse-src/validation/linear/ |
H A D | logical.c | 12 int od(int i, struct S *b) { return i || b->d; } in od() function 113 od:
|
/third_party/ltp/testcases/network/stress/ssh/ |
H A D | ssh-stress.sh | 14 TST_NEEDS_CMDS="sshd ssh ssh-keygen od pkill pgrep" 165 wait_sec=$(( $(od -A n -d -N 1 /dev/urandom) * 3 / 255 )) 166 login_sec=$(( $(od -A n -d -N 1 /dev/urandom) * 10 / 255 ))
|
/third_party/icu/icu4c/as_is/os390/ |
H A D | unpax-icu.sh | 77 od -t x1|\
|
/third_party/icu/icu4c/as_is/os400/ |
H A D | unpax-icu.sh | 110 od -t x1|\
|
/third_party/ltp/testcases/network/stress/interface/ |
H A D | if-addr-adddel.sh | 13 local num=$(($(od -A n -t u1 -N 1 /dev/random) * 253 / 255 + 2 ))
|