HomeSort by relevance Sort by last modified time
    Searched refs:wd (Results 151 - 175 of 338) sorted by null

1 2 3 4 5 67 8 91011>>

  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
err.h 94 zzresynch(SetWordType *wd,SetWordType mask)
96 zzresynch(wd,mask)
97 SetWordType *wd, mask;
108 if ( wd[LA(1)]&mask || LA(1) == zzEOF_TOKEN ) {consumed=0; return;}
111 while ( !(wd[LA(1)]&mask) && LA(1) != zzEOF_TOKEN ) {zzCONSUME;}
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
err.h 94 zzresynch(SetWordType *wd,SetWordType mask)
96 zzresynch(wd,mask)
97 SetWordType *wd, mask;
108 if ( wd[LA(1)]&mask || LA(1) == zzEOF_TOKEN ) {consumed=0; return;}
111 while ( !(wd[LA(1)]&mask) && LA(1) != zzEOF_TOKEN ) {zzCONSUME;}
AParser.cpp 378 resynch(SetWordType *wd,SetWordType mask)
391 /* MR8 */ if ( wd[LA(1)]&mask || LA(1) == eofToken ) {resynchConsumed=0; return;}
395 while ( !(wd[LA(1)]&mask) && LA(1) != eofToken ) {consume();}
  /external/libavc/common/arm/
ih264_inter_pred_luma_bilinear_a9q.s 83 @* @param[in] wd
129 subs r12, r7, #4 @if wd=4 branch to loop_4
131 subs r12, r7, #8 @if wd=8 branch to loop_8
134 loop_16: @when wd=16
256 loop_8: @wd=8;
ih264_inter_pred_luma_horz_hpel_vert_hpel_a9q.s 78 @* @param[in] wd
98 @ WORD32 wd,
108 @ r9 => wd
122 ldr r9, [sp, #108] @ loads wd
126 subs r12, r9, #4 @if wd=4 branch to loop_4
128 subs r12, r9, #8 @if wd=8 branch to loop_8
133 @when wd=16
ih264_inter_pred_luma_horz_qpel_vert_hpel_a9q.s 81 @* @param[in] wd
101 @ WORD32 wd,
111 @ r5 => wd
127 ldr r5, [sp, #108] @ loads wd
138 subs r12, r5, #4 @if wd=4 branch to loop_4
141 subs r12, r5, #8 @if wd=8 branch to loop_8
144 @when wd=16
ih264_inter_pred_luma_vert_qpel_a9q.s 68 @* @param[in] wd
88 @ WORD32 wd,
98 @ r6 => wd
112 ldr r6, [sp, #108] @Loads wd
120 subs r12, r6, #8 @if wd=8 branch to loop_8
124 subs r12, r6, #4 @if wd=4 branch to loop_4
127 loop_16: @when wd=16
  /external/libhevc/common/arm/
ihevc_inter_pred_chroma_horz.s 72 @* @param[in] wd
89 @ word32 wd)
117 ldr r10,[sp,#wd_offset] @loads wd
131 tst r10,#3 @checks wd for multiples
152 mov r10,r5 @2wd
266 moveq r10,r5 @2wd
303 subs r10,r10,#16 @decrement the wd loop
307 moveq r10,r5 @2wd
429 subs r7,r7,#8 @decrement the wd loop
501 subs r7,r7,#8 @(prologue)decrement the wd loo
    [all...]
ihevc_inter_pred_filters_luma_vert.s 78 @* @param[in] wd
96 @ word32 wd )
105 @ r3 => wd
128 ldr r5,[sp,#wd_offset] @load wd
145 blt core_loop_wd_4 @core loop wd 4 jump
149 bic r4,r5,#7 @r5 ->wd
150 rsb r9,r4,r6,lsl #2 @r6->dst_strd r5 ->wd
187 bicle r4,r5,#7 @r5 ->wd
252 bicle r4,r5,#7 @r5 ->wd
425 rsb r9,r5,r6,lsl #2 @r6->dst_strd r5 ->wd
    [all...]
ihevc_inter_pred_luma_vert_w16inp_w16out.s 78 @* @param[in] wd
95 @ word32 wd )
103 @ r6 => wd
126 ldr r5,[sp,#wd_offset] @load wd
146 rsb r9,r5,r6,lsl #2 @r6->dst_strd r5 ->wd
153 mov r4,r5 @r5 ->wd
182 movle r4,r5 @r5 ->wd
273 movle r4,r5 @r5 ->wd
  /frameworks/base/core/java/android/widget/
TabHost.java 776 final View wd = w != null ? w.getDecorView() : null; local
777 if (mLaunchedView != wd && mLaunchedView != null) {
782 mLaunchedView = wd;
  /prebuilts/go/darwin-x86/src/syscall/
syscall_darwin.go 26 wd := string(attrs[0])
29 if wd[0] == '/' && wd[len(wd)-1] == 0 {
30 return wd[:len(wd)-1], nil
  /prebuilts/go/linux-x86/src/syscall/
syscall_darwin.go 26 wd := string(attrs[0])
29 if wd[0] == '/' && wd[len(wd)-1] == 0 {
30 return wd[:len(wd)-1], nil
  /prebuilts/go/darwin-x86/src/path/filepath/
path_test.go 791 func testEvalSymlinksAfterChdir(t *testing.T, wd, path, want string) {
803 err = os.Chdir(wd)
810 t.Errorf("EvalSymlinks(%q) in %q directory error: %v", path, wd, err)
814 t.Errorf("EvalSymlinks(%q) in %q directory returns %q, want %q", path, wd, have, want)
1000 wd, err := os.Getwd()
1008 defer os.Chdir(wd)
1188 wd, _ := os.Getwd()
1189 if len(wd) < 3 {
1190 t.Errorf("Current directory path %q is too short", wd)
1192 lp := strings.ToLower(wd)
    [all...]
  /prebuilts/go/linux-x86/src/path/filepath/
path_test.go 791 func testEvalSymlinksAfterChdir(t *testing.T, wd, path, want string) {
803 err = os.Chdir(wd)
810 t.Errorf("EvalSymlinks(%q) in %q directory error: %v", path, wd, err)
814 t.Errorf("EvalSymlinks(%q) in %q directory returns %q, want %q", path, wd, have, want)
1000 wd, err := os.Getwd()
1008 defer os.Chdir(wd)
1188 wd, _ := os.Getwd()
1189 if len(wd) < 3 {
1190 t.Errorf("Current directory path %q is too short", wd)
1192 lp := strings.ToLower(wd)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
IntlTestDateFormatSymbols.java 91 String[] wd =symbol.getWeekdays(context[i],width[j]); local
92 int cnt = wd.length;
96 for (int k = 0; k < wd.length; k++) {
97 logln(wd[k]);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestDateFormatSymbols.java 88 String[] wd =symbol.getWeekdays(context[i],width[j]); local
89 int cnt = wd.length;
93 for (int k = 0; k < wd.length; k++) {
94 logln(wd[k]);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
BaseHTTPServer.py 468 year, month, day, hh, mm, ss, wd, y, z = time.gmtime(timestamp)
470 self.weekdayname[wd],
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
BaseHTTPServer.py 471 year, month, day, hh, mm, ss, wd, y, z = time.gmtime(timestamp)
473 self.weekdayname[wd],
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/wsgiref/
handlers.py 36 year, month, day, hh, mm, ss, wd, y, z = time.gmtime(timestamp)
38 _weekdayname[wd], day, _monthname[month], year, hh, mm, ss
  /external/libavc/common/x86/
ih264_inter_pred_filters_ssse3.c 70 /* Description : This function copies the contents of ht x wd block from */
71 /* source to destination. (ht,wd) can be (4,4), (8,4), */
79 /* wd - width of the block */
95 WORD32 wd,
112 if(wd == 4)
127 else if(wd == 8)
147 else // wd == 16
196 /* ht x wd block as mentioned in sec. 8.4.2.2.1 titled */
197 /* "Luma sample interpolation process". (ht,wd) can be */
205 /* wd - width of the block *
    [all...]
  /external/libxcam/cl_kernel/
kernel_newtonemapping.cl 50 float4 d, wd, haleq, s, ws;
71 //wd = 100.0f / (d + 100.0f);
77 //w = wd * ws;
  /external/python/cpython2/Lib/
BaseHTTPServer.py 479 year, month, day, hh, mm, ss, wd, y, z = time.gmtime(timestamp)
481 self.weekdayname[wd],
  /external/python/cpython2/Lib/wsgiref/
handlers.py 36 year, month, day, hh, mm, ss, wd, y, z = time.gmtime(timestamp)
38 _weekdayname[wd], day, _monthname[month], year, hh, mm, ss
  /prebuilts/gdb/darwin-x86/lib/python2.7/
BaseHTTPServer.py 468 year, month, day, hh, mm, ss, wd, y, z = time.gmtime(timestamp)
470 self.weekdayname[wd],

Completed in 855 milliseconds

1 2 3 4 5 67 8 91011>>