/external/icu/icu4c/source/data/misc/ |
D | numberingSystems.txt | 7 desc{""} 12 desc{""} 17 desc{"٠١٢٣٤٥٦٧٨٩"} 22 desc{"۰۱۲۳۴۵۶۷۸۹"} 27 desc{"%armenian-upper"} 32 desc{"%armenian-lower"} 37 desc{"᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙"} 42 desc{"০১২৩৪৫৬৭৮৯"} 47 desc{""} 52 desc{""} [all …]
|
/external/javassist/src/main/javassist/bytecode/ |
D | Descriptor.java | 157 public static String rename(String desc, String oldname, String newname) { in rename() argument 158 if (desc.indexOf(oldname) < 0) in rename() 159 return desc; in rename() 165 int j = desc.indexOf('L', i); in rename() 168 else if (desc.startsWith(oldname, j + 1) in rename() 169 && desc.charAt(j + oldname.length() + 1) == ';') { in rename() 170 newdesc.append(desc.substring(head, j)); in rename() 177 i = desc.indexOf(';', j) + 1; in rename() 184 return desc; in rename() 186 int len = desc.length(); in rename() [all …]
|
/external/linux-kselftest/tools/testing/selftests/x86/ |
D | ldt_gdt.c | 125 static bool install_valid_mode(const struct user_desc *desc, uint32_t ar, in install_valid_mode() argument 129 desc, sizeof(*desc)); in install_valid_mode() 133 uint32_t limit = desc->limit; in install_valid_mode() 134 if (desc->limit_in_pages) in install_valid_mode() 136 check_valid_segment(desc->entry_number, 1, ar, limit, true); in install_valid_mode() 142 if (desc->seg_32bit) { in install_valid_mode() 154 static bool install_valid(const struct user_desc *desc, uint32_t ar) in install_valid() argument 156 return install_valid_mode(desc, ar, false); in install_valid() 159 static void install_invalid(const struct user_desc *desc, bool oldmode) in install_invalid() argument 162 desc, sizeof(*desc)); in install_invalid() [all …]
|
/external/kernel-headers/original/uapi/linux/usb/ |
D | audio.h | 257 static inline __u8 uac_mixer_unit_bNrChannels(struct uac_mixer_unit_descriptor *desc) in uac_mixer_unit_bNrChannels() argument 259 return desc->baSourceID[desc->bNrInPins]; in uac_mixer_unit_bNrChannels() 262 static inline __u32 uac_mixer_unit_wChannelConfig(struct uac_mixer_unit_descriptor *desc, in uac_mixer_unit_wChannelConfig() argument 266 return (desc->baSourceID[desc->bNrInPins + 2] << 8) | in uac_mixer_unit_wChannelConfig() 267 desc->baSourceID[desc->bNrInPins + 1]; in uac_mixer_unit_wChannelConfig() 269 return (desc->baSourceID[desc->bNrInPins + 4] << 24) | in uac_mixer_unit_wChannelConfig() 270 (desc->baSourceID[desc->bNrInPins + 3] << 16) | in uac_mixer_unit_wChannelConfig() 271 (desc->baSourceID[desc->bNrInPins + 2] << 8) | in uac_mixer_unit_wChannelConfig() 272 (desc->baSourceID[desc->bNrInPins + 1]); in uac_mixer_unit_wChannelConfig() 275 static inline __u8 uac_mixer_unit_iChannelNames(struct uac_mixer_unit_descriptor *desc, in uac_mixer_unit_iChannelNames() argument [all …]
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_format.h | 399 const struct util_format_description *desc = util_format_description(format); in util_format_name() local 401 assert(desc); in util_format_name() 402 if (!desc) { in util_format_name() 406 return desc->name; in util_format_name() 412 const struct util_format_description *desc = util_format_description(format); in util_format_short_name() local 414 assert(desc); in util_format_short_name() 415 if (!desc) { in util_format_short_name() 419 return desc->short_name; in util_format_short_name() 428 const struct util_format_description *desc = util_format_description(format); in util_format_is_plain() local 434 return desc->layout == UTIL_FORMAT_LAYOUT_PLAIN ? TRUE : FALSE; in util_format_is_plain() [all …]
|
D | u_format.c | 47 const struct util_format_description *desc = util_format_description(format); in util_format_is_float() local 50 assert(desc); in util_format_is_float() 51 if (!desc) { in util_format_is_float() 60 return desc->channel[i].type == UTIL_FORMAT_TYPE_FLOAT ? TRUE : FALSE; in util_format_is_float() 70 nr_logical_channels(const struct util_format_description *desc) in nr_logical_channels() argument 76 swizzle_used[desc->swizzle[0]] = TRUE; in nr_logical_channels() 77 swizzle_used[desc->swizzle[1]] = TRUE; in nr_logical_channels() 78 swizzle_used[desc->swizzle[2]] = TRUE; in nr_logical_channels() 79 swizzle_used[desc->swizzle[3]] = TRUE; in nr_logical_channels() 92 const struct util_format_description *desc = in util_format_is_rgb_no_alpha() local [all …]
|
/external/skia/tests/ |
D | VkWrapTests.cpp | 37 GrBackendTextureDesc desc; in wrap_tex_test() local 38 desc.fConfig = kPixelConfig; in wrap_tex_test() 39 desc.fWidth = kW; in wrap_tex_test() 40 desc.fHeight = kH; in wrap_tex_test() 41 desc.fTextureHandle = backendObj; in wrap_tex_test() 42 sk_sp<GrTexture> tex = gpu->wrapBackendTexture(desc, kBorrow_GrWrapOwnership); in wrap_tex_test() 48 desc.fTextureHandle = (GrBackendObject) &backendCopy; in wrap_tex_test() 49 tex = gpu->wrapBackendTexture(desc, kBorrow_GrWrapOwnership); in wrap_tex_test() 51 tex = gpu->wrapBackendTexture(desc, kAdopt_GrWrapOwnership); in wrap_tex_test() 57 tex = gpu->wrapBackendTexture(desc, kBorrow_GrWrapOwnership); in wrap_tex_test() [all …]
|
D | ProxyConversionTest.cpp | 20 const GrSurfaceDesc& desc) { in make_wrapped_FBO0() argument 22 backendDesc.fWidth = desc.fWidth; in make_wrapped_FBO0() 23 backendDesc.fHeight = desc.fHeight; in make_wrapped_FBO0() 24 backendDesc.fConfig = desc.fConfig; in make_wrapped_FBO0() 25 backendDesc.fOrigin = desc.fOrigin; in make_wrapped_FBO0() 26 backendDesc.fSampleCnt = desc.fSampleCnt; in make_wrapped_FBO0() 38 const GrSurfaceDesc& desc, in make_wrapped_offscreen_rt() argument 40 SkASSERT(kRenderTarget_GrSurfaceFlag == desc.fFlags); in make_wrapped_offscreen_rt() 42 sk_sp<GrTexture> tex(provider->createTexture(desc, budgeted)); in make_wrapped_offscreen_rt() 48 const GrSurfaceDesc& desc, in make_wrapped_texture() argument [all …]
|
/external/llvm/tools/llvm-readobj/ |
D | llvm-readobj.cpp | 50 cl::desc("<input object files>"), 55 cl::desc("Display file headers ")); 57 cl::desc("Alias for --file-headers"), 62 cl::desc("Display all sections.")); 64 cl::desc("Alias for --sections"), 69 cl::desc("Display relocations for each section shown.")); 71 cl::desc("Alias for --section-relocations"), 76 cl::desc("Display symbols for each section shown.")); 78 cl::desc("Alias for --section-symbols"), 83 cl::desc("Display section data for each section shown.")); [all …]
|
/external/ltp/testcases/kernel/syscalls/open/ |
D | open11.c | 95 char *desc; member 106 .desc = "Open regular file O_RDONLY", 113 .desc = "Open regular file O_WRONLY", 120 .desc = "Open regular file O_RDWR", 127 .desc = "Open regular file O_RDWR | O_SYNC", 134 .desc = "Open regular file O_RDWR | O_TRUNC", 144 .desc = "Open dir O_RDONLY", 151 .desc = "Open dir O_RDWR, expect EISDIR", 158 .desc = "Open regular file O_DIRECTORY, expect ENOTDIR", 168 .desc = "Open hard link file O_RDONLY", [all …]
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/ |
D | d3d11_objects.h | 139 Desc desc; member 140 GalliumD3D11DescribedObject(GalliumD3D11Screen* device, Object* object, const Desc& desc) in GalliumD3D11DescribedObject() 141 : GalliumD3D11Object<Base, Object>(device, object), desc(desc) in GalliumD3D11DescribedObject() 146 memcpy(out_desc, &desc, sizeof(desc)); in GetDesc() 164 D3D10_BLEND_DESC desc; in convert_to_d3d10() local 165 desc.AlphaToCoverageEnable = desc1.AlphaToCoverageEnable; in convert_to_d3d10() 166 desc.SrcBlend = desc1.RenderTarget[0].SrcBlend; in convert_to_d3d10() 167 desc.DestBlend = desc1.RenderTarget[0].DestBlend; in convert_to_d3d10() 168 desc.BlendOp = desc1.RenderTarget[0].BlendOp; in convert_to_d3d10() 169 desc.SrcBlendAlpha = desc1.RenderTarget[0].SrcBlendAlpha; in convert_to_d3d10() [all …]
|
D | d3d11_screen.h | 214 const D3D11_COUNTER_DESC *desc, in CheckCounter() 876 const D3D11_TEXTURE1D_DESC *desc, in CreateTexture1D() 883 DXGI_USAGE dxgi_usage = d3d_to_dxgi_usage(desc->BindFlags, desc->MiscFlags); in CreateTexture1D() 884 …_TEXTURE_1D, desc->Width, 1, 1, desc->MipLevels, desc->ArraySize, desc->Format, 0, desc->Usage, de… in CreateTexture1D() 887 D3D11_TEXTURE1D_DESC cdesc = *desc; in CreateTexture1D() 894 const D3D11_TEXTURE2D_DESC *desc, in CreateTexture2D() 901 DXGI_USAGE dxgi_usage = d3d_to_dxgi_usage(desc->BindFlags, desc->MiscFlags); in CreateTexture2D() 902 …desc->Width, desc->Height, 1, desc->MipLevels, desc->ArraySize, desc->Format, &desc->SampleDesc, d… in CreateTexture2D() 905 D3D11_TEXTURE2D_DESC cdesc = *desc; in CreateTexture2D() 915 const D3D11_TEXTURE3D_DESC *desc, in CreateTexture3D() [all …]
|
/external/v8/src/ |
D | property-descriptor.cc | 43 PropertyDescriptor* desc) { in ToPropertyDescriptorFastPath() argument 80 desc->set_enumerable(value->BooleanValue()); in ToPropertyDescriptorFastPath() 82 desc->set_configurable(value->BooleanValue()); in ToPropertyDescriptorFastPath() 84 desc->set_value(value); in ToPropertyDescriptorFastPath() 86 desc->set_writable(value->BooleanValue()); in ToPropertyDescriptorFastPath() 90 desc->set_get(value); in ToPropertyDescriptorFastPath() 94 desc->set_set(value); in ToPropertyDescriptorFastPath() 97 if ((desc->has_get() || desc->has_set()) && in ToPropertyDescriptorFastPath() 98 (desc->has_value() || desc->has_writable())) { in ToPropertyDescriptorFastPath() 182 PropertyDescriptor* desc) { in ToPropertyDescriptor() argument [all …]
|
/external/skia/src/gpu/gl/ |
D | GrGLTexture.cpp | 53 GrGLTexture::GrGLTexture(GrGLGpu* gpu, SkBudgeted budgeted, const GrSurfaceDesc& desc, in GrGLTexture() argument 55 : GrSurface(gpu, desc) in GrGLTexture() 56 , INHERITED(gpu, desc, sampler_type(idDesc, desc.fConfig, gpu), in GrGLTexture() 57 highest_filter_mode(idDesc, desc.fConfig), false) { in GrGLTexture() 58 this->init(desc, idDesc); in GrGLTexture() 62 GrGLTexture::GrGLTexture(GrGLGpu* gpu, SkBudgeted budgeted, const GrSurfaceDesc& desc, in GrGLTexture() argument 65 : GrSurface(gpu, desc) in GrGLTexture() 66 , INHERITED(gpu, desc, sampler_type(idDesc, desc.fConfig, gpu), in GrGLTexture() 67 highest_filter_mode(idDesc, desc.fConfig), in GrGLTexture() 69 this->init(desc, idDesc); in GrGLTexture() [all …]
|
/external/webrtc/webrtc/p2p/base/ |
D | transportdescriptionfactory.cc | 28 rtc::scoped_ptr<TransportDescription> desc(new TransportDescription()); in CreateOffer() local 32 desc->ice_ufrag = rtc::CreateRandomString(ICE_UFRAG_LENGTH); in CreateOffer() 33 desc->ice_pwd = rtc::CreateRandomString(ICE_PWD_LENGTH); in CreateOffer() 35 desc->ice_ufrag = current_description->ice_ufrag; in CreateOffer() 36 desc->ice_pwd = current_description->ice_pwd; in CreateOffer() 43 if (!SetSecurityInfo(desc.get(), CONNECTIONROLE_ACTPASS)) { in CreateOffer() 48 return desc.release(); in CreateOffer() 62 rtc::scoped_ptr<TransportDescription> desc(new TransportDescription()); in CreateAnswer() local 66 desc->ice_ufrag = rtc::CreateRandomString(ICE_UFRAG_LENGTH); in CreateAnswer() 67 desc->ice_pwd = rtc::CreateRandomString(ICE_PWD_LENGTH); in CreateAnswer() [all …]
|
D | transportdescriptionfactory_unittest.cc | 34 void CheckDesc(const TransportDescription* desc, in CheckDesc() argument 37 ASSERT_TRUE(desc != NULL); in CheckDesc() 38 EXPECT_EQ(!opt.empty(), desc->HasOption(opt)); in CheckDesc() 41 desc->ice_ufrag.size()); in CheckDesc() 43 desc->ice_pwd.size()); in CheckDesc() 45 EXPECT_EQ(ice_ufrag, desc->ice_ufrag); in CheckDesc() 46 EXPECT_EQ(ice_pwd, desc->ice_pwd); in CheckDesc() 49 EXPECT_TRUE(desc->identity_fingerprint.get() == NULL); in CheckDesc() 51 ASSERT_TRUE(desc->identity_fingerprint.get() != NULL); in CheckDesc() 52 EXPECT_EQ(desc->identity_fingerprint->algorithm, dtls_alg); in CheckDesc() [all …]
|
/external/javassist/src/main/javassist/runtime/ |
D | Desc.java | 66 public static Class[] getParams(String desc) { in getParams() argument 67 if (desc.charAt(0) != '(') in getParams() 70 return getType(desc, desc.length(), 1, 0); in getParams() 77 public static Class getType(String desc) { in getType() argument 78 Class[] result = getType(desc, desc.length(), 0, 0); in getType() 85 private static Class[] getType(String desc, int descLen, in getType() argument 91 char c = desc.charAt(start); in getType() 122 return getClassType(desc, descLen, start, num); in getType() 127 Class[] result = getType(desc, descLen, start + 1, num + 1); in getType() 132 private static Class[] getClassType(String desc, int descLen, in getClassType() argument [all …]
|
/external/skia/src/gpu/vk/ |
D | GrVkRenderTarget.cpp | 26 const GrSurfaceDesc& desc, in GrVkRenderTarget() argument 32 : GrSurface(gpu, desc) in GrVkRenderTarget() 35 , GrRenderTarget(gpu, desc) in GrVkRenderTarget() 41 SkASSERT(desc.fSampleCnt); in GrVkRenderTarget() 49 const GrSurfaceDesc& desc, in GrVkRenderTarget() argument 55 : GrSurface(gpu, desc) in GrVkRenderTarget() 58 , GrRenderTarget(gpu, desc) in GrVkRenderTarget() 64 SkASSERT(desc.fSampleCnt); in GrVkRenderTarget() 72 const GrSurfaceDesc& desc, in GrVkRenderTarget() argument 76 : GrSurface(gpu, desc) in GrVkRenderTarget() [all …]
|
/external/skia/src/gpu/ |
D | GrGpu.cpp | 106 static bool check_texture_creation_params(const GrCaps& caps, const GrSurfaceDesc& desc, in check_texture_creation_params() argument 108 if (!caps.isConfigTexturable(desc.fConfig)) { in check_texture_creation_params() 112 if (GrPixelConfigIsSint(desc.fConfig) && texels.count() > 1) { in check_texture_creation_params() 116 *isRT = SkToBool(desc.fFlags & kRenderTarget_GrSurfaceFlag); in check_texture_creation_params() 117 if (*isRT && !caps.isConfigRenderable(desc.fConfig, desc.fSampleCnt > 0)) { in check_texture_creation_params() 122 if (!*isRT && desc.fSampleCnt > 0) { in check_texture_creation_params() 128 if (desc.fWidth > maxRTSize || desc.fHeight > maxRTSize) { in check_texture_creation_params() 133 if (desc.fWidth > maxSize || desc.fHeight > maxSize) { in check_texture_creation_params() 148 GrSurfaceDesc desc = origDesc; in createTexture() local 152 bool textureCreationParamsValid = check_texture_creation_params(*caps, desc, &isRT, texels); in createTexture() [all …]
|
D | GrTexture.cpp | 58 GrSurfaceOrigin resolve_origin(const GrSurfaceDesc& desc) { in resolve_origin() argument 62 bool renderTarget = 0 != (desc.fFlags & kRenderTarget_GrSurfaceFlag); in resolve_origin() 63 if (kDefault_GrSurfaceOrigin == desc.fOrigin) { in resolve_origin() 66 return desc.fOrigin; in resolve_origin() 72 GrTexture::GrTexture(GrGpu* gpu, const GrSurfaceDesc& desc, GrSLType samplerType, in GrTexture() argument 74 : INHERITED(gpu, desc) in GrTexture() 94 void GrTexturePriv::ComputeScratchKey(const GrSurfaceDesc& desc, GrScratchKey* key) { in ComputeScratchKey() argument 97 GrSurfaceOrigin origin = resolve_origin(desc); in ComputeScratchKey() 98 uint32_t flags = desc.fFlags & ~kCheckAllocation_GrSurfaceFlag; in ComputeScratchKey() 102 SkASSERT(static_cast<int>(desc.fConfig) < (1 << 5)); in ComputeScratchKey() [all …]
|
/external/strace/ |
D | ldt.c | 43 struct user_desc desc; in print_user_desc() local 45 if (umove_or_printaddr(tcp, addr, &desc)) in print_user_desc() 57 desc.entry_number, in print_user_desc() 58 desc.base_addr, in print_user_desc() 59 desc.limit, in print_user_desc() 60 desc.seg_32bit, in print_user_desc() 61 desc.contents, in print_user_desc() 62 desc.read_exec_only, in print_user_desc() 63 desc.limit_in_pages, in print_user_desc() 64 desc.seg_not_present, in print_user_desc() [all …]
|
/external/icu/icu4c/source/test/testdata/ |
D | idna_conf.txt | 2 desc: Copyright 2003-2005 http://idnconnect.jdna.jp/testbed.html 13 desc: 1-1-1 Has one IDN 24 desc: 1-1-2 Has two IDNs 35 desc: 1-2-1 Latin-1 46 desc: 1-2-2 Latin Extended A 57 desc: 1-2-3 Latin Extended B 68 desc: 1-2-4 Latin Extended Additional 79 desc: 1-3-1 Han 90 desc: 1-3-2 Hiragana 101 desc: 1-3-3 Katakana [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/ |
D | IDNATestInput.txt | 2 desc: Copyright 2003-2005 http://idnconnect.jdna.jp/testbed.html 13 desc: 1-1-1 Has one IDN 24 desc: 1-1-2 Has two IDNs 35 desc: 1-2-1 Latin-1 46 desc: 1-2-2 Latin Extended A 57 desc: 1-2-3 Latin Extended B 68 desc: 1-2-4 Latin Extended Additional 79 desc: 1-3-1 Han 90 desc: 1-3-2 Hiragana 101 desc: 1-3-3 Katakana [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/ |
D | IDNATestInput.txt | 2 desc: Copyright 2003-2005 http://idnconnect.jdna.jp/testbed.html 13 desc: 1-1-1 Has one IDN 24 desc: 1-1-2 Has two IDNs 35 desc: 1-2-1 Latin-1 46 desc: 1-2-2 Latin Extended A 57 desc: 1-2-3 Latin Extended B 68 desc: 1-2-4 Latin Extended Additional 79 desc: 1-3-1 Han 90 desc: 1-3-2 Hiragana 101 desc: 1-3-3 Katakana [all …]
|
/external/kernel-headers/original/uapi/linux/ |
D | mic_common.h | 104 struct mic_device_desc desc[0]; member 176 static inline unsigned mic_desc_size(const struct mic_device_desc *desc) in mic_desc_size() argument 178 return sizeof(*desc) + desc->num_vq * sizeof(struct mic_vqconfig) in mic_desc_size() 179 + desc->feature_len * 2 + desc->config_len; in mic_desc_size() 183 mic_vq_config(const struct mic_device_desc *desc) in mic_vq_config() argument 185 return (struct mic_vqconfig *)(desc + 1); in mic_vq_config() 188 static inline __u8 *mic_vq_features(const struct mic_device_desc *desc) in mic_vq_features() argument 190 return (__u8 *)(mic_vq_config(desc) + desc->num_vq); in mic_vq_features() 193 static inline __u8 *mic_vq_configspace(const struct mic_device_desc *desc) in mic_vq_configspace() argument 195 return mic_vq_features(desc) + desc->feature_len * 2; in mic_vq_configspace() [all …]
|