Searched refs:transforms (Results 1 - 25 of 194) sorted by relevance

12345678

/xsrc/external/mit/brotli/dist/c/common/
H A Dtransform.h0 /* transforms is a part of ABI, but not API.
42 BROTLI_NUM_TRANSFORM_TYPES /* Counts transforms, not a transform itself. */
54 const uint8_t* transforms; member in struct:BrotliTransforms
56 must be NULL if and only if no such transforms are present. */
58 /* Indices of transforms like ["", BROTLI_TRANSFORM_OMIT_LAST_#, ""].
65 #define BROTLI_TRANSFORM_PREFIX_ID(T, I) ((T)->transforms[((I) * 3) + 0])
66 #define BROTLI_TRANSFORM_TYPE(T, I) ((T)->transforms[((I) * 3) + 1])
67 #define BROTLI_TRANSFORM_SUFFIX_ID(T, I) ((T)->transforms[((I) * 3) + 2])
79 const BrotliTransforms* transforms, int transform_idx);
H A Dtransform.c13 /* RFC 7932 transforms string data */
38 /* RFC 7932 transforms */
237 const BrotliTransforms* transforms, int transform_idx) {
239 const uint8_t* prefix = BROTLI_TRANSFORM_PREFIX(transforms, transform_idx);
240 uint8_t type = BROTLI_TRANSFORM_TYPE(transforms, transform_idx);
241 const uint8_t* suffix = BROTLI_TRANSFORM_SUFFIX(transforms, transform_idx);
268 uint16_t param = (uint16_t)(transforms->params[transform_idx * 2]
269 + (transforms->params[transform_idx * 2 + 1] << 8u));
272 uint16_t param = (uint16_t)(transforms->params[transform_idx * 2]
273 + (transforms
236 BrotliTransformDictionaryWord(uint8_t * dst,const uint8_t * word,int len,const BrotliTransforms * transforms,int transform_idx) argument
[all...]
/xsrc/external/mit/pixman/dist/test/
H A Drotate-test.c33 static const pixman_transform_t transforms[] = variable in typeref:typename:const pixman_transform_t[]
52 (&(transforms[prng_rand_n (ARRAY_LENGTH (transforms))]))
/xsrc/external/mit/xorg-server.old/dist/hw/xfree86/modes/
H A Dxf86RandR12.h35 extern _X_EXPORT void xf86RandR12SetTransformSupport (ScreenPtr pScreen, Bool transforms);
H A Dxf86RandR12.c941 xf86RandR12SetTransformSupport (ScreenPtr pScreen, Bool transforms) argument
958 RRCrtcSetTransformSupport (crtc->randr_crtc, transforms);
/xsrc/external/mit/xorg-server/dist/hw/xfree86/modes/
H A Dxf86RandR12.h34 Bool transforms);
H A Dxf86RandR12.c943 xf86RandR12SetTransformSupport(ScreenPtr pScreen, Bool transforms) argument
956 RRCrtcSetTransformSupport(crtc->randr_crtc, transforms);
/xsrc/external/mit/MesaLib/dist/src/compiler/nir/
H A Dnir_search.h211 const struct transform **transforms,
H A Dnir_algebraic.py492 transforms above work by doing some extra run-time checking of the search
792 def __init__(self, transforms):
793 self.patterns = [t.search for t in transforms]
1043 * transforms:
1138 def __init__(self, pass_name, transforms):
1145 for xform in transforms:
H A Dnir_search.c862 const struct transform **transforms,
886 const struct transform *xform = &transforms[xform_idx][i];
902 const struct transform **transforms,
955 transforms, transform_counts, &states,
859 nir_algebraic_instr(nir_builder * build,nir_instr * instr,struct hash_table * range_ht,const bool * condition_flags,const struct transform ** transforms,const uint16_t * transform_counts,struct util_dynarray * states,const struct per_op_table * pass_op_table,nir_instr_worklist * worklist) argument
900 nir_algebraic_impl(nir_function_impl * impl,const bool * condition_flags,const struct transform ** transforms,const uint16_t * transform_counts,const struct per_op_table * pass_op_table) argument
/xsrc/external/mit/brotli/dist/c/dec/
H A Dstate.h331 const BrotliTransforms* transforms; member in struct:BrotliDecoderStateStruct
H A Dstate.c85 s->transforms = BrotliGetTransforms();
H A Ddecode.c1910 const BrotliTransforms* transforms = s->transforms; local in function:ProcessCommandsInternal
1923 if (transform_idx < (int)transforms->num_transforms) {
1926 if (transform_idx == transforms->cutOffTransforms[0]) {
1932 transforms, transform_idx);
/xsrc/external/mit/xorg-server.old/dist/randr/
H A Drrcrtc.c117 * Set whether transforms are allowed on a CRTC
120 RRCrtcSetTransformSupport (RRCrtcPtr crtc, Bool transforms) argument
122 crtc->transforms = transforms;
401 * Check whether the pending and current transforms are the same
589 if (!crtc->transforms)
912 * the size along with the mode. If the driver supports transforms,
916 if (pScrPriv->rrScreenSetSize && !crtc->transforms)
1330 reply->hasTransforms = crtc->transforms;
H A Drandrstr.h122 Bool transforms; member in struct:_rrCrtc
529 * Set whether transforms are allowed on a CRTC
532 RRCrtcSetTransformSupport (RRCrtcPtr crtc, Bool transforms);
613 * Check whether the pending and current transforms are the same
/xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
H A Dnir_algebraic.py415 transforms above work by doing some extra run-time checking of the search
715 def __init__(self, transforms):
716 self.patterns = [t.search for t in transforms]
1167 def __init__(self, pass_name, transforms):
1174 for xform in transforms:
/xsrc/external/mit/xorg-server/dist/randr/
H A Drrcrtc.c119 * Set whether transforms are allowed on a CRTC
122 RRCrtcSetTransformSupport(RRCrtcPtr crtc, Bool transforms) argument
124 crtc->transforms = transforms;
853 * Check whether the pending and current transforms are the same
1088 if (!crtc->transforms)
1416 * the size along with the mode. If the driver supports transforms,
1420 if (pScrPriv->rrScreenSetSize && !crtc->transforms) {
1852 reply->hasTransforms = crtc->transforms;
H A Drandrstr.h131 Bool transforms; member in struct:_rrCrtc
666 * Set whether transforms are allowed on a CRTC
669 RRCrtcSetTransformSupport(RRCrtcPtr crtc, Bool transforms);
742 * Check whether the pending and current transforms are the same
/xsrc/external/mit/MesaLib/dist/docs/
H A Dshading.rst24 transforms the vertex position with ftransform() and passes through
/xsrc/external/mit/libXTrap/dist/
H A Dltmain.sh4438 /* wrapper name transforms */
4445 /* target_name transforms -- use actual target program name; might have lt- prefix */
/xsrc/external/mit/libXevie/dist/
H A Dltmain.sh3701 /* wrapper name transforms */
3708 /* target_name transforms -- use actual target program name; might have lt- prefix */
/xsrc/external/mit/libXfont/dist/
H A Dltmain.sh5816 /* wrapper name transforms */
5823 /* target_name transforms -- use actual target program name; might have lt- prefix */
/xsrc/external/mit/mesa-demos/dist/
H A Dltmain.sh5816 /* wrapper name transforms */
5823 /* target_name transforms -- use actual target program name; might have lt- prefix */
/xsrc/external/mit/glu/dist/
H A Dltmain.sh5864 /* wrapper name transforms */
5871 /* target_name transforms -- use actual target program name; might have lt- prefix */
/xsrc/external/mit/glw/dist/
H A Dltmain.sh3701 /* wrapper name transforms */
3708 /* target_name transforms -- use actual target program name; might have lt- prefix */

Completed in 72 milliseconds

12345678