Home
last modified time | relevance | path

Searched refs:range (Results 501 - 525 of 2398) sorted by relevance

1...<<21222324252627282930>>...96

/third_party/backends/backend/
H A Dqcam.c1309 s->opt[OPT_TL_X].constraint.range = &x_range[QC_RES_LOW]; in init_options()
1319 s->opt[OPT_TL_Y].constraint.range = &y_range[QC_RES_LOW]; in init_options()
1329 s->opt[OPT_BR_X].constraint.range = &odd_x_range[QC_RES_LOW]; in init_options()
1339 s->opt[OPT_BR_Y].constraint.range = &odd_y_range[QC_RES_LOW]; in init_options()
1384 s->opt[OPT_BRIGHTNESS].constraint.range = &brightness_range; in init_options()
1393 s->opt[OPT_CONTRAST].constraint.range = &u8_range; in init_options()
1404 s->opt[OPT_BLACK_LEVEL].constraint.range = &u8_range; in init_options()
1415 s->opt[OPT_WHITE_LEVEL].constraint.range = &u8_range; in init_options()
1424 s->opt[OPT_HUE].constraint.range = &u8_range; in init_options()
1433 s->opt[OPT_SATURATION].constraint.range in init_options()
[all...]
H A Dsnapscan-options.c129 /* default TPO range (shortest y_range
141 /* TPO range for the Agfa 1236 */
151 /* TPO range for the Agfa e50 */
161 /* TPO range for the Epson 1670 */
171 /* TPO range for the Epson 2480 */
180 /* TPO range for the Epson 2580 */
190 /* TPO range for the Scanwit 2720S */
200 /* TPO range for the Epson 3490 */
295 /* Initialize TPO range */ in init_options()
351 po[OPT_COUNT].constraint.range in init_options()
[all...]
H A Dcanon.c1285 s->opt[OPT_X_RESOLUTION].constraint.range = &s->hw->info.xres_range; in init_options()
1322 s->opt[OPT_Y_RESOLUTION].constraint.range = &s->hw->info.yres_range; in init_options()
1360 s->opt[OPT_FOCUS].constraint.range = &s->hw->info.focus_range; in init_options()
1378 s->opt[OPT_TL_X].constraint.range = &s->hw->info.x_range; in init_options()
1388 s->opt[OPT_TL_Y].constraint.range = &s->hw->info.y_range; in init_options()
1398 s->opt[OPT_BR_X].constraint.range = &s->hw->info.x_range; in init_options()
1408 s->opt[OPT_BR_Y].constraint.range = &s->hw->info.y_range; in init_options()
1444 s->opt[OPT_HILITE_R].constraint.range = &s->hw->info.HiliteR_range; in init_options()
1455 s->opt[OPT_SHADOW_R].constraint.range = &s->hw->info.ShadowR_range; in init_options()
1466 s->opt[OPT_HILITE_G].constraint.range in init_options()
[all...]
H A Dsm3600.c225 pdesc->constraint.range=&rangeLumi; in InitOptions()
235 pdesc->constraint.range=&rangeLumi; in InitOptions()
267 pdesc->constraint.range=aRangesXY[iOpt-optTLX]; in InitOptions()
285 pdesc->constraint.range = &rangeGamma; in InitOptions()
296 pdesc->constraint.range = &rangeGamma; in InitOptions()
307 pdesc->constraint.range = &rangeGamma; in InitOptions()
318 pdesc->constraint.range = &rangeGamma; in InitOptions()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/
H A Ddriver_wext.c1598 struct iw_range *range; in wpa_driver_wext_get_range() local
1608 range = os_zalloc(buflen); in wpa_driver_wext_get_range()
1609 if (range == NULL) in wpa_driver_wext_get_range()
1614 iwr.u.data.pointer = (caddr_t) range; in wpa_driver_wext_get_range()
1617 minlen = ((char *) &range->enc_capa) - (char *) range + in wpa_driver_wext_get_range()
1618 sizeof(range->enc_capa); in wpa_driver_wext_get_range()
1623 os_free(range); in wpa_driver_wext_get_range()
1626 range->we_version_compiled >= 18) { in wpa_driver_wext_get_range()
1629 range in wpa_driver_wext_get_range()
[all...]
/third_party/ffmpeg/libavcodec/
H A Djpeglsenc.c73 err += state->range; in ls_encode_regular()
74 if (err >= (state->range + 1 >> 1)) { in ls_encode_regular()
75 err -= state->range; in ls_encode_regular()
200 err += state->range; in ls_encode_line()
201 if (err >= state->range + 1 >> 1) in ls_encode_line()
202 err -= state->range; in ls_encode_line()
/third_party/jerryscript/tools/
H A Dgen-unicode.py117 # Save the start position of the range
153 Convert an increasing list of integers into a range list
178 for i in range(element[0], element[1], 256):
390 (the second param is optional, if it's not empty, a range will contains bidirectional conversions only).
439 # Add the start point of the range and its mapped value
444 for idx in range(0, len(ranges), 2):
447 for incr in range(range_length):
496 for incr in range(0, conv_length, 2):
575 for idx in range(0, len(special_ranges), 3):
579 for incr in range(range_lengt
[all...]
/third_party/ltp/lib/
H A Drandom_range.c39 * Internal format of the range array set up by parse_range()
42 struct range { struct
49 * parse_ranges() is a function to parse a comma-separated list of range
63 * range can be extracted from the array using the range_min(), range_max(),
86 * at malloc'd space which holds the parsed range
91 * data for a given range.
106 struct range *rp, *ranges; in parse_ranges()
124 ranges = malloc((ncommas + 1) * sizeof(struct range)); in parse_ranges()
234 * range. It is assumed that rbuf is a range buffe
[all...]
/third_party/mesa3d/src/gallium/frontends/clover/api/
H A Dkernel.cpp39 return new kernel(prog, name, range(sym.args)); in clCreateKernel()
64 range(sym.args))); in clCreateKernelsInProgram()
269 auto grid_size = range(d_grid_size, dims); in validate_grid_size()
281 return range(d_grid_offset, dims); in validate_grid_offset()
290 auto grid_size = range(d_grid_size, dims); in validate_block_size()
293 auto block_size = range(d_block_size, dims); in validate_block_size()
/third_party/mesa3d/src/imagination/vulkan/
H A Dpvr_image.c387 bview->range = in pvr_CreateBufferView()
388 vk_buffer_range(&buffer->vk, pCreateInfo->offset, pCreateInfo->range); in pvr_CreateBufferView()
393 bview->range -= bview->range % vk_format_get_blocksize(bview->format); in pvr_CreateBufferView()
395 /* The range of the buffer view shouldn't be smaller than one texel. */ in pvr_CreateBufferView()
396 assert(bview->range >= vk_format_get_blocksize(bview->format)); in pvr_CreateBufferView()
402 info.extent.height = bview->range / vk_format_get_blocksize(bview->format); in pvr_CreateBufferView()
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/
H A Dtags.py221 for minor_version in range(python_version[1] - 1, 1, -1):
312 for minor in range(py_version[1] - 1, -1, -1):
423 for minor_version in range(version[1], -1, -1):
434 for major_version in range(version[0], 10, -1):
451 for minor_version in range(16, 3, -1):
461 for minor_version in range(16, 3, -1):
/third_party/node/deps/v8/src/torque/ls/
H A Dmessage-handler.cc102 PopulateRangeFromSourcePosition(diagnostic.range(), *message.position); in AddTorqueMessage()
139 void PopulateRangeFromSourcePosition(Range range, in PopulateRangeFromSourcePosition() argument
141 range.start().set_line(position.start.line); in PopulateRangeFromSourcePosition()
142 range.start().set_character(position.start.column); in PopulateRangeFromSourcePosition()
143 range.end().set_line(position.end.line); in PopulateRangeFromSourcePosition()
144 range.end().set_character(position.end.column); in PopulateRangeFromSourcePosition()
/third_party/python/Tools/scripts/
H A Dumarshal.py140 for i in range(size):
234 retval: Any = tuple(self.r_object() for _ in range(n))
240 retval = tuple(self.r_object() for _ in range(n))
246 for _ in range(n):
261 for _ in range(n):
269 for _ in range(n):
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dconstants.cpp181 for (auto range = const_val_to_id_.equal_range(c); in FindDeclaredConstant()
182 range.first != range.second; ++range.first) { in FindDeclaredConstant()
184 context()->get_def_use_mgr()->GetDef(range.first->second); in FindDeclaredConstant()
186 return range.first->second; in FindDeclaredConstant()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dconstants.cpp181 for (auto range = const_val_to_id_.equal_range(c); in FindDeclaredConstant()
182 range.first != range.second; ++range.first) { in FindDeclaredConstant()
184 context()->get_def_use_mgr()->GetDef(range.first->second); in FindDeclaredConstant()
186 return range.first->second; in FindDeclaredConstant()
/third_party/python/Lib/
H A Dbase64.py184 for i in range(0, len(s), 5):
229 for i in range(0, len(s), 8):
349 _a85chars = [bytes((i,)) for i in range(33, 118)]
359 for i in range(0, len(result), wrapcol)]
479 for i in range(0, len(b), 5):
554 for i in range(0, len(s), MAXBINSIZE):
/third_party/python/Lib/test/
H A Dtest_patma.py1946 w = range(10)
1950 self.assertEqual(w, range(10))
1954 self.assertEqual(rest, list(range(2, 10)))
1957 w = range(100)
1961 self.assertEqual(w, range(100))
1965 self.assertEqual(rest, list(range(2, 100)))
1968 w = range(1000)
1972 self.assertEqual(w, range(1000))
1976 self.assertEqual(rest, list(range(2, 1000)))
1979 w = range(
[all...]
H A Dtest_audioop.py13 for i in range(0, len(data), width)]
72 self.assertEqual(audioop.maxpp(packs[w](*range(100)), w), 0)
100 self.assertEqual(audioop.avgpp(packs[w](*range(100)), w), 0)
113 self.assertEqual(audioop.rms(p(*range(100)), w), 57)
279 # Issues #24456, #24457: index out of range
284 # value out of range
312 encoded = bytes(range(256))
340 encoded = bytes(range(127)) + bytes(range(128, 256))
390 for i in range(
[all...]
H A Dtest_builtin.py410 for i in range(n):
460 for i in range(n):
502 for i in range(10):
908 self.assertRaises(TypeError, list, filter(badfunc, range(5)))
916 for proto in range(pickle.HIGHEST_PROTOCOL + 1):
925 i = filter(bool, range(max_iters))
926 for _ in range(max_iters):
1079 list(map(lambda x: x*x, range(1,4))),
1135 self.assertRaises(RuntimeError, list, map(badfunc, range(5)))
1138 for proto in range(pickl
[all...]
/third_party/python/Tools/demo/
H A Dspreadsheet.py58 for y in range(y1, y2+1):
59 for x in range(x1, x2+1):
158 for x in range(1, width):
162 for y in range(1, height):
185 for x in range(width):
190 for y in range(height):
192 for x in range(width):
574 for x in range(1, columns+1):
586 for y in range(1, rows+1):
597 for x in range(
[all...]
/third_party/glslang/glslang/MachineIndependent/
H A DlinkValidate.cpp1667 // That means, without ever mentioning a component, a component range in addUsedLocation()
1677 TRange range(qualifier.layoutLocation, qualifier.layoutLocation); in addUsedLocation()
1680 usedIoRT[set].push_back(range); in addUsedLocation()
1689 // First range: in addUsedLocation()
1692 TIoRange range(locationRange, componentRange, type.getBasicType(), 0); in addUsedLocation()
1695 collision = checkLocationRange(set, range, type, typeCollision); in addUsedLocation()
1697 usedIo[set].push_back(range); in addUsedLocation()
1699 // Second range: in addUsedLocation()
1713 // Need a single IO-range block. in addUsedLocation()
1728 TIoRange range(locationRang in addUsedLocation()
1745 checkLocationRange(int set, const TIoRange& range, const TType& type, bool& typeCollision) checkLocationRange() argument
[all...]
/third_party/mesa3d/src/microsoft/vulkan/
H A Ddzn_device.c1794 util_dynarray_foreach(&cmd_buffer->queries.wait, struct dzn_cmd_buffer_query_range, range) { in dzn_queue_submit()
1795 mtx_lock(&range->qpool->queries_lock); in dzn_queue_submit()
1796 for (uint32_t q = range->start; q < range->start + range->count; q++) { in dzn_queue_submit()
1797 struct dzn_query *query = &range->qpool->queries[q]; in dzn_queue_submit()
1803 mtx_unlock(&range->qpool->queries_lock); in dzn_queue_submit()
1806 util_dynarray_foreach(&cmd_buffer->queries.reset, struct dzn_cmd_buffer_query_range, range) { in dzn_queue_submit()
1807 mtx_lock(&range->qpool->queries_lock); in dzn_queue_submit()
1808 for (uint32_t q = range in dzn_queue_submit()
2408 D3D12_RANGE range = { 0 }; dzn_MapMemory() local
[all...]
/third_party/json/tests/src/
H A Dunit-json_pointer.cpp357 "[json.exception.out_of_range.402] array index '-' (3) is out of range", json::out_of_range&);
362 "[json.exception.out_of_range.402] array index '-' (7) is out of range", json::out_of_range&);
364 "[json.exception.out_of_range.402] array index '-' (3) is out of range", json::out_of_range&);
379 "[json.exception.out_of_range.401] array index 3 is out of range", json::out_of_range&);
384 "[json.exception.out_of_range.401] array index 5 is out of range", json::out_of_range&);
389 "[json.exception.out_of_range.402] array index '-' (3) is out of range", json::out_of_range&);
391 "[json.exception.out_of_range.402] array index '-' (3) is out of range", json::out_of_range&);
/third_party/mesa3d/src/util/format/
H A Du_format_pack.py47 for i in range(4):
138 for i in range(4):
270 destination type range.'''
280 # Translate the destination range to the src native value
447 for i in range(format.nr_channels()):
473 for i in range(4):
500 for i in range(4):
544 for i in range(4):
577 for i in range(4):
/third_party/python/Tools/ccbench/
H A Dccbench.py24 xrange = range
95 return list_sort, (list(range(1000)), )
164 for i in range(step):
221 for i in range(nthreads):
281 for i in range(nb_pings):
328 for i in range(nthreads):
460 for i in range(nthreads):

Completed in 31 milliseconds

1...<<21222324252627282930>>...96