/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | asyncore.py | 125 def poll(timeout=0.0, map=None): argument 126 if map is None: 127 map = socket_map 128 if map: 130 for fd, obj in map.items(): 152 obj = map.get(fd) 158 obj = map.get(fd) 164 obj = map.get(fd) 169 def poll2(timeout=0.0, map=None): argument 171 if map is None: [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/ |
D | gencodec.py | 136 def python_mapdef_code(varname, map, comments=1, precisions=(2, 4)): argument 140 if "IDENTITY" in map: 142 (varname, map["IDENTITY"])) 145 del map["IDENTITY"] 152 mappings = sorted(map.items()) 193 def python_tabledef_code(varname, map, comments=1, key_precision=2): argument 200 mappings = sorted(map.items()) 203 if 'IDENTITY' in map: 207 del map['IDENTITY'] 248 def codegen(name, map, encodingname, comments=1): argument [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | zconf.in.h | 317 # pragma map(deflateInit_,"DEIN") 318 # pragma map(deflateInit2_,"DEIN2") 319 # pragma map(deflateEnd,"DEEND") 320 # pragma map(deflateBound,"DEBND") 321 # pragma map(inflateInit_,"ININ") 322 # pragma map(inflateInit2_,"ININ2") 323 # pragma map(inflateEnd,"INEND") 324 # pragma map(inflateSync,"INSY") 325 # pragma map(inflateSetDictionary,"INSEDI") 326 # pragma map(compressBound,"CMBND") [all …]
|
D | zconf.h | 317 # pragma map(deflateInit_,"DEIN") 318 # pragma map(deflateInit2_,"DEIN2") 319 # pragma map(deflateEnd,"DEEND") 320 # pragma map(deflateBound,"DEBND") 321 # pragma map(inflateInit_,"ININ") 322 # pragma map(inflateInit2_,"ININ2") 323 # pragma map(inflateEnd,"INEND") 324 # pragma map(inflateSync,"INSY") 325 # pragma map(inflateSetDictionary,"INSEDI") 326 # pragma map(compressBound,"CMBND") [all …]
|
/device/google/cuttlefish_common/guest/hals/gralloc/ |
D | mapper.cpp | 33 HmLockGuard(Hashmap* map) : map_(map) { in HmLockGuard() 68 Hashmap* map = GrallocBuffer::mapped_buffers(); in reference_buffer() local 69 HmLockGuard lock_guard(map); in reference_buffer() 71 hashmapGet(map, const_cast<int*>(&hnd->offset))); in reference_buffer() 74 hashmapPut(map, const_cast<int*>(&hnd->offset), buffer); in reference_buffer() 104 Hashmap* map = GrallocBuffer::mapped_buffers(); in unreference_buffer() local 105 HmLockGuard lock_guard(map); in unreference_buffer() 107 hashmapGet(map, const_cast<int*>(&hnd->offset))); in unreference_buffer()
|
/device/generic/opengl-transport/host/libs/virglrenderer/ |
D | AVDVirglRenderer.cpp | 97 std::map<uint32_t, EglContext*> EglContext::map; member in EglContext 98 std::map<uint32_t, EglSurface*> EglSurface::map; member in EglSurface 99 std::map<uint32_t, EglImage*> EglImage::map; member in EglImage 100 std::map<uint32_t, Resource*> Resource::map; member in Resource 101 std::map<uint64_t, EglSync*> EglSync::map; member in EglSync 102 std::map<uint32_t, Context*> Context::map; member in Context 147 for (auto const& it : Resource::map) { in dump_global_state() 166 for (auto const& it : Context::map) { in dump_global_state() 474 std::map<uint32_t, Resource*>::iterator it; in virgl_renderer_get_cursor_data() 475 it = Resource::map.find(resource_id); in virgl_renderer_get_cursor_data() [all …]
|
D | RenderControl.cpp | 397 std::map<uint32_t, EglContext*>::iterator context_it; in rcCreateContext() 398 context_it = EglContext::map.find(share_); in rcCreateContext() 399 if (context_it == EglContext::map.end()) in rcCreateContext() 423 std::map<uint32_t, EglContext*>::iterator it; in rcDestroyContext() 424 it = EglContext::map.find(ctx); in rcDestroyContext() 425 if (it == EglContext::map.end()) in rcDestroyContext() 454 std::map<uint32_t, EglSurface*>::iterator it; in rcDestroyWindowSurface() 455 it = EglSurface::map.find(surface_); in rcDestroyWindowSurface() 456 if (it == EglSurface::map.end()) in rcDestroyWindowSurface() 487 std::map<uint32_t, EglSurface*>::iterator surface_it; in rcSetWindowColorBuffer() [all …]
|
D | EglSync.h | 25 static std::map<uint64_t, EglSync*> map; member 29 map.emplace(id, this); in EglSync() 33 map.erase(id); in ~EglSync()
|
D | EglContext.h | 32 static std::map<uint32_t, EglContext*> map; member 37 map.emplace(id, this); in EglContext() 41 map.erase(id); in ~EglContext() 45 for (auto const& it : EglContext::map) { in bind()
|
D | Resource.h | 36 static std::map<uint32_t, Resource*> map; member 41 map.emplace(args.handle, this); in Resource() 45 map.erase(args.handle); in ~Resource() 67 std::map<uint32_t, Context*> context_map;
|
D | EglImage.h | 28 static std::map<uint32_t, EglImage*> map; member 33 map.emplace(id, this); in EglImage() 38 map.erase(id); in ~EglImage()
|
D | EglSurface.h | 27 static std::map<uint32_t, EglSurface*> map; member 32 map.emplace(id, this); in EglSurface() 36 map.erase(id); in ~EglSurface() 40 for (auto const& it : EglSurface::map) { in bind()
|
D | Gralloc1.cpp | 61 std::map<uint32_t, Resource*>::iterator it; in gralloc1_lock() 62 it = Resource::map.find(resource_id); in gralloc1_lock() 63 if (it == Resource::map.end()) in gralloc1_lock() 95 std::map<uint32_t, Resource*>::iterator it; in gralloc1_unlock() 96 it = Resource::map.find(resource_id); in gralloc1_unlock() 97 if (it == Resource::map.end()) in gralloc1_unlock()
|
D | Context.h | 40 static std::map<uint32_t, Context*> map; member 46 map.emplace(handle, this); in Context() 58 map.erase(handle); in ~Context() 62 for (auto const& it : Context::map) { in bind() 107 std::map<uint32_t, Resource*> resource_map;
|
/device/linaro/bootloader/edk2/DuetPkg/BootSector/ |
D | Makefile | 60 …ASMLINK)" /tiny $(OUTPUT_DIR)\bootsect.obj,$(OUTPUT_DIR)\bootsect.com,$(OUTPUT_DIR)\bootsect.map,,, 68 "$(ASMLINK)" /tiny $(OUTPUT_DIR)\bs16.obj,$(OUTPUT_DIR)\bs16.com,$(OUTPUT_DIR)\bs16.map,,, 76 "$(ASMLINK)" /tiny $(OUTPUT_DIR)\bs32.obj,$(OUTPUT_DIR)\bs32.com,$(OUTPUT_DIR)\bs32.map,,, 84 "$(ASMLINK)" /tiny $(OUTPUT_DIR)\Gpt.obj,$(OUTPUT_DIR)\Gpt.com,$(OUTPUT_DIR)\Gpt.map,,, 92 "$(ASMLINK)" /tiny $(OUTPUT_DIR)\Mbr.obj,$(OUTPUT_DIR)\Mbr.com,$(OUTPUT_DIR)\Mbr.map,,, 100 "$(ASMLINK)" /tiny $(OUTPUT_DIR)\Start.obj,$(OUTPUT_DIR)\Start.com,$(OUTPUT_DIR)\Start.map,,, 108 "$(ASMLINK)" /tiny $(OUTPUT_DIR)\Start16.obj,$(OUTPUT_DIR)\Start16.com,$(OUTPUT_DIR)\Start16.map,,, 116 "$(ASMLINK)" /tiny $(OUTPUT_DIR)\Start32.obj,$(OUTPUT_DIR)\Start32.com,$(OUTPUT_DIR)\Start32.map,,, 124 "$(ASMLINK)" /tiny $(OUTPUT_DIR)\Start64.obj,$(OUTPUT_DIR)\Start64.com,$(OUTPUT_DIR)\Start64.map,,, 132 "$(ASMLINK)" /tiny $(OUTPUT_DIR)\St16_64.obj,$(OUTPUT_DIR)\St16_64.com,$(OUTPUT_DIR)\St16_64.map,,, [all …]
|
D | GNUmakefile | 54 …ary -o $(OUTPUT_DIR)/bootsect.com $(OUTPUT_DIR)/bootsect.o -Ttext 0 -Map $(OUTPUT_DIR)/bootsect.map 60 …-oformat binary -o $(OUTPUT_DIR)/bs16.com $(OUTPUT_DIR)/bs16.o -Ttext 0 -Map $(OUTPUT_DIR)/bs16.map 66 …-oformat binary -o $(OUTPUT_DIR)/bs32.com $(OUTPUT_DIR)/bs32.o -Ttext 0 -Map $(OUTPUT_DIR)/bs32.map 72 …) --oformat binary -o $(OUTPUT_DIR)/Gpt.com $(OUTPUT_DIR)/Gpt.o -Ttext 0 -Map $(OUTPUT_DIR)/Gpt.map 78 …) --oformat binary -o $(OUTPUT_DIR)/Mbr.com $(OUTPUT_DIR)/Mbr.o -Ttext 0 -Map $(OUTPUT_DIR)/Mbr.map 84 …ormat binary -o $(OUTPUT_DIR)/start.com $(OUTPUT_DIR)/start.o -Ttext 0 -Map $(OUTPUT_DIR)/start.map 90 …binary -o $(OUTPUT_DIR)/start16.com $(OUTPUT_DIR)/start16.o -Ttext 0 -Map $(OUTPUT_DIR)/start16.map 96 …binary -o $(OUTPUT_DIR)/start32.com $(OUTPUT_DIR)/start32.o -Ttext 0 -Map $(OUTPUT_DIR)/start32.map 102 …binary -o $(OUTPUT_DIR)/start64.com $(OUTPUT_DIR)/start64.o -Ttext 0 -Map $(OUTPUT_DIR)/start64.map 108 …binary -o $(OUTPUT_DIR)/st16_64.com $(OUTPUT_DIR)/st16_64.o -Ttext 0 -Map $(OUTPUT_DIR)/st16_64.map [all …]
|
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/ |
D | TextureSharedData.h | 23 std::map<GLsizei, GLsizei> widths; 24 std::map<GLsizei, GLsizei> heights; 25 std::map<GLsizei, GLsizei> depths; 40 typedef std::map<GLuint, TextureRec*> SharedTextureDataMap;
|
D | KeyedVectorUtils.h | 21 void clearObjectMap(std::map<GLuint, T>& v) { in clearObjectMap() 22 typename std::map<GLuint, T>::iterator it = v.begin(); in clearObjectMap() 30 V findObjectOrDefault(const std::map<K, V>& m, K key, V defaultValue = 0) { 31 typename std::map<K, V>::const_iterator it = m.find(key);
|
/device/linaro/bootloader/arm-trusted-firmware/drivers/arm/cci/ |
D | cci.c | 34 static int validate_cci_map(const int *map) in validate_cci_map() argument 42 slave_if_id = map[i]; in validate_cci_map() 105 void cci_init(uintptr_t base, const int *map, unsigned int num_cci_masters) in cci_init() argument 107 assert(map); in cci_init() 111 cci_slave_if_map = map; in cci_init() 123 assert(validate_cci_map(map)); in cci_init()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | zconf.h | 496 #pragma map(deflateInit_,"DEIN") 497 #pragma map(deflateInit2_,"DEIN2") 498 #pragma map(deflateEnd,"DEEND") 499 #pragma map(deflateBound,"DEBND") 500 #pragma map(inflateInit_,"ININ") 501 #pragma map(inflateInit2_,"ININ2") 502 #pragma map(inflateEnd,"INEND") 503 #pragma map(inflateSync,"INSY") 504 #pragma map(inflateSetDictionary,"INSEDI") 505 #pragma map(compressBound,"CMBND") [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/ |
D | Strings.py | 13 s = join(map(str,range(100))) 14 t = join(map(str,range(1,101))) 79 s = join(map(str,range(100))) 80 t = join(map(str,range(1,101))) 95 s = join(map(str,range(10))) 96 t = join(map(str,range(10))) + "abc" 161 s = join(map(str,range(10))) 162 t = join(map(str,range(10))) + "abc" 177 s = intern(join(map(str,range(10)))) 243 s = intern(join(map(str,range(10)))) [all …]
|
D | Unicode.py | 18 s = unicode(join(map(str,range(100)))) 19 t = unicode(join(map(str,range(1,101)))) 84 s = unicode(join(map(str,range(100)))) 85 t = unicode(join(map(str,range(1,101)))) 100 s = unicode(join(map(str,range(10)))) 101 t = unicode(join(map(str,range(10))) + "abc") 166 s = unicode(join(map(str,range(10)))) 167 t = unicode(join(map(str,range(10))) + "abc") 256 s = unicode(join(map(str,range(100)))) 302 s = unicode(join(map(str,range(100)))) [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/ |
D | cjkcodecs.h | 30 const ucs2_t *map; member 36 const ucs4_t *map; member 42 const DBCHAR *map; member 48 const unsigned char *map; member 162 ((m)->map != NULL && (val) >= (m)->bottom && \ 163 (val)<= (m)->top && ((assi) = (m)->map[(val) - \ 171 ((m)->map != NULL && (val) >= (m)->bottom && \ 172 (val)<= (m)->top && ((assi) = (m)->map[(val) - \ 178 ((m)->map != NULL && (val) >= (m)->bottom && \ 180 ((assplane) = (m)->map[((val) - (m)->bottom)*3]) != 0 && \ [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/ |
D | cjkcodecs.h | 30 const ucs2_t *map; member 36 const ucs4_t *map; member 42 const DBCHAR *map; member 48 const unsigned char *map; member 162 ((m)->map != NULL && (val) >= (m)->bottom && \ 163 (val)<= (m)->top && ((assi) = (m)->map[(val) - \ 171 ((m)->map != NULL && (val) >= (m)->bottom && \ 172 (val)<= (m)->top && ((assi) = (m)->map[(val) - \ 178 ((m)->map != NULL && (val) >= (m)->bottom && \ 180 ((assplane) = (m)->map[((val) - (m)->bottom)*3]) != 0 && \ [all …]
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/ |
D | zconf.h | 519 #pragma map(deflateInit_,"DEIN") 520 #pragma map(deflateInit2_,"DEIN2") 521 #pragma map(deflateEnd,"DEEND") 522 #pragma map(deflateBound,"DEBND") 523 #pragma map(inflateInit_,"ININ") 524 #pragma map(inflateInit2_,"ININ2") 525 #pragma map(inflateEnd,"INEND") 526 #pragma map(inflateSync,"INSY") 527 #pragma map(inflateSetDictionary,"INSEDI") 528 #pragma map(compressBound,"CMBND") [all …]
|