/AliOS-Things-master/components/SDL2/test/ |
A D | testyuv.c | 38 if (pattern) { in generate_test_pattern() 46 p = (Uint8 *)pattern->pixels + (y + i) * pattern->pitch + ((y/thickness) % 3); in generate_test_pattern() 61 p += pattern->pitch; in generate_test_pattern() 71 return pattern; in generate_test_pattern() 127 const int yuv_len = MAX_YUV_SURFACE_SIZE(pattern->w, pattern->h, extra_pitch); in run_automated_tests() 133 if (!pattern || !yuv1 || !yuv2) { in run_automated_tests() 140 …YUV(formats[i], pattern->pixels, pattern->pitch, yuv1, pattern->w, pattern->h, SDL_GetYUVConversio… in run_automated_tests() 154 …if (SDL_ConvertPixels(pattern->w, pattern->h, pattern->format->format, pattern->pixels, pattern->p… in run_automated_tests() 169 …if (SDL_ConvertPixels(pattern->w, pattern->h, pattern->format->format, pattern->pixels, pattern->p… in run_automated_tests() 194 …if (SDL_ConvertPixels(pattern->w, pattern->h, pattern->format->format, pattern->pixels, pattern->p… in run_automated_tests() [all …]
|
/AliOS-Things-master/components/littlevgl/src/lv_draw/ |
A D | lv_draw_line.c | 326 if(pattern[i - 1].x != pattern[i].x) { in line_draw_skew() 327 lv_coord_t seg_w = pattern[i].y - pattern[aa_last_corner].y; in line_draw_skew() 348 if(pattern[i - 1].y != pattern[i].y) { in line_draw_skew() 349 lv_coord_t seg_w = pattern[i].x - pattern[aa_last_corner].x; in line_draw_skew() 379 lv_coord_t seg_w = pattern[width_safe - 1].y - pattern[aa_last_corner].y; in line_draw_skew() 399 lv_coord_t seg_w = pattern[width_safe - 1].x - pattern[aa_last_corner].x; in line_draw_skew() 466 if(i != 0 && pattern[i].x != pattern[i - 1].x && !first_run) { in line_draw_skew() 496 if(i != 0 && pattern[i].x != pattern[i - 1].x && !first_run) { in line_draw_skew() 503 lv_draw_aa_hor_seg(prev_p.x + pattern[0].x, prev_p.y + pattern[0].y - aa_shift1, in line_draw_skew() 525 if(i != 0 && pattern[i].y != pattern[i - 1].y && !first_run) { in line_draw_skew() [all …]
|
/AliOS-Things-master/hardware/chip/haas1000/release/aos_burn_tool/ |
A D | flash_program_ll.py | 12 def match_and_send(serialport, pattern, command, timeout): argument 14 pattern = re.compile(pattern) 22 match = pattern.search(line) 33 def send_and_match(serialport, command, pattern, timeout): argument 37 if pattern == b'': 41 pattern = re.compile(pattern) 51 match = pattern.search(line)
|
A D | flash_program.py | 15 pattern = re.compile(r'--(.*)=(.*)') 18 match = pattern.match(arg)
|
/AliOS-Things-master/hardware/chip/rtl872xd/release/aos_burn_tool/ |
A D | flash_program_ll.py | 12 def match_and_send(serialport, pattern, command, timeout): argument 14 pattern = re.compile(pattern) 22 match = pattern.search(line) 33 def send_and_match(serialport, command, pattern, timeout): argument 37 if pattern == b'': 41 pattern = re.compile(pattern) 51 match = pattern.search(line)
|
A D | flash_program.py | 16 pattern = re.compile(r'--(.*)=(.*)') 19 match = pattern.match(arg)
|
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/core/src/ |
A D | CommonRequest.cc | 21 CommonRequest::CommonRequest(RequestPattern pattern) in CommonRequest() argument 23 httpMethod_(HttpRequest::Get), requestPattern_(pattern) {} in CommonRequest() 35 void CommonRequest::setRequestPattern(RequestPattern pattern) { in setRequestPattern() argument 36 requestPattern_ = pattern; in setRequestPattern()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/ |
A D | cost_enc.c | 43 int pattern = VP8LevelCodes[level - 1][0]; in VariableLevelCost() local 47 for (i = 2; pattern; ++i) { in VariableLevelCost() 48 if (pattern & 1) { in VariableLevelCost() 52 pattern >>= 1; in VariableLevelCost() 327 int pattern = VP8LevelCodes[v - 1][0]; in VP8RecordCoeffs() local 329 for (i = 0; (pattern >>= 1) != 0; ++i) { in VP8RecordCoeffs() 331 if (pattern & 1) VP8RecordStats(!!(bits & mask), s + 3 + i); in VP8RecordCoeffs()
|
/AliOS-Things-master/components/udisplay/ |
A D | README.md | 127 $ udisplay pattern 16 0x0000 # 绘制pattern颜色为黑色 137 udisplay pattern 16 0x0000 140 + pattern 是测试pattern固定字符.
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | makemoduledefs.py | 16 pattern = re.compile(r"[\n;]\s*MP_REGISTER_MODULE\((.*?),\s*(.*?),\s*(.*?)\);", flags=re.DOTALL) variable 44 global pattern 51 return set(re.findall(pattern, c_file_obj.read()))
|
/AliOS-Things-master/components/py_engine/engine/tools/ |
A D | codeformat.py | 85 for pattern in paths: 86 files.update(glob.glob(os.path.join(prefix, pattern), recursive=True)) 87 for pattern in exclusions or []: 88 files.difference_update(glob.fnmatch.filter(files, os.path.join(prefix, pattern)))
|
A D | transymodem.py | 49 def received_data_check(pattern, buff): argument 50 matcher = re.compile(pattern) 56 def send_check_recv_data_count_down(serialport, pattern, timeout, countUnit): argument 58 matcher = re.compile(pattern) 87 def send_check_recv_data(serialport, pattern, timeout): argument 89 matcher = re.compile(pattern)
|
A D | ymodemfile.py | 178 def received_data_found(self, pattern, buff): argument 179 matcher = re.compile(pattern)
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dec/ |
A D | vp8l_dec.c | 905 pattern = Rotate8b(pattern); in CopySmallPattern8b() 922 uint32_t pattern = 0; in CopyBlock8b() local 927 pattern |= pattern << 8; in CopyBlock8b() 928 pattern |= pattern << 16; in CopyBlock8b() 932 pattern = 0x01010101u * pattern; in CopyBlock8b() 942 pattern |= pattern << 16; in CopyBlock8b() 946 pattern = 0x00010001u * pattern; in CopyBlock8b() 975 pattern = (pattern >> 32) | (pattern << 32); in CopySmallPattern32b() 991 uint64_t pattern; in CopyBlock32b() local 994 pattern |= pattern << 32; in CopyBlock32b() [all …]
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/api/wifi/ |
A D | wifi_promisc.c | 167 paff_array[i].patt.pattern = NULL; in promisc_init_packet_filter() 191 paff_array[i].patt.pattern= rtw_malloc(patt->mask_size); in promisc_add_packet_filter() 192 memcpy(paff_array[i].patt.pattern, patt->pattern, patt->mask_size); in promisc_add_packet_filter() 255 if(paff_array[i].patt.pattern){ in promisc_remove_packet_filter() 256 rtw_free(paff_array[i].patt.pattern); in promisc_remove_packet_filter() 257 paff_array[i].patt.pattern = NULL; in promisc_remove_packet_filter()
|
A D | wifi_conf.h | 1124 unsigned char *pattern; member 1128 int wifi_wowlan_set_pattern(wowlan_pattern_t pattern);
|
A D | wifi_simple_config.c | 1826 u8 pattern[MASK_SIZE]={0x01,0x00,0x5e}; in filter_add_enable() local 1834 packet_filter.pattern = pattern; in filter_add_enable() 1853 …u8 pattern[MASK1_SIZE]={0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,mac_addr[0],mac_addr[1],mac_addr[2],mac_addr… in filter1_add_enable() local 1865 packet_filter.pattern = pattern; in filter1_add_enable() 1870 packet_filter2.pattern = pattern2; in filter1_add_enable() 1875 packet_filter3.pattern = pattern3; in filter1_add_enable()
|
A D | wifi_util.h | 117 int wext_wowlan_set_pattern(const char *ifname, wowlan_pattern_t pattern);
|
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/core/include/alibabacloud/core/ |
A D | CommonRequest.h | 30 explicit CommonRequest(RequestPattern pattern = RpcPattern); 47 void setRequestPattern(RequestPattern pattern);
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/a7_dsp/common/ |
A D | mcu_audio.h | 73 void mcu_audiodump_register(char *pattern, mcu_audiodump_cb_t register_cb, mcu_audiodump_cb_t unreg… 74 void mcu_audiodump_unregister(char *pattern);
|
/AliOS-Things-master/hardware/chip/haas1000/ |
A D | _haas1000_alios_lds.py | 15 pattern = re.compile(r'--(.+?)=(.*)') variable 19 match = pattern.match(arg)
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/drivers/wlan/realtek/include/ |
A D | wifi_structures.h | 208 …unsigned char* pattern; /**< Pattern bytes used to filter eg. "\x0800" (must be in network byt… member
|
/AliOS-Things-master/components/csi/csi1/include/drv/ |
A D | eth_mac.h | 142 …uint8_t *pattern; /*!< Pattern bytes used to filter eg. "\x0800" (mu… member
|
/AliOS-Things-master/components/jsoncpp/include/json/ |
A D | reader.h | 194 bool match(const Char* pattern, int patternLength);
|
/AliOS-Things-master/documentation/yaml/ |
A D | package.yaml_user_manual.md | 99 pattern = re.compile(r'--(.+?)=(.*)') 102 match = pattern.match(arg)
|