HomeSort by relevance Sort by last modified time
    Searched refs:unmapped (Results 1 - 25 of 38) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
gencodec.py 77 unmapped = range(256)
84 unmapped.remove(i)
103 if enc in unmapped:
104 unmapped.remove(enc)
111 # If there are more identity-mapped entries than unmapped entries,
114 if len(identity) >= len(unmapped):
115 for enc in unmapped:
  /external/python/cpython2/Tools/unicode/
gencodec.py 77 unmapped = range(256)
84 unmapped.remove(i)
103 if enc in unmapped:
104 unmapped.remove(enc)
111 # If there are more identity-mapped entries than unmapped entries,
114 if len(identity) >= len(unmapped):
115 for enc in unmapped:
  /external/python/cpython3/Tools/unicode/
gencodec.py 80 unmapped = list(range(256))
87 unmapped.remove(i)
106 if enc in unmapped:
107 unmapped.remove(enc)
114 # If there are more identity-mapped entries than unmapped entries,
117 if len(identity) >= len(unmapped):
118 for enc in unmapped:
  /external/syslinux/efi/
tcp.c 59 int unmapped = 1; local
73 while (unmapped){
76 unmapped = 0;
84 unmapped = 0;
udp.c 35 int unmapped = 1; local
39 while (unmapped){
42 unmapped = 0;
50 unmapped = 0;
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
WriteIndicCharts.java 119 boolean unmapped = false;
133 if(temp[j].indexOf(":UNMAPPED")>=0){
135 unmapped=true;
156 }else if(unmapped){
  /prebuilts/go/darwin-x86/src/runtime/
signal_darwin_amd64.go 61 // PC started to point at unmapped memory.
74 // than it does for an attempt to access a valid but unmapped address.
signal_darwin_386.go 53 // PC started to point at unmapped memory.
signal_darwin_arm.go 63 // PC started to point at unmapped memory.
mem_linux.go 18 // Mincore returns ENOMEM if any of the pages are unmapped,
19 // but we want to know that all of the pages are unmapped.
35 // ENOMEM means unmapped, which is what we want.
signal_darwin_arm64.go 80 // PC started to point at unmapped memory.
  /prebuilts/go/linux-x86/src/runtime/
signal_darwin_amd64.go 61 // PC started to point at unmapped memory.
74 // than it does for an attempt to access a valid but unmapped address.
signal_darwin_386.go 53 // PC started to point at unmapped memory.
signal_darwin_arm.go 63 // PC started to point at unmapped memory.
mem_linux.go 18 // Mincore returns ENOMEM if any of the pages are unmapped,
19 // but we want to know that all of the pages are unmapped.
35 // ENOMEM means unmapped, which is what we want.
signal_darwin_arm64.go 80 // PC started to point at unmapped memory.
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/SPIRV/
SPVRemapper.h 150 static const spv::Id unmapped; // unchanged from default value member in class:spv::spirvbin_t
217 bool isOldIdUnmapped(spv::Id oldId) const { return localId(oldId) == unmapped; }
SPVRemapper.cpp 235 const spv::Id spirvbin_t::unmapped = spv::Id(-10000); member in class:spv::spirvbin_t
254 if (newId != unmapped && newId != unused) {
297 assert(id != unused && id != unmapped);
314 // Find a new mapping for any used but unmapped IDs
440 [this](spv::Id& id) { localId(id, unmapped); }
502 // Circular buffer so we can look back at previous unmapped values during the mapping pass.
    [all...]
  /prebuilts/go/darwin-x86/test/
nilcheck.go 146 // in the first unmapped page of memory.
nilptr3.go 154 // in the first unmapped page of memory.
  /prebuilts/go/linux-x86/test/
nilcheck.go 146 // in the first unmapped page of memory.
nilptr3.go 154 // in the first unmapped page of memory.
  /prebuilts/go/darwin-x86/misc/cgo/testshared/
shared_test.go 515 // was linked against in an unmapped section.
  /prebuilts/go/darwin-x86/src/syscall/
syscall_linux.go 636 // align our reads, we might straddle an unmapped page
zerrors_solaris_amd64.go     [all...]

Completed in 411 milliseconds

1 2