HomeSort by relevance Sort by last modified time
    Searched defs:props (Results 101 - 125 of 258) sorted by null

1 2 3 45 6 7 8 91011

  /external/mesa3d/src/glx/
glxext.c 623 INT32 buf[__GLX_TOTAL_CONFIG], *props; local
644 props = buf;
646 props = malloc(prop_size);
651 _XRead(dpy, (char *) props, prop_size);
663 __glXInitializeVisualConfigFromTags(m, nprops, props,
669 if (props != buf)
670 free(props);
    [all...]
  /external/skia/src/compute/hs/cuda/bench/
main.c 256 struct cudaDeviceProp const * props,
444 props->name,
495 struct cudaDeviceProp props; local
496 cuda(GetDeviceProperties(&props,device));
507 props.name,
508 props.multiProcessorCount,
581 &props,
  /external/skia/src/gpu/vk/
GrVkCaps.cpp 522 VkPhysicalDeviceProperties2 props; local
523 props.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
524 props.pNext = &blendProps;
526 GR_VK_CALL(vkInterface, GetPhysicalDeviceProperties2(physDev, &props));
616 VkFormatProperties props; local
617 memset(&props, 0, sizeof(VkFormatProperties));
618 GR_VK_CALL(interface, GetPhysicalDeviceFormatProperties(physDev, format, &props));
619 return SkToBool(VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT & props.optimalTilingFeatures);
732 VkFormatProperties props; local
733 memset(&props, 0, sizeof(VkFormatProperties))
    [all...]
  /external/skqp/src/compute/hs/cuda/bench/
main.c 256 struct cudaDeviceProp const * props,
444 props->name,
495 struct cudaDeviceProp props; local
496 cuda(GetDeviceProperties(&props,device));
507 props.name,
508 props.multiProcessorCount,
581 &props,
  /external/skqp/src/gpu/vk/
GrVkCaps.cpp 471 VkPhysicalDeviceProperties2 props; local
472 props.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
473 props.pNext = &blendProps;
475 GR_VK_CALL(vkInterface, GetPhysicalDeviceProperties2(physDev, &props));
563 VkFormatProperties props; local
564 memset(&props, 0, sizeof(VkFormatProperties));
565 GR_VK_CALL(interface, GetPhysicalDeviceFormatProperties(physDev, format, &props));
566 return SkToBool(VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT & props.optimalTilingFeatures);
670 VkFormatProperties props; local
671 memset(&props, 0, sizeof(VkFormatProperties))
    [all...]
  /external/tensorflow/tensorflow/compiler/jit/
node_matchers.cc 388 absl::Span<const NodeMatcherProperties> props) {
390 for (const NodeMatcherProperties& prop : props) {
432 impl::NodeMatcherProperties props; local
433 props.set_name(std::move(name));
434 return props;
439 impl::NodeMatcherProperties props; local
440 props.set_op(std::move(op));
441 return props;
446 impl::NodeMatcherProperties props; local
447 props.set_assigned_device(std::move(assigned_device))
456 impl::NodeMatcherProperties props; local
466 impl::NodeMatcherProperties props; local
499 impl::NodeMatcherProperties props; local
505 impl::NodeMatcherProperties props; local
513 NodeMatcherProperties props; local
    [all...]
  /external/vulkan-validation-layers/tests/layers/
device_profile_api.cpp 63 VkPhysicalDeviceProperties props; local
64 instance_data->dispatch_table.GetPhysicalDeviceProperties(physicalDevice, &props);
65 memcpy(orgLimits, &props.limits, sizeof(VkPhysicalDeviceLimits));
  /external/webrtc/talk/media/devices/
win32devicemanager.cc 249 CComPtr<IPropertyStore> props; local
251 HRESULT hr = device->OpenPropertyStore(STGM_READ, &props);
258 hr = GetStringProp(props, PKEY_Device_FriendlyName, &name);
260 hr = GetStringProp(props, PKEY_AudioEndpoint_GUID, &guid);
  /external/xz-java/src/org/tukaani/xz/
LZMA2InputStream.java 328 int props = in.readUnsignedByte(); local
330 if (props > (4 * 5 + 4) * 9 + 8)
333 int pb = props / (9 * 5);
334 props -= pb * 9 * 5;
335 int lp = props / 9;
336 int lc = props - lp * 9;
LZMA2OutputStream.java 31 private final int props; // Cannot change props on the fly for now. field in class:LZMA2OutputStream
83 props = (options.getPb() * 5 + options.getLp()) * 9 + options.getLc();
163 outData.writeByte(props);
LZMAInputStream.java 94 int props = propsByte & 0xFF; local
95 if (props > (4 * 5 + 4) * 9 + 8)
98 props %= 9 * 5;
99 int lp = props / 9;
100 int lc = props - lp * 9;
562 int props = propsByte & 0xFF; local
563 if (props > (4 * 5 + 4) * 9 + 8)
566 int pb = props / (9 * 5);
567 props -= pb * 9 * 5;
568 int lp = props / 9
    [all...]
LZMAOutputStream.java 33 private final int props; field in class:LZMAOutputStream
84 props = (options.getPb() * 5 + options.getLp()) * 9 + options.getLc();
87 // Props byte stores lc, lp, and pb.
88 out.write(props);
219 return props;
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
FileHandlerTest.java 48 final static Properties props = new Properties(); field in class:FileHandlerTest
72 .PropertiesToInputStream(props));
80 props.clear();
81 props.put("java.util.logging.FileHandler.level", "FINE");
82 props.put("java.util.logging.FileHandler.filter", className
84 props.put("java.util.logging.FileHandler.formatter", className
86 props.put("java.util.logging.FileHandler.encoding", "iso-8859-1");
88 props.put("java.util.logging.FileHandler.limit", "1000");
90 props.put("java.util.logging.FileHandler.count", "2");
92 props.put("java.util.logging.FileHandler.append", "true")
    [all...]
  /cts/apps/CameraITS/pymodules/its/
device.py 106 # Predefine camera props. Save props extracted from the function,
108 props = None variable in class:ItsSession
415 def override_with_hidden_physical_camera_props(self, props):
418 characteristics of sub-camera. Otherwise, return "props" directly.
424 assert its.caps.logical_multi_camera(props), e_msg
425 physical_ids = its.caps.logical_multi_camera_physical_ids(props)
429 props = self.get_camera_properties_by_id(self._hidden_physical_id)
430 return props
444 self.props = data['objValue']['cameraProperties'
    [all...]
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestBagFormatter.java 21 import org.unicode.cldr.util.props.BagFormatter;
22 import org.unicode.cldr.util.props.ICUPropertyFactory;
23 import org.unicode.cldr.util.props.UnicodeProperty;
40 TreeSet props = new TreeSet(order); local
43 props.addAll(ups.getAvailableNames());
46 Iterator it = props.iterator();
  /external/harfbuzz_ng/src/
hb-buffer.hh 102 hb_segment_properties_t props; /* Script, language, direction */ member in struct:hb_buffer_t
hb-ot-layout.hh 216 unsigned int props = gen_cat; local
225 props |= UPROPS_MASK_IGNORABLE;
226 if (u == 0x200Cu) props |= UPROPS_MASK_Cf_ZWNJ;
227 else if (u == 0x200Du) props |= UPROPS_MASK_Cf_ZWJ;
235 else if (unlikely (hb_in_range (u, 0x180Bu, 0x180Du))) props |= UPROPS_MASK_HIDDEN;
238 else if (unlikely (hb_in_range (u, 0xE0020u, 0xE007Fu))) props |= UPROPS_MASK_HIDDEN;
244 props |= UPROPS_MASK_HIDDEN;
250 props |= UPROPS_MASK_CONTINUATION;
251 props |= unicode->modified_combining_class (u)<<8;
255 info->unicode_props() = props;
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UBiDiProps.java 182 private final int getMirror(int c, int props) {
183 int delta=getMirrorDeltaFromProps(props);
212 int props=trie.get(c); local
213 return getMirror(c, props);
249 int props=trie.get(c); local
250 if((props&BPT_MASK)==0) {
253 return getMirror(c, props);
308 private static final int getClassFromProps(int props) {
309 return props&CLASS_MASK;
311 private static final boolean getFlagFromProps(int props, int shift)
    [all...]
  /external/icu/icu4c/source/common/
ucasemap.cpp 281 uint16_t props = UTRIE2_GET16(trie, c); local
282 if (UCASE_HAS_EXCEPTION(props)) { break; }
284 if (!UCASE_IS_UPPER_OR_TITLE(props) || (delta = UCASE_GET_DELTA(props)) == 0) {
389 uint16_t props = UTRIE2_GET16(trie, c); local
390 if (UCASE_HAS_EXCEPTION(props)) { break; }
392 if (UCASE_GET_TYPE(props) != UCASE_LOWER || (delta = UCASE_GET_DELTA(props)) == 0) {
    [all...]
uchar.cpp 50 uint32_t props; local
51 GET_PROPS(c, props);
52 return (int8_t)GET_CATEGORY(props);
91 uint32_t props; local
92 GET_PROPS(c, props);
93 return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER);
99 uint32_t props; local
100 GET_PROPS(c, props);
101 return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER);
107 uint32_t props; local
115 uint32_t props; local
122 uint32_t props; local
139 uint32_t props; local
152 uint32_t props; local
169 uint32_t props; local
177 uint32_t props; local
185 uint32_t props; local
206 uint32_t props; local
213 uint32_t props; local
221 uint32_t props; local
236 uint32_t props; local
250 uint32_t props; local
263 uint32_t props; local
274 uint32_t props; local
291 uint32_t props; local
302 uint32_t props; local
311 uint32_t props; local
320 uint32_t props; local
337 uint32_t props; local
346 uint32_t props; local
356 uint32_t props; local
370 uint32_t props; local
383 uint32_t props; local
513 uint32_t props; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UBiDiProps.java 178 private final int getMirror(int c, int props) {
179 int delta=getMirrorDeltaFromProps(props);
208 int props=trie.get(c); local
209 return getMirror(c, props);
245 int props=trie.get(c); local
246 if((props&BPT_MASK)==0) {
249 return getMirror(c, props);
304 private static final int getClassFromProps(int props) {
305 return props&CLASS_MASK;
307 private static final boolean getFlagFromProps(int props, int shift)
    [all...]
  /external/iproute2/tipc/
bearer.c 430 struct nlattr *props; local
432 props = mnl_attr_nest_start(nlh, TIPC_NLA_BEARER_PROP);
434 mnl_attr_nest_end(nlh, props);
541 struct nlattr *props; local
580 props = mnl_attr_nest_start(nlh, TIPC_NLA_BEARER_PROP);
582 mnl_attr_nest_end(nlh, props);
750 struct nlattr *props[TIPC_NLA_PROP_MAX + 1] = {}; local
760 mnl_attr_parse_nested(attrs[TIPC_NLA_BEARER_PROP], parse_attrs, props);
761 if (!props[*prop])
764 printf("%u\n", mnl_attr_get_u32(props[*prop]))
    [all...]
link.c 76 struct nlattr *props[TIPC_NLA_PROP_MAX + 1] = {}; local
86 mnl_attr_parse_nested(attrs[TIPC_NLA_LINK_PROP], parse_attrs, props);
87 if (!props[*prop])
90 printf("%u\n", mnl_attr_get_u32(props[*prop]));
434 struct nlattr *props; local
479 props = mnl_attr_nest_start(nlh, TIPC_NLA_LINK_PROP);
481 mnl_attr_nest_end(nlh, props);
  /external/lzma/CPP/7zip/Archive/7z/
7zEncode.cpp 78 // we don't free coderInfo.Props here. So coderInfo.Props can be non-empty.
89 static HRESULT SetCoderProps2(const CProps &props, const UInt64 *dataSizeReduce, IUnknown *coder)
94 return props.SetCoderProps(setCoderProperties, dataSizeReduce);
95 return props.AreThereNonOptionalProps() ? E_INVALIDARG : S_OK;
396 CByteBuffer &props = folderItem.Coders[numMethods - 1 - i].Props; local
404 outStreamSpec->CopyToBuffer(props);
407 props.Free();
7zHandler.cpp 398 const Byte *props = NULL; local
402 props = inByte.GetPtr();
418 UInt32 dicSize = GetUi32((const Byte *)props + 1);
420 UInt32 d = props[0];
438 Byte d = props[0];
450 Byte order = *props;
456 GetStringForSizeValue(dest, GetUi32(props + 1));
463 ConvertUInt32ToString((UInt32)props[0] + 1, s);
472 Byte firstByte = props[0];

Completed in 885 milliseconds

1 2 3 45 6 7 8 91011